ddtrace 1.16.0 → 1.16.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: a4e85c12caf77e324eee9de8f9ddf143b0e49c3487230ff841ab7a5be05e4c7d
|
|
4
|
+
data.tar.gz: 44d799e085ae66280177800c136c656085d6f1fc5d32085c2852158c4290ef59
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 8c651f6acbdff86fac984f61df4f2322eb449e3355220810a955496c51d33565ddbd6d15f3ca5049f9f0738c93508db9def7c24f046a51d3ef616b6182a1ca4d
|
|
7
|
+
data.tar.gz: 75fc3aa27da60ec0998087a814f77fe33a4f4c0bcbbda52b647cc00552945e412fa8d7e276d69d470b258da8c204db5186f24118cf4e0dc24bec9c1681ed1c33
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,13 @@
|
|
|
2
2
|
|
|
3
3
|
## [Unreleased]
|
|
4
4
|
|
|
5
|
+
## [1.16.1] - 2023-11-08
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
* Tracing: Fix `concurrent-ruby` future propagation without `active_trace` ([#3242][])
|
|
10
|
+
* Tracing: Fix host injection error handling ([#3240][])
|
|
11
|
+
|
|
5
12
|
## [1.16.0] - 2023-11-03
|
|
6
13
|
|
|
7
14
|
**This release includes a security change for the Tracing Redis integration:**
|
|
@@ -2620,7 +2627,8 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
|
|
|
2620
2627
|
Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
|
|
2621
2628
|
|
|
2622
2629
|
|
|
2623
|
-
[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v1.16.
|
|
2630
|
+
[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v1.16.1...master
|
|
2631
|
+
[1.16.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.16.0...v1.16.1
|
|
2624
2632
|
[1.16.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.15.0...v1.16.0
|
|
2625
2633
|
[1.15.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.14.0...v1.15.0
|
|
2626
2634
|
[1.14.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.13.1...1.14.0
|
|
@@ -3831,6 +3839,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
|
|
|
3831
3839
|
[#3223]: https://github.com/DataDog/dd-trace-rb/issues/3223
|
|
3832
3840
|
[#3234]: https://github.com/DataDog/dd-trace-rb/issues/3234
|
|
3833
3841
|
[#3235]: https://github.com/DataDog/dd-trace-rb/issues/3235
|
|
3842
|
+
[#3240]: https://github.com/DataDog/dd-trace-rb/issues/3240
|
|
3843
|
+
[#3242]: https://github.com/DataDog/dd-trace-rb/issues/3242
|
|
3834
3844
|
[@AdrianLC]: https://github.com/AdrianLC
|
|
3835
3845
|
[@Azure7111]: https://github.com/Azure7111
|
|
3836
3846
|
[@BabyGroot]: https://github.com/BabyGroot
|
|
@@ -19,7 +19,7 @@ module Datadog
|
|
|
19
19
|
# post method runs the task within composited executor - in a different thread. The original arguments are
|
|
20
20
|
# captured to be propagated to the composited executor post method
|
|
21
21
|
def post(*args, &task)
|
|
22
|
-
digest = Tracing.active_trace.to_digest
|
|
22
|
+
digest = Tracing.active_trace && Tracing.active_trace.to_digest
|
|
23
23
|
executor = @composited_executor.is_a?(Symbol) ? Concurrent.executor(@composited_executor) : @composited_executor
|
|
24
24
|
|
|
25
25
|
# Pass the original arguments to the composited executor, which
|
data/lib/ddtrace/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: ddtrace
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 1.16.
|
|
4
|
+
version: 1.16.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Datadog, Inc.
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2023-11-
|
|
11
|
+
date: 2023-11-08 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: msgpack
|
|
@@ -890,7 +890,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
890
890
|
- !ruby/object:Gem::Version
|
|
891
891
|
version: 2.0.0
|
|
892
892
|
requirements: []
|
|
893
|
-
rubygems_version: 3.4.
|
|
893
|
+
rubygems_version: 3.4.10
|
|
894
894
|
signing_key:
|
|
895
895
|
specification_version: 4
|
|
896
896
|
summary: Datadog tracing code for your Ruby applications
|