Compare commits

..

2 Commits

Author SHA1 Message Date
HoneyryderChuck
255fc98d44 bumped version to 0.24.1 2023-06-27 16:09:20 +01:00
HoneyryderChuck
4f0b41a791 revert rubocop regression change (fixed in latest) 2023-06-27 10:17:22 +01:00
3 changed files with 13 additions and 5 deletions

View File

@ -39,7 +39,3 @@ Naming/AccessorMethodName:
Performance/MethodObjectAsBlock:
Enabled: false
# TODO: remove after https://github.com/rubocop/rubocop/issues/11980 is fixed
Style/RedundantCurrentDirectoryInPath:
Enabled: false

View File

@ -0,0 +1,12 @@
# 0.24.1
## Improvements
* datadog adapter: support `:service_name` configuration option.
* datadog adapter: set `:distributed_tracing` to `true` by default.
* `:proxy` plugin: when the proxy uri uses an unsupported scheme (i.e.: "scp://125.24.2.1"), a more user friendly error is raised (instead of the previous broken stacktrace).
## Bugfixes
* datadog adapter: fix tracing enable call, which was wrongly calling `super`.
+ `:proxy` plugin: fix for bug which was turning off plugins overriding `HTTPX::Connection#send` (such as the datadog adapter).

View File

@ -1,5 +1,5 @@
# frozen_string_literal: true
module HTTPX
VERSION = "0.24.0"
VERSION = "0.24.1"
end