Skip to content

Commit 0036237

Browse files
committed
Bump version to 1.8.10 and add release notes
1 parent 2efff11 commit 0036237

8 files changed

+56
-2
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.9-build-0{build}
10+
version: 1.8.10-build-0{build}
1111

1212
image:
1313
- Visual Studio 2022

nuspecs/Hangfire.AspNetCore.nuspec

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

19+
1.8.10
20+
• Fixed – Don't check `HasStarted` in `Response.WriteAsync` to avoid breaking dispatchers.
21+
• Project – Enable NuGet package and DLL signing with a company certificate.
22+
• Project – Require NuGet package signature validation on restore for dependencies.
23+
• Project – Add `HangfireIO` as a package owner.
24+
1925
1.8.9
2026
• Fixed – Don't attempt to write response headers when response has already started (by @maliming).
2127
• Project – Enable full source link support with embedded symbols and repository-based sources.

nuspecs/Hangfire.Core.nuspec

+8
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,14 @@ https://www.hangfire.io/
2121
Release notes are available in our blog https://www.hangfire.io/blog/
2222
Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.8.html to learn how to upgrade.
2323

24+
1.8.10
25+
• Changed – Added Norwegian translations for new keys (by @khellang).
26+
• Changed – Update Brazilian Portuguese translation (by @HugoAlames).
27+
• Changed – Bump Cronos dependency to version 0.8.3.
28+
• Project – Enable NuGet package and DLL signing with a company certificate.
29+
• Project – Require NuGet package signature validation on restore for dependencies.
30+
• Project – Add `HangfireIO` as a package owner.
31+
2432
1.8.9
2533
• Changed – Use `Environment.MachineName` as a server name if other environment vars aren't available.
2634
• Changed – Bump the Cronos package version from 0.7.1 to 0.8.1.

nuspecs/Hangfire.NetCore.nuspec

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

19+
1.8.10
20+
• Project – Enable NuGet package and DLL signing with a company certificate.
21+
• Project – Require NuGet package signature validation on restore for dependencies.
22+
• Project – Add `HangfireIO` as a package owner.
23+
1924
1.8.9
2025
• Project – Enable full source link support with embedded symbols and repository-based sources.
2126
• Project – Enable repeatable package restore using a lock file.

nuspecs/Hangfire.SqlServer.MSMQ.nuspec

+5
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@
1313
<copyright>Copyright © 2014-2024 Hangfire OÜ</copyright>
1414
<tags>Hangfire SqlServer MSMQ</tags>
1515
<releaseNotes>https://www.hangfire.io/blog/
16+
17+
1.8.10
18+
• Project – Enable NuGet package and DLL signing with a company certificate.
19+
• Project – Require NuGet package signature validation on restore for dependencies.
20+
• Project – Add `HangfireIO` as a package owner.
1621

1722
1.8.9
1823
• Project – Enable full source link support with embedded symbols and repository-based sources.

nuspecs/Hangfire.SqlServer.nuspec

+7
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,13 @@
1515
<releaseNotes>
1616
Release notes are available in our blog https://www.hangfire.io/blog/
1717
Please see https://docs.hangfire.io/en/latest/upgrade-guides/upgrading-to-hangfire-1.8.html to learn how to upgrade.
18+
19+
1.8.10
20+
• Changed – Bump Dapper for the `netstandard2.0` platform to version 2.1.28.
21+
• Changed – Bump Dapper for `net451` and `netstandard1.3` platforms to version 1.60.6.
22+
• Project – Enable NuGet package and DLL signing with a company certificate.
23+
• Project – Require NuGet package signature validation on restore for dependencies.
24+
• Project – Add `HangfireIO` as a package owner.
1825

1926
1.8.9
2027
• Project – Enable full source link support with embedded symbols and repository-based sources.

nuspecs/Hangfire.nuspec

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

25+
1.8.10
26+
27+
Hangfire.Core
28+
29+
• Changed – Added Norwegian translations for new keys (by @khellang).
30+
• Changed – Update Brazilian Portuguese translation (by @HugoAlames).
31+
• Changed – Bump Cronos dependency to version 0.8.3.
32+
33+
Hangfire.AspNetCore
34+
35+
• Fixed – Don't check `HasStarted` in `Response.WriteAsync` to avoid breaking dispatchers.
36+
37+
Hangfire.SqlServer
38+
39+
• Changed – Bump Dapper for the `netstandard2.0` platform to version 2.1.28.
40+
• Changed – Bump Dapper for `net451` and `netstandard1.3` platforms to version 1.60.6.
41+
42+
Hangfire.Core, Hangfire.NetCore, Hangfire.AspNetCore, Hangfire.SqlServer, Hangfire.SqlServer.Msmq
43+
44+
• Project – Enable NuGet package and DLL signing with a company certificate.
45+
• Project – Require NuGet package signature validation on restore for dependencies.
46+
• Project – Add `HangfireIO` as a package owner.
47+
2548
1.8.9
2649

2750
Hangfire.Core

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.9")]
12+
[assembly: AssemblyVersion("1.8.10")]

0 commit comments

Comments
 (0)