Compare commits

..

No commits in common. "255fc98d44b2216454bb2368c97dfb213e4ebf33" and "e4338979a6be90ff213072774e921d2267db14b3" have entirely different histories.

3 changed files with 5 additions and 13 deletions

View File

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

View File

@ -1,12 +0,0 @@
# 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.1"
VERSION = "0.24.0"
end