datadog 2.39.0 → 2.41.0

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.
Files changed (158) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +97 -44
  3. data/ext/datadog_profiling_native_extension/collectors_stack.c +219 -148
  4. data/ext/datadog_profiling_native_extension/collectors_stack.h +16 -2
  5. data/ext/datadog_profiling_native_extension/collectors_thread_context.c +12 -7
  6. data/ext/datadog_profiling_native_extension/crashtracking_runtime_stacks.c +5 -4
  7. data/ext/datadog_profiling_native_extension/datadog_ruby_common.c +19 -11
  8. data/ext/datadog_profiling_native_extension/datadog_ruby_common.h +7 -0
  9. data/ext/datadog_profiling_native_extension/extconf.rb +12 -7
  10. data/ext/datadog_profiling_native_extension/native_extension_helpers.rb +3 -3
  11. data/ext/datadog_profiling_native_extension/private_vm_api_access.c +284 -76
  12. data/ext/datadog_profiling_native_extension/private_vm_api_access.h +16 -10
  13. data/ext/libdatadog_api/datadog_ruby_common.c +19 -11
  14. data/ext/libdatadog_api/datadog_ruby_common.h +7 -0
  15. data/ext/libdatadog_api/init.c +4 -0
  16. data/ext/libdatadog_api/trace_exporter.c +1312 -0
  17. data/ext/libdatadog_api/trace_exporter.h +5 -0
  18. data/ext/libdatadog_extconf_helpers.rb +1 -1
  19. data/lib/datadog/ai_guard/api_client.rb +1 -1
  20. data/lib/datadog/ai_guard/evaluation/request.rb +8 -8
  21. data/lib/datadog/ai_guard/evaluation.rb +11 -3
  22. data/lib/datadog/ai_guard/ext.rb +3 -1
  23. data/lib/datadog/appsec/actions_handler/serializable_backtrace.rb +21 -42
  24. data/lib/datadog/appsec/api_security/endpoint_collection/grape_route_serializer.rb +1 -1
  25. data/lib/datadog/appsec/api_security/endpoint_collection/rails_route_serializer.rb +1 -1
  26. data/lib/datadog/appsec/api_security/endpoint_collection/sinatra_route_serializer.rb +1 -1
  27. data/lib/datadog/appsec/configuration.rb +11 -2
  28. data/lib/datadog/appsec/context.rb +1 -1
  29. data/lib/datadog/appsec/contrib/active_record/instrumentation.rb +1 -1
  30. data/lib/datadog/appsec/contrib/aws_lambda/waf_addresses.rb +2 -2
  31. data/lib/datadog/appsec/contrib/devise/configuration.rb +1 -1
  32. data/lib/datadog/appsec/contrib/devise/patcher.rb +1 -1
  33. data/lib/datadog/appsec/contrib/excon/ssrf_detection_middleware.rb +2 -2
  34. data/lib/datadog/appsec/contrib/faraday/ssrf_detection_middleware.rb +2 -2
  35. data/lib/datadog/appsec/contrib/graphql/gateway/watcher.rb +1 -1
  36. data/lib/datadog/appsec/contrib/rack/ext.rb +2 -2
  37. data/lib/datadog/appsec/contrib/rack/gateway/watcher.rb +2 -2
  38. data/lib/datadog/appsec/contrib/rack/patcher.rb +1 -1
  39. data/lib/datadog/appsec/contrib/rack/request_body_middleware.rb +6 -3
  40. data/lib/datadog/appsec/contrib/rails/gateway/watcher.rb +2 -2
  41. data/lib/datadog/appsec/contrib/rails/request_middleware.rb +2 -1
  42. data/lib/datadog/appsec/contrib/rest_client/request_ssrf_detection_patch.rb +2 -2
  43. data/lib/datadog/appsec/contrib/sinatra/gateway/watcher.rb +2 -2
  44. data/lib/datadog/appsec/contrib/sinatra/request_middleware.rb +2 -1
  45. data/lib/datadog/appsec/processor/rule_loader.rb +12 -12
  46. data/lib/datadog/appsec/response.rb +1 -1
  47. data/lib/datadog/appsec/route_normalizer/route_pattern.rb +3 -3
  48. data/lib/datadog/appsec/security_engine/engine.rb +3 -3
  49. data/lib/datadog/core/configuration/components.rb +2 -2
  50. data/lib/datadog/core/configuration/option_definition.rb +1 -1
  51. data/lib/datadog/core/configuration/options.rb +1 -1
  52. data/lib/datadog/core/configuration/settings.rb +33 -41
  53. data/lib/datadog/core/configuration/supported_configurations.rb +3 -0
  54. data/lib/datadog/core/diagnostics/environment_logger.rb +36 -1
  55. data/lib/datadog/core/environment/gc.rb +1 -1
  56. data/lib/datadog/core/environment/vm_cache.rb +1 -1
  57. data/lib/datadog/core/environment/yjit.rb +2 -2
  58. data/lib/datadog/core/metrics/helpers.rb +1 -1
  59. data/lib/datadog/core/metrics/options.rb +2 -2
  60. data/lib/datadog/core/process_discovery.rb +1 -1
  61. data/lib/datadog/core/remote/client.rb +1 -1
  62. data/lib/datadog/core/remote/configuration/repository.rb +2 -2
  63. data/lib/datadog/core/telemetry/configuration_value.rb +38 -0
  64. data/lib/datadog/core/telemetry/event/app_client_configuration_change.rb +3 -1
  65. data/lib/datadog/core/telemetry/event/app_endpoints_loaded.rb +1 -1
  66. data/lib/datadog/core/telemetry/event/app_started.rb +5 -24
  67. data/lib/datadog/core/telemetry/event/generate_metrics.rb +1 -1
  68. data/lib/datadog/core/telemetry/event/log.rb +2 -2
  69. data/lib/datadog/core/telemetry/event/synth_app_client_configuration_change.rb +1 -1
  70. data/lib/datadog/core/telemetry/metric.rb +2 -2
  71. data/lib/datadog/core/telemetry/request.rb +2 -2
  72. data/lib/datadog/core/transport/http.rb +1 -1
  73. data/lib/datadog/core/transport/transport.rb +1 -1
  74. data/lib/datadog/core/utils/at_fork_monkey_patch.rb +170 -18
  75. data/lib/datadog/core/utils/sequence.rb +3 -6
  76. data/lib/datadog/core/utils/time.rb +16 -54
  77. data/lib/datadog/data_streams/processor.rb +14 -14
  78. data/lib/datadog/di/el/compiler.rb +88 -12
  79. data/lib/datadog/di/el/evaluator.rb +82 -2
  80. data/lib/datadog/di/el/expression.rb +13 -2
  81. data/lib/datadog/di/instrumenter.rb +5 -4
  82. data/lib/datadog/di/probe_builder.rb +7 -6
  83. data/lib/datadog/di/probe_notification_builder.rb +2 -2
  84. data/lib/datadog/di/serializer.rb +29 -4
  85. data/lib/datadog/error_tracking/component.rb +1 -1
  86. data/lib/datadog/kit/appsec/events/v2.rb +2 -2
  87. data/lib/datadog/open_feature/exposures/batch_builder.rb +1 -1
  88. data/lib/datadog/open_feature/exposures/event.rb +5 -5
  89. data/lib/datadog/profiling/collectors/info.rb +1 -1
  90. data/lib/datadog/profiling/collectors/thread_context.rb +6 -13
  91. data/lib/datadog/profiling/component.rb +1 -0
  92. data/lib/datadog/profiling/tasks/exec.rb +1 -1
  93. data/lib/datadog/profiling.rb +4 -0
  94. data/lib/datadog/symbol_database/extractor.rb +6 -6
  95. data/lib/datadog/tracing/component.rb +21 -0
  96. data/lib/datadog/tracing/configuration/dynamic/option.rb +4 -0
  97. data/lib/datadog/tracing/configuration/dynamic.rb +5 -3
  98. data/lib/datadog/tracing/configuration/ext.rb +1 -0
  99. data/lib/datadog/tracing/configuration/settings.rb +16 -0
  100. data/lib/datadog/tracing/contrib/action_cable/events.rb +1 -1
  101. data/lib/datadog/tracing/contrib/action_mailer/events.rb +1 -1
  102. data/lib/datadog/tracing/contrib/action_pack/action_controller/instrumentation.rb +2 -2
  103. data/lib/datadog/tracing/contrib/action_view/events.rb +1 -1
  104. data/lib/datadog/tracing/contrib/active_model_serializers/events.rb +1 -1
  105. data/lib/datadog/tracing/contrib/active_record/configuration/resolver.rb +1 -1
  106. data/lib/datadog/tracing/contrib/active_record/events.rb +1 -1
  107. data/lib/datadog/tracing/contrib/active_support/cache/events/cache.rb +2 -2
  108. data/lib/datadog/tracing/contrib/aws/ext.rb +1 -1
  109. data/lib/datadog/tracing/contrib/aws/services.rb +1 -1
  110. data/lib/datadog/tracing/contrib/elasticsearch/quantize.rb +1 -1
  111. data/lib/datadog/tracing/contrib/ext.rb +3 -3
  112. data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/client.rb +1 -1
  113. data/lib/datadog/tracing/contrib/grpc/datadog_interceptor/server.rb +1 -1
  114. data/lib/datadog/tracing/contrib/grpc/distributed/propagation.rb +1 -1
  115. data/lib/datadog/tracing/contrib/hanami/router_tracing.rb +2 -1
  116. data/lib/datadog/tracing/contrib/kafka/events/connection/request.rb +4 -0
  117. data/lib/datadog/tracing/contrib/kafka/events/produce_operation/send_messages.rb +7 -2
  118. data/lib/datadog/tracing/contrib/kafka/events/producer/deliver_messages.rb +7 -2
  119. data/lib/datadog/tracing/contrib/kafka/events.rb +1 -1
  120. data/lib/datadog/tracing/contrib/karafka/distributed/propagation.rb +1 -1
  121. data/lib/datadog/tracing/contrib/mongodb/parsers.rb +1 -1
  122. data/lib/datadog/tracing/contrib/opensearch/ext.rb +1 -1
  123. data/lib/datadog/tracing/contrib/opensearch/quantize.rb +1 -1
  124. data/lib/datadog/tracing/contrib/patchable.rb +1 -1
  125. data/lib/datadog/tracing/contrib/patcher.rb +1 -1
  126. data/lib/datadog/tracing/contrib/que/tracer.rb +1 -1
  127. data/lib/datadog/tracing/contrib/racecar/events.rb +1 -1
  128. data/lib/datadog/tracing/contrib/rack/configuration/settings.rb +1 -1
  129. data/lib/datadog/tracing/contrib/rack/header_tagging.rb +1 -1
  130. data/lib/datadog/tracing/contrib/rack/patcher.rb +1 -1
  131. data/lib/datadog/tracing/contrib/rack/trace_proxy_middleware.rb +1 -1
  132. data/lib/datadog/tracing/contrib/redis/configuration/resolver.rb +1 -1
  133. data/lib/datadog/tracing/contrib/redis/quantize.rb +36 -2
  134. data/lib/datadog/tracing/contrib/redis/trace_middleware.rb +9 -3
  135. data/lib/datadog/tracing/contrib/sequel/database.rb +1 -5
  136. data/lib/datadog/tracing/contrib/sequel/utils.rb +1 -1
  137. data/lib/datadog/tracing/contrib/sidekiq/distributed/propagation.rb +1 -1
  138. data/lib/datadog/tracing/contrib/sinatra/configuration/settings.rb +1 -1
  139. data/lib/datadog/tracing/contrib/sneakers/tracer.rb +1 -1
  140. data/lib/datadog/tracing/contrib/utils/quantization/hash_formatter.rb +1 -1
  141. data/lib/datadog/tracing/contrib/waterdrop/distributed/propagation.rb +1 -1
  142. data/lib/datadog/tracing/correlation.rb +2 -2
  143. data/lib/datadog/tracing/diagnostics/environment_logger.rb +2 -2
  144. data/lib/datadog/tracing/distributed/baggage.rb +1 -2
  145. data/lib/datadog/tracing/distributed/propagation_policy.rb +5 -0
  146. data/lib/datadog/tracing/metadata/tagging.rb +1 -1
  147. data/lib/datadog/tracing/remote.rb +2 -2
  148. data/lib/datadog/tracing/span.rb +1 -1
  149. data/lib/datadog/tracing/span_operation.rb +1 -1
  150. data/lib/datadog/tracing/sync_writer.rb +8 -3
  151. data/lib/datadog/tracing/tracer.rb +8 -0
  152. data/lib/datadog/tracing/transport/io/traces.rb +1 -1
  153. data/lib/datadog/tracing/transport/native/response.rb +71 -0
  154. data/lib/datadog/tracing/transport/native.rb +387 -0
  155. data/lib/datadog/tracing/transport/trace_formatter.rb +1 -1
  156. data/lib/datadog/tracing/writer.rb +17 -4
  157. data/lib/datadog/version.rb +1 -1
  158. metadata +12 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 738a49f1b7d7068adaa2e6237046870eb9868fe5fcbebdc8f136d2c99f880b00
