Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,12 @@
CHANGELOG
=========

# 9.1.0 / 2026-04-27

## Changes

* [FEATURE] Add synchronous mode for serverless environments. Set `StatsdConfig.SynchronousMode = true` to bypass the async background worker and route metrics on the calling thread. Call `Flush()` at the end of each handler invocation to send any remaining buffered metrics before the sandbox freezes. See [#227][].

# 9.0.0 / 2025-08-18

## Breaking Changes
Expand Down Expand Up @@ -285,6 +291,10 @@ DogStatsD-CSharp-Client `2.2.1` is the last version to support .NET Framework 3.
[#186]: https://github.com/DataDog/dogstatsd-csharp-client/issues/186
[#187]: https://github.com/DataDog/dogstatsd-csharp-client/issues/187
[#188]: https://github.com/DataDog/dogstatsd-csharp-client/issues/188
[#209]: https://github.com/DataDog/dogstatsd-csharp-client/issues/209
[#211]: https://github.com/DataDog/dogstatsd-csharp-client/issues/211
[#213]: https://github.com/DataDog/dogstatsd-csharp-client/issues/213
Comment on lines +294 to +296
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Are these just commits that were missing from other change log entries?

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes, they are from 9.0.0.

[#227]: https://github.com/DataDog/dogstatsd-csharp-client/issues/227
[@DanielVukelich]: https://github.com/DanielVukelich
[@albertofem]: https://github.com/albertofem
[@alistair]: https://github.com/alistair
Expand All @@ -306,4 +316,4 @@ DogStatsD-CSharp-Client `2.2.1` is the last version to support .NET Framework 3.
[@sqdk]: https://github.com/sqdk
[@windsnow98]: https://github.com/windsnow98
[@wjdavis5]: https://github.com/wjdavis5
[@yori-s]: https://github.com/yori-s
[@yori-s]: https://github.com/yori-s
1 change: 1 addition & 0 deletions src/StatsdClient/StatsdClient.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<PackageId>DogStatsD-CSharp-Client</PackageId>
<TargetFrameworks>net461;netstandard2.0;netcoreapp3.1;net6.0</TargetFrameworks>
<LangVersion>latest</LangVersion>
<PackageVersion>9.1.0</PackageVersion>
Copy link
Copy Markdown
Contributor Author

@StephenWakely StephenWakely Apr 27, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

We do not bump <Version> as per here.

<Version>9.0.0</Version>
<SignAssembly>true</SignAssembly>
<AssemblyOriginatorKeyFile>StatsdClient.snk</AssemblyOriginatorKeyFile>
Expand Down
Loading