diff --git a/appveyor.yml b/appveyor.yml index a643770ee..c27520552 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -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.12-build-0{build} +version: 1.7.13-build-0{build} os: Visual Studio 2019 diff --git a/nuspecs/Hangfire.Core.nuspec b/nuspecs/Hangfire.Core.nuspec index d3ec75288..03521f168 100644 --- a/nuspecs/Hangfire.Core.nuspec +++ b/nuspecs/Hangfire.Core.nuspec @@ -21,6 +21,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.13 +• Added – Catalan translation for Dashboard UI (based on Spanish translation, by @agausachs). +• Added – Support for configuring recommended serializer settings via callback (by @Yaevh). +• Fixed – Use correct wording for job parameters in Job Details page, add it to resources. +• Fixed – Don't push negative points to the realtime graph in dashboard. +• Fixed – Don't depend on history collection type returned from Storage API. +• Project – Execute tests one by one to ensure exit code isn't being lost (by @willchis). + 1.7.12 • Added – Display actual job payload and exception message on job details page when could find the method. • Added – French translation for Dashboard UI (by @PaulARoy). diff --git a/nuspecs/Hangfire.SqlServer.nuspec b/nuspecs/Hangfire.SqlServer.nuspec index a12a9defd..50ac5e129 100644 --- a/nuspecs/Hangfire.SqlServer.nuspec +++ b/nuspecs/Hangfire.SqlServer.nuspec @@ -16,6 +16,14 @@ 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.13 +• Added – `UseIgnoreDupKeyOption` for SQL Server storage configuration (changes to [Set] and [Hash] tables required). +• Fixed – Don't truncate too long keys silently, throw exceptions instead. +• Fixed – Add missing null checks for methods in the `SqlServerWriteOnlyTransaction` class. +• Fixed – Change `holdlock` hint to `xlock` in `merge` statements in transaction to prevent deadlocks. +• Fixed – Don't rethrow "Lock request time out period exceeded" exceptions from expiration manager. +• Fixed – Increase [Server].[Id] column's length to 200 for new installations. + 1.7.10 • Changed – Use `XACT_ABORT` option for `ExpirationManager` queries. • Changed – Don't rely on implicit rollback when disposing transactions. diff --git a/nuspecs/Hangfire.nuspec b/nuspecs/Hangfire.nuspec index 6e4dea580..6a95c85a7 100644 --- a/nuspecs/Hangfire.nuspec +++ b/nuspecs/Hangfire.nuspec @@ -21,6 +21,26 @@ 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.13 + +Hangfire.Core + +• Added – Catalan translation for Dashboard UI (based on Spanish translation, by @agausachs). +• Added – Support for configuring recommended serializer settings via callback (by @Yaevh). +• Fixed – Use correct wording for job parameters in Job Details page, add it to resources. +• Fixed – Don't push negative points to the realtime graph in dashboard. +• Fixed – Don't depend on history collection type returned from Storage API. +• Project – Execute tests one by one to ensure exit code isn't being lost (by @willchis). + +Hangfire.SqlServer + +• Added – `UseIgnoreDupKeyOption` for SQL Server storage configuration (changes to [Set] and [Hash] tables required). +• Fixed – Don't truncate too long keys silently, throw exceptions instead. +• Fixed – Add missing null checks for methods in the `SqlServerWriteOnlyTransaction` class. +• Fixed – Change `holdlock` hint to `xlock` in `merge` statements in transaction to prevent deadlocks. +• Fixed – Don't rethrow "Lock request time out period exceeded" exceptions from expiration manager. +• Fixed – Increase [Server].[Id] column's length to 200 for new installations. + 1.7.12 Hangfire.Core diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs index 3e22e5b7f..ba26bad52 100644 --- a/src/SharedAssemblyInfo.cs +++ b/src/SharedAssemblyInfo.cs @@ -9,4 +9,4 @@ [assembly: ComVisible(false)] // Don't edit manually! Use `build.bat version` command instead! -[assembly: AssemblyVersion("1.7.12")] +[assembly: AssemblyVersion("1.7.13")]