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

Prepare release v5.0.1 #177

Merged
merged 1 commit into from Apr 9, 2021
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
14 changes: 14 additions & 0 deletions CHANGELOG.md
Expand Up @@ -2,6 +2,15 @@

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

## 5.0.1 / 2021.04.09

* [OTHER] Re-introduce a `Statsd#batch` method to help with compatibility with v4.x versions:
- It is deprecated and will be removed in v6.x
- It does not have the exact same behavior as the batch method from v4.x versions
since the flush could now automatically occur while the batch block is executed if
the buffer has been filled. [#176][] by [@remeh][]
* [BUGFIX] Safely close concurrent resources on Sender [#175][] by [@marcotc][]

## 5.0.0 / 2021.04.07

**API breaking changes**
Expand Down Expand Up @@ -294,10 +303,14 @@ Future versions are likely to introduce backward incompatibilities with < Ruby 1
[#138]: https://github.com/DataDog/dogstatsd-ruby/issues/138
[#140]: https://github.com/DataDog/dogstatsd-ruby/issues/140
[#143]: https://github.com/DataDog/dogstatsd-ruby/issues/143
[#146]: https://github.com/DataDog/dogstatsd-ruby/issues/146
[#147]: https://github.com/DataDog/dogstatsd-ruby/issues/147
[#151]: https://github.com/DataDog/dogstatsd-ruby/issues/151
[#155]: https://github.com/DataDog/dogstatsd-ruby/issues/155
[#156]: https://github.com/DataDog/dogstatsd-ruby/issues/156
[#161]: https://github.com/DataDog/dogstatsd-ruby/issues/161
[#175]: https://github.com/DataDog/dogstatsd-ruby/issues/175
[#176]: https://github.com/DataDog/dogstatsd-ruby/issues/176
[@AMekss]: https://github.com/AMekss
[@abicky]: https://github.com/abicky
[@adimitrov]: https://github.com/adimitrov
Expand All @@ -324,6 +337,7 @@ Future versions are likely to introduce backward incompatibilities with < Ruby 1
[@pschambacher]: https://github.com/pschambacher
[@ramfjord]: https://github.com/ramfjord
[@redhotpenguin]: https://github.com/redhotpenguin
[@remeh]: https://github.com/remeh
[@sensadrome]: https://github.com/sensadrome
[@sj26]: https://github.com/sj26
[@sullerandras]: https://github.com/sullerandras
Expand Down
2 changes: 1 addition & 1 deletion lib/datadog/statsd/version.rb
Expand Up @@ -4,6 +4,6 @@

module Datadog
class Statsd
VERSION = '5.0.0'
VERSION = '5.0.1'
end
end
2 changes: 1 addition & 1 deletion spec/statsd/version_spec.rb
Expand Up @@ -3,7 +3,7 @@
describe Datadog::Statsd do
describe 'VERSION' do
it 'has a version' do
expect(Datadog::Statsd::VERSION).to eq '5.0.0'
expect(Datadog::Statsd::VERSION).to eq '5.0.1'
end
end
end