4
- data.tar.gz: 19c8e8c4c05ad009beceb84afc161c7012c75f6dc26987ae6a599d33d7212a98
3
+ metadata.gz: c9770ef0d02b2ecf56734c823b89ea642beb8512dae612904f0bc3d050852b44
4
+ data.tar.gz: b1e359c8eb8d26528b21c963c775b7cf8e5e227ca2cf7b88b322337d32c7283c
5
5
  SHA512:
6
- metadata.gz: c48d6c1506eeb45ed203a7aaab7877370b35a0d0902935dcb9f5eaeb69ac40bc03e1bd55e78c414b89a71d6ea50c4e30191d1dff29160ba79f27c91b116cecc4
7
- data.tar.gz: 93037c1ea2179bac9db492a8410520fc96ff3184ca005df577960d452f783fb7a6ed2397ccfbb76dff3dc0d8d37bdd954ec8c1e2e44fbdaa197e4c54eb975971
6
+ metadata.gz: 21335b21c2d0be965d3f3c972efab822767ddd6f28e3a1263497335300cf7a34b3fe1872d9037c1e40af909a897296e3946fac7ecd7b8e7b92c21c1ecdfc7a77
7
+ data.tar.gz: a2ee7baf6f4e6e45f6116629d09806db7d0bd171bb5aaa36f4cf65e2f7c53038be18e04b84b25f1a26bd87031ea223a8e6ced8f91cceb62f8a292bfd4fd76875
data/CHANGELOG.md CHANGED
@@ -2,35 +2,72 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [2.41.0] - 2026-08-13
6
+
7
+ ### Added
8
+
9
+ * Tracing: Integrations: Add support for `redis-rb` 6.0/RESP3. ([#6142][])
10
+ * Tracing: Native trace export now supports structured span metadata. ([#6130][])
11
+
12
+ ### Changed
13
+
14
+ * AppSec: Native trace export now encodes supported structured span metadata values without Ruby MessagePack encoding. ([#6132][])
15
+ * Tracing: Native trace export now writes structured span metadata directly through libdatadog. ([#6133][])
16
+
17
+ ### Fixed
18
+
19
+ * Profiling: Fix a rare crash (`SIGSEGV`) in the profiler that could occur when sampling a thread during `Thread.new`. ([#6173][])
20
+ * Profiling: Fix possible crash in `sample_thread()` when `rb_id2str()` returns `Qfalse`. ([#6138][])
21
+ * Tracing: Prevent runtime configuration telemetry from being rejected when header tags or sampling rules are updated remotely. ([#6126][])
22
+
23
+ ## [2.40.0] - 2026-08-04
24
+
25
+ ### Added
26
+
27
+ * Profiling: Add experimental profiling setting to show class/module names in stack frames ([#6024][])
28
+ * Tracing: Add an experimental native (`libdatadog`-backed) trace transport, selectable via `tracing.native_transport` ([#5971][])
29
+
30
+ ### Changed
31
+
32
+ * Core: Deprecate `time_now_provider` setting for removal; it no longer does anything. Please remove it from your `Datadog.configure block`. The datadog gem always uses the real non-mocked time, even when the timecop gem monkey-patches `Time` ([#6010][])
33
+
34
+ ### Fixed
35
+
36
+ * AppSec: Fix standalone billing issues for partially flushed traces ([#6116][])
37
+ * Dynamic Instrumentation: Limit dynamic instrumentation regular expression evaluation time to 500ms ([#5908][])
38
+ * Profiling: Fix missing native filename for static Ruby binaries ([#6097][])
39
+ * Profiling: Fix crash in `rb_iseq_path()` caused by incorrect GC marking ([#6024][])
40
+ * Tracing: Fix missing or zero Kafka producer and connection span tags like `kafka.message_count` and `kafka.request_size` in the `ruby-kafka` integration. ([#6104][])
41
+
5
42
  ## [2.39.0] - 2026-07-22
6
43
 
7
- ### Added
8
-
9
- * Tracing: Integrations: Add database name and host to Sequel spans and infer `peer.service` so datastore dependencies appear in the service map. ([#6072][])
10
-
11
- ### Fixed
12
-
13
- * AppSec: Fix error in `devise` contrib for non-standard Warden session serialization. ([#6064][])
14
- * Dynamic Instrumentation: Fix dynamic instrumentation line probes failing to install when dynamic instrumentation is enabled remotely after application startup. ([#6050][])
15
- * Profiling: Fix crash when trying to sample during GC compaction ([#6056][])
44
+ ### Added
45
+
46
+ * Tracing: Integrations: Add database name and host to Sequel spans and infer `peer.service` so datastore dependencies appear in the service map. ([#6072][])
47
+
48
+ ### Fixed
49
+
50
+ * AppSec: Fix error in `devise` contrib for non-standard Warden session serialization. ([#6064][])
51
+ * Dynamic Instrumentation: Fix dynamic instrumentation line probes failing to install when dynamic instrumentation is enabled remotely after application startup. ([#6050][])
52
+ * Profiling: Fix crash when trying to sample during GC compaction ([#6056][])
16
53
  * Tracing: Integrations: Fix an `ArgumentError` (and the resulting `Kafka::BufferOverflow`) raised by the Kafka producer integration on Ruby 2.5 and 2.6. ([#6060][])
17
54
 
18
55
  ## [2.38.0] - 2026-07-16
19
56
 
20
- ### Added
21
-
22
- * Dynamic Instrumentation: Log probes now support capture expressions as an alternative to capturing the full local/argument scope ([#5845][])
23
- * SSI: Add support for Ruby 4.0 runtime ([#5981][])
24
- * SSI: Add support for Bundler 4.0 and RubyGems 4.0 ([#5981][])
25
-
26
- ### Fixed
27
-
28
- * AppSec: Fix Rack-based and Rails request body analysis when body parsing fails ([#5993][])
29
- * Profiling: Add workaround for crash when collecting frame information ([#6014][])
30
- * Profiling: Fix left-over state impacting samples when profiler gets stopped and started again ([#5960][])
31
- * Profiling: Fix Ruby 4.0.6 support by bumping minimum version of `datadog-ruby_core_source` to 3.5.3 ([#6047][])
32
- * Profiling: Disable live heap size profiling on Ruby 4.0 due to incompatibility ([#6022][])
33
- * Profiling: Disallow heap profiling on Ruby 4.1+ ([#6023][])
57
+ ### Added
58
+
59
+ * Dynamic Instrumentation: Log probes now support capture expressions as an alternative to capturing the full local/argument scope ([#5845][])
60
+ * SSI: Add support for Ruby 4.0 runtime ([#5981][])
61
+ * SSI: Add support for Bundler 4.0 and RubyGems 4.0 ([#5981][])
62
+
63
+ ### Fixed
64
+
65
+ * AppSec: Fix Rack-based and Rails request body analysis when body parsing fails ([#5993][])
66
+ * Profiling: Add workaround for crash when collecting frame information ([#6014][])
67
+ * Profiling: Fix left-over state impacting samples when profiler gets stopped and started again ([#5960][])
68
+ * Profiling: Fix Ruby 4.0.6 support by bumping minimum version of `datadog-ruby_core_source` to 3.5.3 ([#6047][])
69
+ * Profiling: Disable live heap size profiling on Ruby 4.0 due to incompatibility ([#6022][])
70
+ * Profiling: Disallow heap profiling on Ruby 4.1+ ([#6023][])
34
71
  * Tracing: Fix `pg` instrumentation which raised `ArgumentError` when calling `exec_params`, `exec_prepared` without a `params` argument, or their `async_`/`sync_` variants ([#6020][])
35
72
 
36
73
  ## [2.37.0] - 2026-07-06
@@ -62,26 +99,26 @@
62
99
 
63
100
  ## [2.36.0] - 2026-06-24
64
101
 
65
- ### Added
66
-
67
- * Tracing: Add `DD_TRACE_PROPAGATION_BEHAVIOR_EXTRACT` to control trace extraction behavior with `continue`, `restart`, and `ignore` modes ([#5844][])
68
- * AppSec: Add `DD_APPSEC_BODY_PARSING_SIZE_LIMIT` to control processing of request and response body size; set to 0 to disable ([#5877][])
69
- * AppSec: Detect attacks from inline fragments in GraphQL queries ([#5916][])
70
- * Dynamic Instrumentation: Show lazily loaded classes in UI ([#5697][])
71
-
72
- ### Changed
73
-
74
- * Dynamic Instrumentation: Reduce peak memory usage during Symbol Database extraction ([#5883][])
75
- * Profiling: Reduce profiler overhead by up to 50% by skipping redundant samples for threads without the GVL ([#5777][])
76
- * Profiling: Remove overhead when cleaning up dead threads ([#5816][])
77
-
78
- ### Fixed
79
-
80
- * Tracing: Workaround Ruby VM bug causing segmentation faults inside CachingResolver ([#5719][], [#5890][])
81
- * Dynamic Instrumentation: Prevent uploading stale class definitions for apps using `remove_const`-then-redefine patterns ([#5872][])
82
- * Profiling: Fix GC profiling being incorrectly disabled on Ruby 3.2.10 and 3.2.11 ([#5894][])
83
- * Profiling: Fix over-counting of the first allocation sample at profiler startup ([#5881][])
84
- * Profiling: Fix rare profiler crash during shutdown in heap profiling cleanup ([#5920][])
102
+ ### Added
103
+
104
+ * Tracing: Add `DD_TRACE_PROPAGATION_BEHAVIOR_EXTRACT` to control trace extraction behavior with `continue`, `restart`, and `ignore` modes ([#5844][])
105
+ * AppSec: Add `DD_APPSEC_BODY_PARSING_SIZE_LIMIT` to control processing of request and response body size; set to 0 to disable ([#5877][])
106
+ * AppSec: Detect attacks from inline fragments in GraphQL queries ([#5916][])
107
+ * Dynamic Instrumentation: Show lazily loaded classes in UI ([#5697][])
108
+
109
+ ### Changed
110
+
111
+ * Dynamic Instrumentation: Reduce peak memory usage during Symbol Database extraction ([#5883][])
112
+ * Profiling: Reduce profiler overhead by up to 50% by skipping redundant samples for threads without the GVL ([#5777][])
113
+ * Profiling: Remove overhead when cleaning up dead threads ([#5816][])
114
+
115
+ ### Fixed
116
+
117
+ * Tracing: Workaround Ruby VM bug causing segmentation faults inside CachingResolver ([#5719][], [#5890][])
118
+ * Dynamic Instrumentation: Prevent uploading stale class definitions for apps using `remove_const`-then-redefine patterns ([#5872][])
119
+ * Profiling: Fix GC profiling being incorrectly disabled on Ruby 3.2.10 and 3.2.11 ([#5894][])
120
+ * Profiling: Fix over-counting of the first allocation sample at profiler startup ([#5881][])
121
+ * Profiling: Fix rare profiler crash during shutdown in heap profiling cleanup ([#5920][])
85
122
  * Core: Fix exception message formatting from native extensions ([#5857][])
86
123
 
87
124
  ## [2.35.0] - 2026-06-03
@@ -3716,7 +3753,9 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
3716
3753
  Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
3717
3754
 
3718
3755
 
3719
- [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.39.0...master
3756
+ [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.41.0...master
3757
+ [2.41.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.40.0...v2.41.0
3758
+ [2.40.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.39.0...v2.40.0
3720
3759
  [2.39.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.38.0...v2.39.0
3721
3760
  [2.38.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.37.0...v2.38.0
3722
3761
  [2.37.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.36.0...v2.37.0
@@ -5496,6 +5535,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
5496
5535
  [#5890]: https://github.com/DataDog/dd-trace-rb/issues/5890
5497
5536
  [#5894]: https://github.com/DataDog/dd-trace-rb/issues/5894
5498
5537
  [#5907]: https://github.com/DataDog/dd-trace-rb/issues/5907
5538
+ [#5908]: https://github.com/DataDog/dd-trace-rb/issues/5908
5499
5539
  [#5911]: https://github.com/DataDog/dd-trace-rb/issues/5911
5500
5540
  [#5916]: https://github.com/DataDog/dd-trace-rb/issues/5916
5501
5541
  [#5920]: https://github.com/DataDog/dd-trace-rb/issues/5920
@@ -5506,6 +5546,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
5506
5546
  [#5955]: https://github.com/DataDog/dd-trace-rb/issues/5955
5507
5547
  [#5960]: https://github.com/DataDog/dd-trace-rb/issues/5960
5508
5548
  [#5970]: https://github.com/DataDog/dd-trace-rb/issues/5970
5549
+ [#5971]: https://github.com/DataDog/dd-trace-rb/issues/5971
5509
5550
  [#5973]: https://github.com/DataDog/dd-trace-rb/issues/5973
5510
5551
  [#5975]: https://github.com/DataDog/dd-trace-rb/issues/5975
5511
5552
  [#5981]: https://github.com/DataDog/dd-trace-rb/issues/5981
@@ -5513,16 +5554,28 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
5513
5554
  [#5990]: https://github.com/DataDog/dd-trace-rb/issues/5990
5514
5555
  [#5991]: https://github.com/DataDog/dd-trace-rb/issues/5991
5515
5556
  [#5993]: https://github.com/DataDog/dd-trace-rb/issues/5993
5557
+ [#6010]: https://github.com/DataDog/dd-trace-rb/issues/6010
5516
5558
  [#6014]: https://github.com/DataDog/dd-trace-rb/issues/6014
5517
5559
  [#6020]: https://github.com/DataDog/dd-trace-rb/issues/6020
5518
5560
  [#6022]: https://github.com/DataDog/dd-trace-rb/issues/6022
5519
5561
  [#6023]: https://github.com/DataDog/dd-trace-rb/issues/6023
5562
+ [#6024]: https://github.com/DataDog/dd-trace-rb/issues/6024
5520
5563
  [#6047]: https://github.com/DataDog/dd-trace-rb/issues/6047
5521
5564
  [#6050]: https://github.com/DataDog/dd-trace-rb/issues/6050
5522
5565
  [#6056]: https://github.com/DataDog/dd-trace-rb/issues/6056
5523
5566
  [#6060]: https://github.com/DataDog/dd-trace-rb/issues/6060
5524
5567
  [#6064]: https://github.com/DataDog/dd-trace-rb/issues/6064
5525
5568
  [#6072]: https://github.com/DataDog/dd-trace-rb/issues/6072
5569
+ [#6097]: https://github.com/DataDog/dd-trace-rb/issues/6097
5570
+ [#6104]: https://github.com/DataDog/dd-trace-rb/issues/6104
5571
+ [#6116]: https://github.com/DataDog/dd-trace-rb/issues/6116
5572
+ [#6126]: https://github.com/DataDog/dd-trace-rb/issues/6126
5573
+ [#6130]: https://github.com/DataDog/dd-trace-rb/issues/6130
5574
+ [#6132]: https://github.com/DataDog/dd-trace-rb/issues/6132
5575
+ [#6133]: https://github.com/DataDog/dd-trace-rb/issues/6133
5576
+ [#6138]: https://github.com/DataDog/dd-trace-rb/issues/6138
5577
+ [#6142]: https://github.com/DataDog/dd-trace-rb/issues/6142
5578
+ [#6173]: https://github.com/DataDog/dd-trace-rb/issues/6173
5526
5579
  [@AdrianLC]: https://github.com/AdrianLC
5527
5580
  [@Azure7111]: https://github.com/Azure7111
5528
5581
  [@BabyGroot]: https://github.com/BabyGroot