From f4aaa171ab753ca26ee36d2ba8971d9e094eaab2 Mon Sep 17 00:00:00 2001 From: Maxime mouial Date: Wed, 27 Oct 2021 14:50:35 +0200 Subject: [PATCH] Releasing 4.8.3 --- CHANGELOG.md | 5 +++++ statsd/telemetry.go | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1c87f4eb5..71481027e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,10 @@ [//]: # (comment: Don't forget to update statsd/telemetry.go:clientVersionTelemetryTag when releasing a new version) +# 4.8.3 / 2021-10-27 + +* [BUGFIX] Fix `Event.Check` method: text is no longer required. See [#237][]. + # 4.8.2 / 2021-09-06 * [BETA][BUGFIX] Fix race condition in aggregation where two sample could overwrite each other when sampled for the first time. See [#225][] @@ -318,6 +322,7 @@ Below, for reference, the latest improvements made in 07/2016 - 08/2016 [#204]: https://github.com/DataDog/datadog-go/pull/204 [#205]: https://github.com/DataDog/datadog-go/pull/205 [#225]: https://github.com/DataDog/datadog-go/pull/225 +[#237]: https://github.com/DataDog/datadog-go/pull/237 [@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 a6715af0d..eef5c2731 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.8.2" +var clientVersionTelemetryTag = "client_version:4.8.3" type telemetryClient struct { c *Client