From a77a5d9cc0ccbd83be6e026cb6b322de15448c47 Mon Sep 17 00:00:00 2001 From: martincostello Date: Tue, 13 Jun 2023 10:53:10 +0100 Subject: [PATCH] Update CHANGELOG - Update the changelog for the 7.2.4 release. - Update the benchmark baseline for 7.2.4. --- CHANGELOG.md | 11 ++++++++++- src/Polly.Benchmarks/PollyConfig.cs | 2 +- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dda9f1d7db9..8c8af03fd8e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 7.2.4 + +- Fixed an incorrect exception argument - Thanks to [@FoxTes](https://github.com/FoxTes) +- Upgrade FluentAssertions - Thanks to [@dotnetspark](https://github.com/dotnetspark) +- Upgrade Cake - Thanks to [@eugeneogongo](https://github.com/eugeneogongo) +- Fixed possible NullReferenceException - Thanks to [@FoxTes](https://github.com/FoxTes) +- Migrate build to GitHub Actions - Thanks to [@martincostello](https://github.com/martincostello) +- Authenticode sign the assembly and NuGet package - Thanks to [@martincostello](https://github.com/martincostello) and the .NET Foundation + ## 7.2.3 - Add RateLimit policy - Thanks to [@reisenberger](https://github.com/reisenberger) @@ -111,7 +120,7 @@ - (Upgrade solution to msbuild15) ## 5.3.0 -- Fix ExecuteAndCapture() usage with PolicyWrap +- Fix ExecuteAndCapture() usage with PolicyWrap - Allow Fallback delegates to take execution Context - Provide IReadOnlyPolicyRegistry interface diff --git a/src/Polly.Benchmarks/PollyConfig.cs b/src/Polly.Benchmarks/PollyConfig.cs index 2fd15a77acf..d8bee0baa56 100644 --- a/src/Polly.Benchmarks/PollyConfig.cs +++ b/src/Polly.Benchmarks/PollyConfig.cs @@ -25,7 +25,7 @@ private static Job PollyJob(Job job, bool useNuGet) if (useNuGet) { - result = result.WithNuGet("Polly", "7.2.3"); + result = result.WithNuGet("Polly", "7.2.4"); } return result;