From d06f15596a3ca84f2aff80b335502293839b6207 Mon Sep 17 00:00:00 2001 From: Maxime mouial Date: Fri, 23 Oct 2020 17:30:01 +0200 Subject: [PATCH] Releasing 4.1.0 --- CHANGELOG.md | 8 ++++++++ statsd/telemetry.go | 2 +- 2 files changed, 9 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index fd052d94..8a3b2fca 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,12 @@ [//]: # (comment: Don't forget to update statsd/telemetry.go:clientVersionTelemetryTag when releasing a new version) +# 4.1.0 / 2020-10-23 + +[BETA BUGFIX] Ignore sampling rate when client side aggregation is enabled (for Gauge, Count and Set). See [#170][]. +[FEATURE] Adding a new option `WithDevMode()`, to send more telemetry metrics to ease troubleshooting issues. See [#169][]. + + # 4.0.1 / 2020-10-07 ### Notes @@ -236,6 +242,8 @@ Below, for reference, the latest improvements made in 07/2016 - 08/2016 [#156]: https://github.com/DataDog/datadog-go/pull/156 [#157]: https://github.com/DataDog/datadog-go/pull/157 [#163]: https://github.com/DataDog/datadog-go/pull/163 +[#169]: https://github.com/DataDog/datadog-go/pull/169 +[#170]: https://github.com/DataDog/datadog-go/pull/170 [@Aceeri]: https://github.com/Aceeri [@Jasrags]: https://github.com/Jasrags [@KJTsanaktsidis]: https://github.com/KJTsanaktsidis diff --git a/statsd/telemetry.go b/statsd/telemetry.go index 8213e9eb..222aa3cf 100644 --- a/statsd/telemetry.go +++ b/statsd/telemetry.go @@ -19,7 +19,7 @@ var clientTelemetryTag = "client:go" /* clientVersionTelemetryTag is a tag identifying this specific client version. */ -var clientVersionTelemetryTag = "client_version:4.0.1" +var clientVersionTelemetryTag = "client_version:4.1.0" type telemetryClient struct { c *Client