Skip to content

Commit c680d33

Browse files
authored
Merge pull request #4878 from DataDog/bump_to_version_2.20.0
Bump to version 2.20.0
2 parents ec15fb0 + 28211d8 commit c680d33

File tree

3 files changed

+30
-4
lines changed

3 files changed

+30
-4
lines changed

.github/workflows/system-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ jobs:
111111
TELEMETRY_METRIC_GENERATION_DISABLED
112112
needs:
113113
- build
114-
uses: DataDog/system-tests/.github/workflows/system-tests.yml@4ea4c419151062ab3c2e4131962f24f73c8f3f5d # Automated: This reference is automatically updated.
114+
uses: DataDog/system-tests/.github/workflows/system-tests.yml@1fc343b8835463376056ad83d6e1bd5dddefb777 # Automated: This reference is automatically updated.
115115
secrets: inherit # zizmor: ignore[secrets-inherit]
116116
permissions:
117117
contents: read
@@ -124,7 +124,7 @@ jobs:
124124
scenarios: ${{ matrix.scenarios }}
125125
weblogs: ${{ matrix.weblogs }}
126126
skip_empty_scenarios: true
127-
ref: 4ea4c419151062ab3c2e4131962f24f73c8f3f5d # Automated: This reference is automatically updated.
127+
ref: 1fc343b8835463376056ad83d6e1bd5dddefb777 # Automated: This reference is automatically updated.
128128
force_execute: ${{ needs.build.outputs.forced_tests }}
129129
parametric_job_count: 8
130130

.gitlab-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ requirements_json_test:
141141

142142
configure_system_tests:
143143
variables:
144-
SYSTEM_TESTS_REF: 4ea4c419151062ab3c2e4131962f24f73c8f3f5d # Automated: This reference is automatically updated.
144+
SYSTEM_TESTS_REF: 1fc343b8835463376056ad83d6e1bd5dddefb777 # Automated: This reference is automatically updated.
145145
SYSTEM_TESTS_SCENARIOS_GROUPS: "simple_onboarding,lib-injection"
146146

147147
save_versions:

CHANGELOG.md

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,24 @@
22

33
## [Unreleased]
44

5+
## [2.20.0] - 2025-09-04
6+
7+
### Added
8+
9+
* Tracing: Add capability to add [W3C Baggage](https://www.w3.org/TR/baggage/#example) headers to the local root span as span tags ([#4716][])
10+
* AppSec: Add WAF analysis of the responses with JSON body ([#4848][])
11+
* Dynamic Instrumentation: Live Debugger: Add support for specifying probes in a file via `DD_DYNAMIC_INSTRUMENTATION_PROBE_FILE` environment variable ([#4838][])
12+
13+
### Changed
14+
15+
* Core: Expand generated warning and error messages during `libdatadog` build ([#4831][])
16+
* AppSec: Rework handling of Remote Config updates for multi-threaded web servers ([#4833][])
17+
* AppSec: Update security tags for Business Logic Events and User Events SDK v1 and v2 ([#4851][])
18+
19+
### Fixed
20+
21+
* Tracing: Fix constants resolution for Rails runner ([#4863][])
22+
523
## [2.19.0] - 2025-07-24
624

725
### Added
@@ -3297,7 +3315,8 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
32973315
Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
32983316
32993317
3300-
[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.19.0...master
3318+
[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.20.0...master
3319+
[2.20.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.19.0...v2.20.0
33013320
[2.19.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.18.0...v2.19.0
33023321
[2.18.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.17.0...v2.18.0
33033322
[2.17.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.16.0...v2.17.0
@@ -4863,6 +4882,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
48634882
[#4693]: https://github.com/DataDog/dd-trace-rb/issues/4693
48644883
[#4697]: https://github.com/DataDog/dd-trace-rb/issues/4697
48654884
[#4699]: https://github.com/DataDog/dd-trace-rb/issues/4699
4885+
[#4716]: https://github.com/DataDog/dd-trace-rb/issues/4716
48664886
[#4718]: https://github.com/DataDog/dd-trace-rb/issues/4718
48674887
[#4721]: https://github.com/DataDog/dd-trace-rb/issues/4721
48684888
[#4728]: https://github.com/DataDog/dd-trace-rb/issues/4728
@@ -4884,6 +4904,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
48844904
[#4813]: https://github.com/DataDog/dd-trace-rb/issues/4813
48854905
[#4814]: https://github.com/DataDog/dd-trace-rb/issues/4814
48864906
[#4819]: https://github.com/DataDog/dd-trace-rb/issues/4819
4907+
[#4831]: https://github.com/DataDog/dd-trace-rb/issues/4831
4908+
[#4833]: https://github.com/DataDog/dd-trace-rb/issues/4833
4909+
[#4838]: https://github.com/DataDog/dd-trace-rb/issues/4838
4910+
[#4848]: https://github.com/DataDog/dd-trace-rb/issues/4848
4911+
[#4851]: https://github.com/DataDog/dd-trace-rb/issues/4851
4912+
[#4863]: https://github.com/DataDog/dd-trace-rb/issues/4863
48874913
[@AdrianLC]: https://github.com/AdrianLC
48884914
[@Azure7111]: https://github.com/Azure7111
48894915
[@BabyGroot]: https://github.com/BabyGroot

0 commit comments

Comments
 (0)