Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/system-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
test:
needs:
- build
uses: DataDog/system-tests/.github/workflows/system-tests.yml@fa356da1e3f2bfcf3172a4cb151fab9a8607e4a1 # Automated: This reference is automatically updated.
uses: DataDog/system-tests/.github/workflows/system-tests.yml@8f9d899cf90409bb48a6ace0955658349cf933b2 # Automated: This reference is automatically updated.
secrets:
TEST_OPTIMIZATION_API_KEY: ${{ secrets.DD_API_KEY }} # key used to pushed test results to test optim
DD_API_KEY: ${{ secrets.DD_API_KEY }} # key used in tests runs
Expand All @@ -91,7 +91,7 @@ jobs:
desired_execution_time: 300 # 5 minutes
scenarios_groups: tracer_release
skip_empty_scenarios: true
ref: fa356da1e3f2bfcf3172a4cb151fab9a8607e4a1 # Automated: This reference is automatically updated.
ref: 8f9d899cf90409bb48a6ace0955658349cf933b2 # Automated: This reference is automatically updated.
force_execute: ${{ needs.build.outputs.forced_tests }}
parametric_job_count: 8
push_to_test_optimization: ${{ github.event_name != 'pull_request' || github.event.pull_request.head.repo.full_name == github.repository }}
Expand Down
2 changes: 1 addition & 1 deletion .gitlab-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ requirements_json_test:

configure_system_tests:
variables:
SYSTEM_TESTS_REF: fa356da1e3f2bfcf3172a4cb151fab9a8607e4a1 # Automated: This reference is automatically updated.
SYSTEM_TESTS_REF: 8f9d899cf90409bb48a6ace0955658349cf933b2 # Automated: This reference is automatically updated.
SYSTEM_TESTS_SCENARIOS_GROUPS: "simple_onboarding,simple_onboarding_appsec,lib-injection,docker_ssi"
SYSTEM_TEST_BUILD_ATTEMPTS: 3

Expand Down
46 changes: 44 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,31 @@

## [Unreleased]

## [2.30.0] - 2026-03-19

### Added

* Core: Enable `libdatadog`-based features and tests on macOS ([#5351][])
* Tracing: Add `_dd.p.ksr` propagated tag to transmit Knuth sampling rate for backend resampling ([#5436][])
* Tracing: Integrations: Add `DD_TRACE_<INTEGRATION>_DISTRIBUTED_TRACING` environment variables to control distributed tracing per integration ([#5396][])
* Profiling: Add profiler setting `experimental_use_system_dns` to use system DNS resolver (defaults to true) ([#5425][], [#5449][])
* Profiling: Allow lowering CPU profiling sampling interval with `experimental_cpu_sampling_interval_ms` setting ([#5424][])

### Changed

* Core: Enable process tags by default by setting `DD_EXPERIMENTAL_PROPAGATE_PROCESS_TAGS_ENABLED`, expanding tag collection for Tracing, Database Monitoring, Data Streams Monitoring, Profiling, Runtime Metrics, Process Discovery, Remote Configuration, Telemetry, Dynamic Instrumentation, and CrashTracking ([#5432][])
* Core: Upgrade `libdatadog` dependency to version 29.0.0 ([#5274][], [#5461][])
* Core: Remove dependency on `pkg-config` system tool for native extension builds ([#5469][])
* Profiling: Improve profiling error message when another profiler is present ([#5375][])

### Fixed

* Tracing: Integrations: Fix `endpoint_render.grape` ActiveSupport notification instrumentation for `grape` 3.x ([#5414][])
* Tracing: Integrations: Fix compatibility with `dalli` version 5.x and later ([#5435][])
* Dynamic Instrumentation: Fix JSON serialization failures when snapshots contain binary data and invalid UTF-8 strings ([#5434][])
* Dynamic Instrumentation: Show ERROR probe status when custom serializers produce non-JSON-encodable data instead of silent failures ([#5448][])
* Data Streams: Fix Data Streams Monitoring to correctly report the configured environment instead of showing `env:none` ([#5427][])

## [2.29.0] - 2026-02-20


Expand Down Expand Up @@ -3514,7 +3539,8 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1


[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.29.0...master
[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.30.0...master
[2.30.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.29.0...v2.30.0
[2.29.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.28.0...v2.29.0
[2.28.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.27.0...v2.28.0
[2.27.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.26.0...v2.27.0
Expand Down Expand Up @@ -5194,6 +5220,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
[#5247]: https://github.com/DataDog/dd-trace-rb/issues/5247
[#5254]: https://github.com/DataDog/dd-trace-rb/issues/5254
[#5273]: https://github.com/DataDog/dd-trace-rb/issues/5273
[#5274]: https://github.com/DataDog/dd-trace-rb/issues/5274
[#5278]: https://github.com/DataDog/dd-trace-rb/issues/5278
[#5283]: https://github.com/DataDog/dd-trace-rb/issues/5283
[#5294]: https://github.com/DataDog/dd-trace-rb/issues/5294
Expand All @@ -5207,9 +5234,24 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
[#5341]: https://github.com/DataDog/dd-trace-rb/issues/5341
[#5342]: https://github.com/DataDog/dd-trace-rb/issues/5342
[#5347]: https://github.com/DataDog/dd-trace-rb/issues/5347
[#5351]: https://github.com/DataDog/dd-trace-rb/issues/5351
[#5352]: https://github.com/DataDog/dd-trace-rb/issues/5352
[#5368]: https://github.com/DataDog/dd-trace-rb/issues/5368
[#5371]: https://github.com/DataDog/dd-trace-rb/issues/5371
[#5375]: https://github.com/DataDog/dd-trace-rb/issues/5375
[#5396]: https://github.com/DataDog/dd-trace-rb/issues/5396
[#5414]: https://github.com/DataDog/dd-trace-rb/issues/5414
[#5424]: https://github.com/DataDog/dd-trace-rb/issues/5424
[#5425]: https://github.com/DataDog/dd-trace-rb/issues/5425
[#5427]: https://github.com/DataDog/dd-trace-rb/issues/5427
[#5432]: https://github.com/DataDog/dd-trace-rb/issues/5432
[#5434]: https://github.com/DataDog/dd-trace-rb/issues/5434
[#5435]: https://github.com/DataDog/dd-trace-rb/issues/5435
[#5436]: https://github.com/DataDog/dd-trace-rb/issues/5436
[#5448]: https://github.com/DataDog/dd-trace-rb/issues/5448
[#5449]: https://github.com/DataDog/dd-trace-rb/issues/5449
[#5461]: https://github.com/DataDog/dd-trace-rb/issues/5461
[#5469]: https://github.com/DataDog/dd-trace-rb/issues/5469
[@AdrianLC]: https://github.com/AdrianLC
[@Azure7111]: https://github.com/Azure7111
[@BabyGroot]: https://github.com/BabyGroot
Expand Down Expand Up @@ -5364,4 +5406,4 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
[@y-yagi]: https://github.com/y-yagi
[@yujideveloper]: https://github.com/yujideveloper
[@yukimurasawa]: https://github.com/yukimurasawa
[@zachmccormick]: https://github.com/zachmccormick
[@zachmccormick]: https://github.com/zachmccormick
Loading