From eb72f838800cd13c93c471cf2a01b7ada895a5f1 Mon Sep 17 00:00:00 2001 From: Sergey Odinokov Date: Mon, 16 Dec 2024 14:22:53 +0700 Subject: [PATCH] Bump version to 1.8.18 and add release notes --- appveyor.yml | 2 +- nuspecs/Hangfire.Core.nuspec | 6 ++++++ nuspecs/Hangfire.nuspec | 9 +++++++++ src/SharedAssemblyInfo.cs | 2 +- 4 files changed, 17 insertions(+), 2 deletions(-) diff --git a/appveyor.yml b/appveyor.yml index f2616858d..ffc7d71b7 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -7,7 +7,7 @@ # - Section names should be unique on each level. # Please don't edit it manually, use the `build.bat version` command instead. -version: 1.8.17-build-0{build} +version: 1.8.18-build-0{build} image: - Visual Studio 2022 diff --git a/nuspecs/Hangfire.Core.nuspec b/nuspecs/Hangfire.Core.nuspec index 95570a6fd..e68ec2ec9 100644 --- a/nuspecs/Hangfire.Core.nuspec +++ b/nuspecs/Hangfire.Core.nuspec @@ -23,6 +23,12 @@ https://www.hangfire.io/ Release notes are available in our blog https://www.hangfire.io/blog/ Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.8.html to learn how to upgrade. +1.8.18 +• Fixed – Issues with `CultureInfo`-related differences after upgrading to 1.8.15–1.8.17. +• Fixed – Don't leak `AsyncLocal` values from synchronous background job methods. +• Fixed – Don't throw an exception when passing the `Job.Args` property to the `Job` class' constructor. +• Project – Make the lock file usable for both .NET 8.0 and .NET 9.0 builds. + 1.8.16 • Changed – Include fewer stack frames in exceptions come from `IServerFilter` implementations. • Changed – Don't include file information in the `ExceptionDetails` property of a FailedState instance. diff --git a/nuspecs/Hangfire.nuspec b/nuspecs/Hangfire.nuspec index 85ebf2675..f47b09d0e 100644 --- a/nuspecs/Hangfire.nuspec +++ b/nuspecs/Hangfire.nuspec @@ -23,6 +23,15 @@ https://www.hangfire.io/ Release notes are available in our blog https://www.hangfire.io/blog/ Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.8.html to learn how to upgrade. +1.8.18 + +Hangfire.Core + +• Fixed – Issues with `CultureInfo`-related differences after upgrading to 1.8.15–1.8.17. +• Fixed – Don't leak `AsyncLocal` values from synchronous background job methods. +• Fixed – Don't throw an exception when passing the `Job.Args` property to the `Job` class' constructor. +• Project – Make the lock file usable for both .NET 8.0 and .NET 9.0 builds. + 1.8.17 Hangfire.SqlServer diff --git a/src/SharedAssemblyInfo.cs b/src/SharedAssemblyInfo.cs index 8bd11e5ce..7e9a16901 100644 --- a/src/SharedAssemblyInfo.cs +++ b/src/SharedAssemblyInfo.cs @@ -9,4 +9,4 @@ [assembly: ComVisible(false)] // Please don't edit it manually, use the `build.bat version` command instead. -[assembly: AssemblyVersion("1.8.17")] +[assembly: AssemblyVersion("1.8.18")]