Skip to content

Commit 9be05e0

Browse files
committed
Releasing 4.3.0
1 parent 6827f54 commit 9be05e0

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22

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

5+
# 4.3.0 / 2021-01-20
6+
7+
* [BETA] Adding client side aggregation for distributions, histograms and timings. See [#176][].
8+
* [IMPROVEMENT] Use a worker-specific random source to remove lock contention. See [#178][]. Thanks to [@matthewdale][].
9+
* [IMPROVEMENT] Update devMode telemetry naming and taging to ease graphing in Datadog. See [#175][].
510

611
# 4.2.0 / 2020-11-02
712

@@ -250,6 +255,9 @@ Below, for reference, the latest improvements made in 07/2016 - 08/2016
250255
[#169]: https://github.com/DataDog/datadog-go/pull/169
251256
[#170]: https://github.com/DataDog/datadog-go/pull/170
252257
[#171]: https://github.com/DataDog/datadog-go/pull/171
258+
[#175]: https://github.com/DataDog/datadog-go/pull/175
259+
[#176]: https://github.com/DataDog/datadog-go/pull/176
260+
[#178]: https://github.com/DataDog/datadog-go/pull/178
253261
[@Aceeri]: https://github.com/Aceeri
254262
[@Jasrags]: https://github.com/Jasrags
255263
[@KJTsanaktsidis]: https://github.com/KJTsanaktsidis
@@ -281,3 +289,4 @@ Below, for reference, the latest improvements made in 07/2016 - 08/2016
281289
[@kamatama41]: https://github.com/kamatama41
282290
[@chrisleavoy]: https://github.com/chrisleavoy
283291
[@cyx]: https://github.com/cyx
292+
[@matthewdale]: https://github.com/matthewdale

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.2.0"
22+
var clientVersionTelemetryTag = "client_version:4.3.0"
2323

2424
type telemetryClient struct {
2525
c *Client

0 commit comments

Comments
 (0)