Skip to content

Commit a0469ac

Browse files
committed
Releasing 4.8.1
1 parent f507940 commit a0469ac

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

CHANGELOG.md

+7-1
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,16 @@
22

33
[//]: # (comment: Don't forget to update statsd/telemetry.go:clientVersionTelemetryTag when releasing a new version)
44

5+
# 4.8.1 / 2021-07-09
6+
7+
* [BUGFIX] Prevent telemetry from using the client global namespace. See [#205][]
8+
* [BETA][BUGFIX] Fix timings having a different precision with and without extended aggregation. See [#204][]
9+
510
# 4.8.0 / 2021-06-14
611

712
* [BETA][IMPROVEMENT] Reduce aggregation default window to 2s to reduce sampling aliasing. See [#199][]
813
* [IMPROVEMENT] Automatically add a "\n" after each metric so the agent can determine if a metric is truncated. Per source EOL detection was made available in agent 7.28 with the `dogstatsd_eol_required` setting. See [#198][]
914

10-
1115
# 4.7.0 / 2021-05-05
1216

1317
* [BETA] Increase the number of workers in the aggregator when using channelMode with extended aggregation to have
@@ -307,6 +311,8 @@ Below, for reference, the latest improvements made in 07/2016 - 08/2016
307311
[#195]: https://github.com/DataDog/datadog-go/pull/195
308312
[#198]: https://github.com/DataDog/datadog-go/pull/198
309313
[#199]: https://github.com/DataDog/datadog-go/pull/199
314+
[#204]: https://github.com/DataDog/datadog-go/pull/204
315+
[#205]: https://github.com/DataDog/datadog-go/pull/205
310316
[@Aceeri]: https://github.com/Aceeri
311317
[@Jasrags]: https://github.com/Jasrags
312318
[@KJTsanaktsidis]: https://github.com/KJTsanaktsidis

statsd/telemetry.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ var clientTelemetryTag = "client:go"
1919
/*
2020
clientVersionTelemetryTag is a tag identifying this specific client version.
2121
*/
22-
var clientVersionTelemetryTag = "client_version:4.8.0"
22+
var clientVersionTelemetryTag = "client_version:4.8.1"
2323

2424
type telemetryClient struct {
2525
c *Client

0 commit comments

Comments
 (0)