Skip to content

Commit 51647c2

Browse files
committed
Bump version to 1.8.14 and add release notes
1 parent 3ff91d8 commit 51647c2

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

appveyor.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
# - Section names should be unique on each level.
88

99
# Please don't edit it manually, use the `build.bat version` command instead.
10-
version: 1.8.13-build-0{build}
10+
version: 1.8.14-build-0{build}
1111

1212
image:
1313
- Visual Studio 2022

nuspecs/Hangfire.Core.nuspec

+4-1
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,17 @@ https://www.hangfire.io/
2323
Release notes are available in our blog https://www.hangfire.io/blog/
2424
Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.8.html to learn how to upgrade.
2525

26-
1.8.13
26+
1.8.13 and 1.8.14
2727
• Changed – Partial cache for serialization and deserialization in `InvocationData` to produce less strings.
2828
• Changed – Add caching for default type serializer and resolver.
2929
• Changed – Don't let `JobFilter`-related logic to show up in profilers.
3030
• Changed – Modify `IProfiler` to be less allocatey for diagnostic purposes that almost never run.
31+
• Changed – Prefer using `CancellationToken.WaitHandle` again, since early .NET Core days are gone.
32+
• Changed – Fewer allocations when working with `IStateHandler` collections in a state machine.
3133
• Fixed – Redirect the "System.Private.Xml.Linq" assembly to the "System.Xml.Linq" one for better interoperability.
3234
• Fixed – Don't throw `KeyNotFoundException` when recurring job is malformed.
3335
• Fixed – Proper relative path calculation in `UrlHelper.To` for OWIN-based Dashboard UI (by @LordJZ).
36+
• Fixed – Typo in the Turkish localization file (by @ismkdc).
3437
• Project – Switch to a modern PowerShell 7+ to speed up SignPath installation on AppVeyor.
3538

3639
1.8.12

nuspecs/Hangfire.SqlServer.nuspec

+3-3
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@
1717
Release notes are available in our blog https://www.hangfire.io/blog/
1818
Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.8.html to learn how to upgrade.
1919

20-
1.8.13
21-
• Changed – Limit polling queries with a semaphore for all configurations.
22-
• Changed – Better error messages when queue or server names are larger than allowed.
20+
1.8.13 and 1.8.14
21+
• Changed – Limit polling queries when queues are empty with a semaphore for all configurations.
22+
• Changed – Use per-queue signaling for same-process workers, instead of having a global signal.
2323
• Fixed – Don't silently truncate queue names, throw an exception instead.
2424
• Project – Decrease delays in SQL Server-related tests to complete them faster.
2525

nuspecs/Hangfire.nuspec

+6-3
Original file line numberDiff line numberDiff line change
@@ -23,23 +23,26 @@ https://www.hangfire.io/
2323
Release notes are available in our blog https://www.hangfire.io/blog/
2424
Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.8.html to learn how to upgrade.
2525

26-
1.8.13
26+
1.8.13 and 1.8.14
2727

2828
Hangfire.Core
2929

3030
• Changed – Partial cache for serialization and deserialization in `InvocationData` to produce less strings.
3131
• Changed – Add caching for default type serializer and resolver.
3232
• Changed – Don't let `JobFilter`-related logic to show up in profilers.
3333
• Changed – Modify `IProfiler` to be less allocatey for diagnostic purposes that almost never run.
34+
• Changed – Prefer using `CancellationToken.WaitHandle` again, since early .NET Core days are gone.
35+
• Changed – Fewer allocations when working with `IStateHandler` collections in a state machine.
3436
• Fixed – Redirect the "System.Private.Xml.Linq" assembly to the "System.Xml.Linq" one for better interoperability.
3537
• Fixed – Don't throw `KeyNotFoundException` when recurring job is malformed.
3638
• Fixed – Proper relative path calculation in `UrlHelper.To` for OWIN-based Dashboard UI (by @LordJZ).
39+
• Fixed – Typo in the Turkish localization file (by @ismkdc).
3740
• Project – Switch to a modern PowerShell 7+ to speed up SignPath installation on AppVeyor.
3841

3942
Hangfire.SqlServer
4043

41-
• Changed – Limit polling queries with a semaphore for all configurations.
42-
• Changed – Better error messages when queue or server names are larger than allowed.
44+
• Changed – Limit polling queries when queues are empty with a semaphore for all configurations.
45+
• Changed – Use per-queue signaling for same-process workers, instead of having a global signal.
4346
• Fixed – Don't silently truncate queue names, throw an exception instead.
4447
• Project – Decrease delays in SQL Server-related tests to complete them faster.
4548

src/SharedAssemblyInfo.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,4 @@
99
[assembly: ComVisible(false)]
1010

1111
// Please don't edit it manually, use the `build.bat version` command instead.
12-
[assembly: AssemblyVersion("1.8.13")]
12+
[assembly: AssemblyVersion("1.8.14")]

0 commit comments

Comments
 (0)