Download Latest Version 25.0.0-beta.2 source code.zip (1.6 MB)
Email in envelope

Get an email when there's a new version of Ocelot

Home / 24.1.0
Name Modified Size InfoDownloads / Week
Parent folder
Ocelot.Cache.CacheManager.24.1.0.nupkg 2025-12-25 24.1 kB
Ocelot.Provider.Consul.24.1.0.nupkg 2025-12-25 43.0 kB
Ocelot.Provider.Eureka.24.1.0.nupkg 2025-12-25 25.4 kB
Ocelot.Provider.Kubernetes.24.1.0.nupkg 2025-12-25 52.7 kB
Ocelot.Provider.Polly.24.1.0.nupkg 2025-12-25 43.6 kB
Ocelot.24.1.0.nupkg 2025-12-25 362.3 kB
Ocelot.Tracing.Butterfly.24.1.0.nupkg 2025-12-25 28.7 kB
Ocelot.Tracing.OpenTracing.24.1.0.nupkg 2025-12-25 27.4 kB
24.1.0 source code.tar.gz 2025-12-25 1.3 MB
24.1.0 source code.zip 2025-12-25 1.8 MB
README.md 2025-12-25 26.4 kB
Totals: 11 Items   3.7 MB 1

Summer-Autumn 2025 (version 24.1) aka Globality release

Milestone: Summer'25 Codenamed: Globality Read the Docs: Ocelot 24.1 with PDF

:information_source: About

In this minor release, the Ocelot team put the spotlight on the Configuration feature as part of their semi-annual 2025 effort, with a particular focus on the Global Configuration Schema. This release enhances support for global configurations across both routing modes: the classic static Routing and the service discovery-based Dynamic Routing.

The updated documentation highlights the deprecation of certain options through multiple notes and warnings. This deprecation process will be completed in the upcoming .NET 10 release. With the [Obsolete] attributes in place, C# developers will notice several warnings in the build logs during compilation.

On top of that, this release brings a great enhancement to the Kubernetes provider, also known as the Ocelot.Provider.Kubernetes package.

:new: What's New?

This update brings changes to the Dynamic Route Schema and Global Configuration Schema, while the Route Schema stays the same apart from deprecation updates. All work was coordinated under issue [#585], which addressed the challenges of configuring Ocelot's most popular features globally before version 24.1, when dynamic routing gained global configuration partial support, but static routing mostly lacked it. A key outcome of [#585] is the ability to override global configuration options within the DynamicRoutes collection. This ongoing issue will continue to require attention, as adapting static route global configurations for dynamic routing is complex and, in some cases, impossible. This will be a challenge for future Ocelot releases and the community.

The Ocelot.Provider.Kubernetes package now features a new WatchKube provider for Kubernetes service discovery. This provider is a great fit for high-load environments where the older Kube and PollKube providers struggle to handle heavy traffic, often leading to increased log errors, HTTP 500 issues, and potential Ocelot instance failures. WatchKube is the next step in the evolution of these providers, leveraging the reactive capabilities of the KubeClient API. For guidance on choosing the right provider for your Kubernetes setup, check out the "Comparing providers" section in the documentation.

In the past, the Timeout setting in the Route Schema didn't actually stop requests, defaulting instead to a fixed 90 seconds. Custom timeouts were handled using the Quality of Service Timeout strategy, and this only applied if Polly and the Ocelot.Provider.Polly package were used. Now, the Timeout option (in seconds) can be set at the route, global, and QoS levels. The Global Configuration Schema and Dynamic Route Schema also include the new Timeout setting, making it possible to configure default timeouts for dynamic routing as well.

Starting with version 24.1, two new parameters in QoSOptions, FailureRatio and SamplingDuration, let you fine-tune the behavior of the Circuit Breaker strategy. Both can be configured globally, even with dynamic routing. Please note that DurationOfBreak, ExceptionsAllowedBeforeBreaking, and TimeoutValue are now deprecated in 24.1, so check the QoSOptions Schema documentation for details.

:up: What's Updated?

The updated docs now highlight these deprecated options with multiple notes and warnings. The v24.1 deprecation process will wrap up in the upcoming .NET 10 release. Due to the Obsolete attributes, C# developers will notice several build warnings during compilation.

The project was removed from the main repo and moved to its own Ocelot.Testing repository. This change allows the Ocelot.Testing package to be shared independently for extension package delivery. The Ocelot team also plans to deprecate more projects and move them to separate repos because: a) despite the fact that a monorepo enables faster builds and quicker delivery; b) but the release process can be delayed by missing versions of integrated libraries in extension packages. The goal is for the Ocelot repo to only contain essential projects, avoiding delays caused by integrated package release schedules. Legacy or abandoned integrated packages should be deprecated and maintained in their own repos with independent release cycles.

