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
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@

# 5.9.0 / xxxx-xx-xx

# 5.8.3 / 2026-02-02
- [IMPROVEMENT] Shard aggregator lock. See [#351][], thanks [@opsengine][].
- [IMPROVEMENT] Fix race condition in statsd external_env initialization. See [#352][], thanks [@jprobinson][].

# 5.8.2 / 2025-12-03
- [IMPROVEMENT] Optimistic allocation for Count and Set metrics. See [#308][], thanks [@opsengine][].

Expand Down Expand Up @@ -462,6 +466,8 @@ Below, for reference, the latest improvements made in 07/2016 - 08/2016
[#326]: https://github.com/DataDog/datadog-go/pull/326
[#327]: https://github.com/DataDog/datadog-go/pull/327
[#334]: https://github.com/DataDog/datadog-go/pull/334
[#351]: https://github.com/DataDog/datadog-go/pull/351
[#352]: https://github.com/DataDog/datadog-go/pull/352
[@Aceeri]: https://github.com/Aceeri
[@Jasrags]: https://github.com/Jasrags
[@KJTsanaktsidis]: https://github.com/KJTsanaktsidis
Expand Down Expand Up @@ -499,4 +505,4 @@ Below, for reference, the latest improvements made in 07/2016 - 08/2016
[@lucassscaravelli]: https://github.com/lucassscaravelli
[@byronwolfman]: https://github.com/byronwolfman
[@opsengine]: https://github.com/opsengine

[@jprobinson]: https://github.com/jprobinson
2 changes: 1 addition & 1 deletion statsd/telemetry.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ var clientTelemetryTag = "client:go"
/*
clientVersionTelemetryTag is a tag identifying this specific client version.
*/
var clientVersionTelemetryTag = "client_version:5.8.2"
var clientVersionTelemetryTag = "client_version:5.8.3"

// Telemetry represents internal metrics about the client behavior since it started.
type Telemetry struct {
Expand Down
Loading