Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 5.4.0 #249

Merged
merged 2 commits into from
Mar 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,16 +2,19 @@

[//]: # (comment: Don't forget to update lib/datadog/statsd/version.rb:DogStatsd::Statsd::VERSION when releasing a new version)

* [IMPROVEMENT] Add a `pre_sampled` option to metric methods [#235][] by [@matthewshafer][]

* [OTHER] Ruby versions earlier than 2.1.0 are no longer supported. Ruby-2.0 was EOL as of 2016-02-24.

* [OTHER] Ruby versions 3.0 and 3.1 are now supported, including a fix for keyword arguments to `StatsD#open`. [#240][]

## 5.3.3 / 2022.02.02

* [IMPROVEMENT] Add option "buffer_flush_interval" to flush buffered metrics [#231][] by [@abicky][]

* [IMPROVEMENT] Add Sender.queue_size limits to limit number of buffered metrics [#232][] by [@djmitche][]

* [IMPROVEMENT] The client can now be configured to use UDS via the `DD_DOGSTATSD_SOCKET` environment variable.
>>>>>>> master
This variable does not take precedence over any explicit parameters passed to the Statsd constructor.
[#227][] by [@djmitche][]

Expand Down Expand Up @@ -408,6 +411,8 @@ Future versions are likely to introduce backward incompatibilities with < Ruby 1
[#222]: https://github.com/DataDog/dogstatsd-ruby/issues/222
[#231]: https://github.com/DataDog/dogstatsd-ruby/issues/231
[#232]: https://github.com/DataDog/dogstatsd-ruby/issues/232
[#235]: https://github.com/DataDog/dogstatsd-ruby/issues/235
[#240]: https://github.com/DataDog/dogstatsd-ruby/issues/240
[@AMekss]: https://github.com/AMekss
[@abicky]: https://github.com/abicky
[@adimitrov]: https://github.com/adimitrov
Expand All @@ -431,6 +436,7 @@ Future versions are likely to introduce backward incompatibilities with < Ruby 1
[@kbogtob]: https://github.com/kbogtob
[@laserlemon]: https://github.com/laserlemon
[@marcotc]: https://github.com/marcotc
[@matthewshafer]: https://github.com/matthewshafer
[@misterbyrne]: https://github.com/misterbyrne
[@nelhage]: https://github.com/nelhage
[@olefriis]: https://github.com/olefriis
Expand Down
2 changes: 1 addition & 1 deletion lib/datadog/statsd/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@

module Datadog
class Statsd
VERSION = '5.3.3'
VERSION = '5.4.0'
end
end