All Versions
56
Latest Version
Avg Release Cycle
61 days
Latest Release
-

Changelog History
Page 4

  • v5.0.3 Changes

    • ๐Ÿ”€ Refine implementation of cancellable synchronous WaitAndRetry
    • Minor breaking change: Where a user delegate does not observe cancellation, Polly will now honour the delegate's outcome rather than throw for the unobserved cancellation (issue 188).
  • v5.0.2 Changes

    • .NETStandard1.0 target: Correctly state dependencies.
    • .NETStandard1.0 target: Fix SemVer stamping of Polly.dll.
    • ๐Ÿšš PCL259 project and target: Remove, in favour of .NETStandard1.0 target. PCL259 is supported via .NETStandard1.0 target, going forward.
    • Mark Polly.dll as CLSCompliant.
    • ๐Ÿ— Tidy build around GitVersionTask and ReferenceGenerator.
    • โšก๏ธ Update FluentAssertions dependency.
    • โž• Added Polly.Net40Async specs project.
    • ๐Ÿ›  Fix issue 179: Make Net4.0 async implementation for Bulkhead truly async.
  • v5.0.1 Changes

    • โž• Add .NET Standard 1.0 project and target.
  • v5.0.0 Changes

    ๐Ÿš€ A major release, adding significant new resilience policies:

    • โฑ Timeout policy: allows timing out any execution. Thanks to @reisenberger.
    • Bulkhead isolation policy: limits the resources consumable by governed actions, such that a faulting channel cannot cause cascading failures. Thanks to @reisenberger and contributions from @brunolauze.
    • Fallback policy: provides for a fallback execution or value, in case of overall failure. Thanks to @reisenberger
    • PolicyWrap: allows flexibly combining Policy instances of any type, to form an overall resilience strategy. Thanks to @reisenberger

    Other changes include:

    • โž• Add PolicyKeys and context to all policy executions, for logging and to support later introduction of policy events and metrics. Thanks to @reisenberger
    • โž• Add CancellationToken support to synchronous executions. Thanks to @brunolauze and @reisenberger
    • โž• Add some missing ExecuteAndCapture/Async overloads. Thanks to @reisenberger
    • โœ‚ Remove invalid ExecuteAsync overloads taking (but not making use of) a CancellationToken
    • ๐Ÿ“ฆ Provide .NET4.0 support uniquely through Polly.NET40Async package
    • ๐Ÿ‘ Retire ContextualPolicy (not part of documented API; support now in Policy base class)
    • ๐Ÿ‘ Discontinue .NET3.5 support
  • v4.3.0 Changes

    • โž• Added ability for policies to handle returned results. Optimised circuit-breaker hot path. Fixed circuit-breaker threshold bug. Thanks to @reisenberger, @christopherbahr and @Finity respectively.
  • v4.2.4 Changes

    • โž• Added overloads to WaitAndRetry and WaitAndRetryAsync methods that accept an onRetry delegate which includes the attempt count. Thanks to @SteveCote
  • v4.2.3 Changes

    • โšก๏ธ Updated the Polly.Net40Async NuGet package to enable async via the SUPPORTSASYNC constant. Cleaned up the build scripts in order to ensure unnecessary DLL references are not included within each of the framework targets. Thanks to @reisenberger and @joelhulen
  • v4.2.2 Changes

    • โž• Add new Polly.Net40Async project/package supporting async for .NET40 via Microsoft.Bcl.Async. Thanks to @Lumirris
  • v4.2.1 Changes

    • ๐Ÿ‘ Allowed async onRetry delegates to async retry policies. Thanks to @reisenberger
  • v4.2.0 Changes