Skip to content

Commit bebc868

Browse files
committed
Releasing 5.1.0
1 parent bb10f0b commit bebc868

File tree

2 files changed

+18
-1
lines changed

2 files changed

+18
-1
lines changed

CHANGELOG.md

+17
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

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

5+
# 5.1.0 / 2022-03-02
6+
7+
* [FEATURE] Adding support for container origin detection. See [#250][].
8+
* [FEATURE] Adding `IsClosed` method the client. See [#254][], thanks [@lucassscaravelli][].
9+
* [FEATURE] Adding a mock for the `Client` interface to ease testing from users. See [#255][].
10+
* [IMPROVEMENT] Optimize `getContext` and `getContextAndTags` functions. See [#253][], thanks [@martin-sucha][].
11+
* [IMPROVEMENT] Export error `MessageTooLongError` to catch error when sending message that can't fit in a buffer. See
12+
[#252][].
13+
* [BUGFIX] Add missing `GetTelemetry` from the `Client` Interface. See [#255][].
14+
515
# 5.0.2 / 2021-11-29
616

717
* [BUGFIX] Fix Windows erroneous import. See [#242][], thanks [@programmer04][].
@@ -377,6 +387,11 @@ Below, for reference, the latest improvements made in 07/2016 - 08/2016
377387
[#235]: https://github.com/DataDog/datadog-go/pull/235
378388
[#237]: https://github.com/DataDog/datadog-go/pull/237
379389
[#242]: https://github.com/DataDog/datadog-go/pull/242
390+
[#250]: https://github.com/DataDog/datadog-go/pull/250
391+
[#252]: https://github.com/DataDog/datadog-go/pull/252
392+
[#253]: https://github.com/DataDog/datadog-go/pull/253
393+
[#254]: https://github.com/DataDog/datadog-go/pull/254
394+
[#255]: https://github.com/DataDog/datadog-go/pull/255
380395
[@Aceeri]: https://github.com/Aceeri
381396
[@Jasrags]: https://github.com/Jasrags
382397
[@KJTsanaktsidis]: https://github.com/KJTsanaktsidis
@@ -410,3 +425,5 @@ Below, for reference, the latest improvements made in 07/2016 - 08/2016
410425
[@cyx]: https://github.com/cyx
411426
[@matthewdale]: https://github.com/matthewdale
412427
[@programmer04]: https://github.com/programmer04
428+
[@martin-sucha]: https://github.com/martin-sucha
429+
[@lucassscaravelli]: https://github.com/lucassscaravelli

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:5.0.2"
22+
var clientVersionTelemetryTag = "client_version:5.1.0"
2323

2424
// Telemetry represents internal metrics about the client behavior since it started.
2525
type Telemetry struct {

0 commit comments

Comments
 (0)