Skip to content

Commit

Permalink
Update CHANGELOG (#2379)
Browse files Browse the repository at this point in the history
Update CHANGELOG and samples for v8.5.0.

Co-authored-by: polly-updater-bot[bot] <138034000+polly-updater-bot[bot]@users.noreply.github.com>
  • Loading branch information
polly-updater-bot[bot] authored Nov 12, 2024
1 parent 520ee38 commit 271067c
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 7 deletions.
21 changes: 21 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,27 @@

<!-- next-release -->

## 8.5.0

* Clean the Polly.Utils.ObjectPool class by [@gabidabet](https://github.com/gabidabet) in https://github.com/App-vNext/Polly/pull/2312
* Fix issue #2288 by [@gabidabet](https://github.com/gabidabet) in https://github.com/App-vNext/Polly/pull/2313
* Remove CA2211 NoWarn by [@gabidabet](https://github.com/gabidabet) in https://github.com/App-vNext/Polly/pull/2316
* Remove CA1816 NoWarn by [@gabidabet](https://github.com/gabidabet) in https://github.com/App-vNext/Polly/pull/2317
* Update signing workflow by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2323
* Fix hedging failing test by [@peter-csala](https://github.com/peter-csala) in https://github.com/App-vNext/Polly/pull/2321
* Fix S2184, S2104 in Polly.Spec by [@ShawnWu33](https://github.com/ShawnWu33) in https://github.com/App-vNext/Polly/pull/2328
* Add `RetryAfter` to `BrokenCircuitException`. by [@DL444](https://github.com/DL444) in https://github.com/App-vNext/Polly/pull/2324
* Supress S4039, CA1010 in Context.Dictionary by [@ShawnWu33](https://github.com/ShawnWu33) in https://github.com/App-vNext/Polly/pull/2329
* Seperate mutation tests by [@ShawnWu33](https://github.com/ShawnWu33) in https://github.com/App-vNext/Polly/pull/2331
* Add chained rate limiter example by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2344
* Update cake tools by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2293
* Update Microsoft.Extensions.Caching.Memory by [@peter-csala](https://github.com/peter-csala) in https://github.com/App-vNext/Polly/pull/2347
* Add TelemetrySource to ExecutionRejectedException by [@peter-csala](https://github.com/peter-csala) in https://github.com/App-vNext/Polly/pull/2346
* Document TelemetrySource property of the ExecutionRejectedException by [@peter-csala](https://github.com/peter-csala) in https://github.com/App-vNext/Polly/pull/2355
* Extend snippet explanation by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2373
* Update to .NET 9 SDK by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2003
* Use `[DebuggerDisableUserUnhandledExceptions]` by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2003

## 8.4.2

* Update sponsors by [@martincostello](https://github.com/martincostello) in https://github.com/App-vNext/Polly/pull/2169
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<Project>
<PropertyGroup>
<ManagePackageVersionsCentrally>true</ManagePackageVersionsCentrally>
<PollyVersion>8.4.2</PollyVersion>
<PollyVersion>8.5.0</PollyVersion>
<MicrosoftExtensionsVersion>8.0.0</MicrosoftExtensionsVersion>
</PropertyGroup>
<PropertyGroup Condition="$([MSBuild]::IsTargetFrameworkCompatible($(TargetFramework), 'net9.0'))">
Expand Down
6 changes: 6 additions & 0 deletions src/Polly.Core/PublicAPI.Shipped.txt
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,10 @@ Polly.CircuitBreaker.BrokenCircuitException
Polly.CircuitBreaker.BrokenCircuitException.BrokenCircuitException() -> void
Polly.CircuitBreaker.BrokenCircuitException.BrokenCircuitException(string! message) -> void
Polly.CircuitBreaker.BrokenCircuitException.BrokenCircuitException(string! message, System.Exception! inner) -> void
Polly.CircuitBreaker.BrokenCircuitException.BrokenCircuitException(string! message, System.TimeSpan retryAfter) -> void
Polly.CircuitBreaker.BrokenCircuitException.BrokenCircuitException(string! message, System.TimeSpan retryAfter, System.Exception! inner) -> void
Polly.CircuitBreaker.BrokenCircuitException.BrokenCircuitException(System.TimeSpan retryAfter) -> void
Polly.CircuitBreaker.BrokenCircuitException.RetryAfter.get -> System.TimeSpan?
Polly.CircuitBreaker.CircuitBreakerManualControl
Polly.CircuitBreaker.CircuitBreakerManualControl.CircuitBreakerManualControl() -> void
Polly.CircuitBreaker.CircuitBreakerManualControl.CircuitBreakerManualControl(bool isIsolated) -> void
Expand Down Expand Up @@ -469,6 +473,7 @@ Polly.Telemetry.ResilienceEventSeverity.Warning = 3 -> Polly.Telemetry.Resilienc
Polly.Telemetry.ResilienceStrategyTelemetry
Polly.Telemetry.ResilienceStrategyTelemetry.Report<TArgs, TResult>(Polly.Telemetry.ResilienceEvent resilienceEvent, Polly.ResilienceContext! context, Polly.Outcome<TResult> outcome, TArgs args) -> void
Polly.Telemetry.ResilienceStrategyTelemetry.Report<TArgs>(Polly.Telemetry.ResilienceEvent resilienceEvent, Polly.ResilienceContext! context, TArgs args) -> void
Polly.Telemetry.ResilienceStrategyTelemetry.SetTelemetrySource(Polly.ExecutionRejectedException! exception) -> void
Polly.Telemetry.ResilienceTelemetrySource
Polly.Telemetry.ResilienceTelemetrySource.PipelineInstanceName.get -> string?
Polly.Telemetry.ResilienceTelemetrySource.PipelineName.get -> string?
Expand Down Expand Up @@ -550,5 +555,6 @@ static Polly.TimeoutResiliencePipelineBuilderExtensions.AddTimeout<TBuilder>(thi
static Polly.TimeoutResiliencePipelineBuilderExtensions.AddTimeout<TBuilder>(this TBuilder! builder, System.TimeSpan timeout) -> TBuilder!
static readonly Polly.ResiliencePipeline.Empty -> Polly.ResiliencePipeline!
static readonly Polly.ResiliencePipeline<T>.Empty -> Polly.ResiliencePipeline<T>!
virtual Polly.ExecutionRejectedException.TelemetrySource.get -> Polly.Telemetry.ResilienceTelemetrySource?
virtual Polly.Registry.ResiliencePipelineProvider<TKey>.GetPipeline(TKey key) -> Polly.ResiliencePipeline!
virtual Polly.Registry.ResiliencePipelineProvider<TKey>.GetPipeline<TResult>(TKey key) -> Polly.ResiliencePipeline<TResult>!
6 changes: 0 additions & 6 deletions src/Polly.Core/PublicAPI.Unshipped.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1 @@
#nullable enable
Polly.CircuitBreaker.BrokenCircuitException.BrokenCircuitException(string! message, System.TimeSpan retryAfter) -> void
Polly.CircuitBreaker.BrokenCircuitException.BrokenCircuitException(string! message, System.TimeSpan retryAfter, System.Exception! inner) -> void
Polly.CircuitBreaker.BrokenCircuitException.BrokenCircuitException(System.TimeSpan retryAfter) -> void
Polly.CircuitBreaker.BrokenCircuitException.RetryAfter.get -> System.TimeSpan?
virtual Polly.ExecutionRejectedException.TelemetrySource.get -> Polly.Telemetry.ResilienceTelemetrySource?
Polly.Telemetry.ResilienceStrategyTelemetry.SetTelemetrySource(Polly.ExecutionRejectedException! exception) -> void

0 comments on commit 271067c

Please sign in to comment.