The Global Configuration Schema now includes new DownstreamHeaderTransform and UpstreamHeaderTransform options. These work only with static routes, meaning the Routes collection (see Route Schema). They aren't supported for dynamic routes because they're not part of the Dynamic Route Schema, and Ocelot Core doesn't read global configuration of this feature in dynamic routing mode. This is noted in the Roadmap documentation.

The Global Configuration Schema now includes a new AuthenticationOptions property for setting up static routes globally. This also introduces the AllowAnonymous boolean option within AuthenticationOptions to control static route authentication. Later, PR [#2336] extended global authentication support to dynamic routes. Note: The AuthenticationProviderKey option is deprecated in version 24.1—see the AuthenticationOptions Schema documentation for details.

The Global Configuration Schema now includes a new RateLimitOptions property for both static and dynamic routes. Previously, global configuration was available through RateLimitOptions in dynamic routing mode, while route overriding used the now-deprecated RateLimitRule from the Dynamic Route Schema. This marks the second major overhaul of the Rate Limiting feature since the first update in PR [#1592]. A new Wait option has been added, replacing the deprecated PeriodTimespan, to enhance the Fixed Window algorithm. The full list of deprecated options can be found in the Deprecated Options documentation.

The Global Configuration Schema now includes a new LoadBalancerOptions property for both static and dynamic routes. Previously, global configuration was available through LoadBalancerOptions in dynamic routing mode without dynamic route overrides. Starting with version 24.1, the Dynamic Route Schema also supports LoadBalancerOptions for overriding, and global configuration for static routes is now supported as well.

The Global Configuration Schema now includes a new CacheOptions property for both static and dynamic routes. Global configuration has been available for static routes since version 23.3, but starting with version 24.1, the Dynamic Route Schema also supports CacheOptions for overriding. Note that the FileCacheOptions property in the Route Schema (static routes) is deprecated in version 24.1. For more details, see the caching Configuration documentation.

The Global Configuration Schema now includes a new HttpHandlerOptions property for both static and dynamic routes. Previously, global configuration was available through HttpHandlerOptions in dynamic routing mode without dynamic route overriding. Starting with version 24.1, the Dynamic Route Schema also supports HttpHandlerOptions for overriding, and global configuration is now available for static routes as well.

The Global Configuration Schema now includes a new AuthenticationOptions property for both static and dynamic routes. Starting with version 24.1, the Dynamic Route Schema also supports AuthenticationOptions to override global settings. Note that the AuthenticationProviderKey option is deprecated in version 24.1, so check the AuthenticationOptions Schema documentation for details.

The Global Configuration Schema now includes a new QoSOptions property for both static and dynamic routes. Previously, global configuration was available through QoSOptions in dynamic routing mode without the option for dynamic route overrides. Starting with version 24.1, the Dynamic Route Schema supports QoSOptions for overriding, and global configuration support is now available for static routes as well. Note that the DurationOfBreak, ExceptionsAllowedBeforeBreaking, and TimeoutValue options are deprecated in version 24.1. For details, see the QoSOptions Schema documentation.

  • DevOps: Stabilized tests and reviewed GH-Actions workflows by @raman-m in PRs [#2342] and [#2345].

These efforts kept the CI/CD builds in GitHub Actions stable, targeting the alpha release of version 24.1. The CI/CD environment was set up and tested GH-Actions workflows in advance for the beta release, which is the goal of PR [#2347].

:package: Patches

  • Websockets: Issue [#930] patch by @hogwartsdeveloper in PR [#2091]. This update removes the troublesome System.Net.WebSockets.WebSocketException from logs, preventing Ocelot from running into 500 status disasters. The issue stemmed from client-side or network events that Ocelot's WebSocketsProxyMiddleware couldn't anticipate on the server side. The patch now checks for incorrect connection statuses, attempting to close the connection and end server-side tasks gracefully without errors.

  • Kubernetes: Issue [#2304] patch by @raman-m in PR [#2335]. This update fixes the PollKube provider to address a bug with the first cold request, where the winning thread got an empty collection before the initial callback was triggered. The solution is to call the integrated discovery provider for the first cold request when the queue is empty.

  • Authorization: Issue [#913] patch by @mehyaa in PR [#1478]. Starting with version 24.1, Ocelot now supports RFC 8693 (OAuth 2.0 Token Exchange) for the scope claim in the ScopesAuthorizer service, also referred to as the IScopesAuthorizer service in the DI container.

Honoring :medal_sports: aka Top Contributors :clap:

1st :1st_place_medal: goes to Zhannur Akhmetkhanov for delivering 2 features 2nd :2nd_place_medal: goes to Milad Rivandi for delivering 1 feature in 136 files changed 3rd :3rd_place_medal: goes to jlukawska for delivering 1 feature in 39 files changed

Starring :star: aka Release Influencers :bowtie:

:star::star::star::star::star::star::star::star::star::star::star::star::star::star::star::star: Raman Maksimchuk :star::star: Zhannur Akhmetkhanov :star: Milad Rivandi :star: jlukawska :star: Raynald Messié :star: Mark Bøg Lønquist :star: Nikolay :star: Mehmet Yasin AKAR :star: Harris Zhang

Features in Release 24.1.0

Logbook - 6be80d88 by **Raman Maksimchuk** on Wednesday, December 24 at 10:05 → [#2343] Release 24.1 Beta.1 (#2348) - 2f317b74 by **Raman Maksimchuk** on Tuesday, December 23 at 17:22 → [#2343] Release 24.1 Beta | +semver: minor (#2347) - fede41de by **Raman Maksimchuk** on Friday, December 19 at 17:19 → [#2343] Pre-release 24.1 | +semver: patch (#2345) - fff9cf70 by **Raman Maksimchuk** on Tuesday, December 09 at 21:20 → Follow-up on [#2335] and [#2339]: Stabilize flaky tests in the CI/CD environment (#2342) - adc34ecc by **Mehmet Yasin AKAR** on Sunday, December 07 at 21:16 → [#913] Support RFC 8693 (OAuth 2.0 Token Exchange) for the "scope" claim in ScopesAuthorizer (#1478) - 35dbc9d6 by **Raman Maksimchuk** on Thursday, December 04 at 17:25 → [#585] [#2338] Quality of Service global configuration (#2339) - 4730613e by **Raman Maksimchuk** on Monday, November 24 at 09:48 → [#585] [#2316] Authentication global configuration (#2336) - 1fdf6c23 by **Raman Maksimchuk** on Tuesday, November 11 at 13:45 → [#2304] Utilize ConcurrentQueue{T} for managing service versions during polling by the PollKube discovery provider (#2335) - 91273876 by **Raman Maksimchuk** on Sunday, November 09 at 22:36 → [#585] [#2320] Http handler global configuration (#2332) - e3ad51c9 by **Raman Maksimchuk** on Monday, October 27 at 18:09 → [#585] [#2330] Caching global configuration (#2331) - f758ba7b by **Raman Maksimchuk** on Thursday, October 23 at 00:36 → [#585] [#2319] Load Balancer global configuration (#2324) - 3c6f6485 by **Raman Maksimchuk** on Thursday, September 25 at 18:04 → [#1440] [#2318] Remove the GH Actions step /usr/lib/dotnet since the old DevOps lifehack is no longer necessary - e6b2023b by **Raman Maksimchuk** on Thursday, September 25 at 17:37 → [#1440] Update license file (#2318) - d5e6d9ae by **Milad Rivandi** on Tuesday, September 23 at 10:55 → [#585] [#1229] [#1598] [#1915] Rate limiting global configuration (#2294) - 265f9b4d by **jlukawska** on Sunday, August 10 at 21:00 → [#842] [#1414] Introduce AllowAnonymous authentication option with global AuthenticationOptions configuration (#2114) - c7b9c91f by **Harris Zhang** on Tuesday, August 05 at 18:13 → Use the appropriate class name as a type parameter to create a named logger through the factory in the ConfigurationMiddleware constructor (#2306) - c29d821e by **Mark Bøg Lønquist** on Saturday, July 26 at 15:38 → [#1658] Add global configuration for Headers Transformation (#1659) - c721273e by **Raynald Messié** on Saturday, July 19 at 18:21 → [#2080] Add new FailureRatio and SamplingDuration V8 parameters to fine-tune Polly's circuit-breaker strategy via route-level and global QoS options (#2081) - 7c583bf1 by **Zhannur Akhmetkhanov** on Friday, July 04 at 21:10 → [#1314] [#1869] [#2072] Default timeout for all levels, including route, global, and QoS (#2073) - 8143d560 by **Nikolay** on Monday, June 16 at 16:16 → [#2168] A brand-new `WatchKube` provider for Kubernetes service discovery (#2174) - ed8ba5bf by **Raman Maksimchuk** on Thursday, June 12 at 22:45 → Follow up [#2091] Update the Develop & Release workflows to include two actions: adding DNS records and installing certificates - e527f270 by **Zhannur Akhmetkhanov** on Friday, June 13 at 01:01 → [#930] Try to close WebSocket destination when state is Open or CloseReceived (#2091) - 0b794b39 by **Raman Maksimchuk** on Tuesday, May 27 at 13:33 → Publish Administration docs of the new Ocelot.Administration.IdentityServer4 package - cae58d5f by **Raman Maksimchuk** on Friday, May 23 at 12:52 → Deprecate the Ocelot.Testing project in favor of its NuGet package (#2295) - e78fe42f by **Raman Maksimchuk** on Tuesday, April 22 at 19:56 → Rewrite the README and roll back the status badge targets to `develop`
Source: README.md, updated 2025-12-25