Skip to content

Commit

Permalink
Bump version to 1.7.19 and add release notes
Browse files Browse the repository at this point in the history
  • Loading branch information
odinserj committed Jan 15, 2021
1 parent 1fdbcbb commit 3a878ec
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 2 deletions.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
# - Section names should be unique on each level.

# Don't edit manually! Use `build.bat version` command instead!
version: 1.7.18-build-0{build}
version: 1.7.19-build-0{build}

os: Visual Studio 2019

Expand Down
8 changes: 8 additions & 0 deletions nuspecs/Hangfire.Core.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,14 @@ https://www.hangfire.io/

Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.7.html to learn how to upgrade from 1.6.X.

1.7.19
• Added – German (Deutsch) Dashboard UI localization (by @d-oit).
• Added – `IGlobalConfiguration.UseMaxArgumentSizeToRender` method to avoid "VALUE TOO BIG" messages.
• Changed – Remove "readonly" keyword from the `JobMethodCallRenderer.MaxArgumentToRenderSize` field to support .NET 5.0.
• Fixed – Race condition in `AspNetShutdownDetector` leads to `NullReferenceException` (by @jr01).
• Fixed – Avoid ArgumentException: Item has already been added when preserving an original exception.
• Project – Add repository link to nuspec files (by @jeremyhayes).

1.7.15
• Added – `IGlobalConfiguration.UseMaxLinesInExceptionDetails` option to cap the size of stack traces.
• Changed – Only the first 100 lines of a stack trace will be preserved now by default in Failed state.
Expand Down
4 changes: 4 additions & 0 deletions nuspecs/Hangfire.SqlServer.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@

Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.7.html to learn how to upgrade from 1.6.X.

1.7.19
• Fixed – Return `null` instead of throwing FormatException when job id can't be parsed.
• Project – Run the entire Hangfire.SqlServer test suite against the new Microsoft.Data.SqlClient package.

1.7.18
• Added – `SqlServerStorageOptions.DeleteExpiredBatchSize` option to remove more expired records in a single pass.
• Fixed – Don't throw from `SqlServerStorage.ToString` method when using custom factory or existing connection.
Expand Down
16 changes: 16 additions & 0 deletions nuspecs/Hangfire.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,22 @@ https://www.hangfire.io/

Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.7.html to learn how to upgrade from 1.6.X.

1.7.19

Hangfire.Core

• Added – German (Deutsch) Dashboard UI localization (by @d-oit).
• Added – `IGlobalConfiguration.UseMaxArgumentSizeToRender` method to avoid "VALUE TOO BIG" messages.
• Changed – Remove "readonly" keyword from the `JobMethodCallRenderer.MaxArgumentToRenderSize` field to support .NET 5.0.
• Fixed – Race condition in `AspNetShutdownDetector` leads to `NullReferenceException` (by @jr01).
• Fixed – Avoid ArgumentException: Item has already been added when preserving an original exception.
• Project – Add repository link to nuspec files (by @jeremyhayes).

Hangfire.SqlServer

• Fixed – Return `null` instead of throwing FormatException when job id can't be parsed.
• Project – Run the entire Hangfire.SqlServer test suite against the new Microsoft.Data.SqlClient package.

1.7.18

Hangfire.SqlServer
Expand Down
2 changes: 1 addition & 1 deletion src/SharedAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
[assembly: ComVisible(false)]

// Don't edit manually! Use `build.bat version` command instead!
[assembly: AssemblyVersion("1.7.18")]
[assembly: AssemblyVersion("1.7.19")]

0 comments on commit 3a878ec

Please sign in to comment.