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
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
47 changes: 46 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,35 @@

## [Unreleased]

## [2.11.0] - 2025-02-24

### Added

* Tracing: Support `graphql` multiple query errors report via Span Events ([#4177][])
* Profiling: Enable GVL profiling by default on Ruby 3.2+ ([#4406][])
* Profiling: Support correlating profiling with OTel API 1.5+ ([#4425][])
* AppSec: Add detection of Server-Side Request Forgery attacks for `excon` ([#4399][])
* AppSec: Add detection of Server-Side Request Forgery attacks for `faraday` ([#4391][])
* AppSec: Deprecate `appsec.track_user_events` configuration setting in favor of `appsec.auto_user_instrumentation` ([#4352][])
* Dynamic Instrumentation: Add optional trace logging ([#4283][])

### Changed

* Increase default timeout for unix domain socket to 30 seconds ([#4411][])
* Upgrade `libdatadog` to `16.0.1` ([#4353][])
* Dynamic Instrumentation: Improve path matching with prefixes of probe paths ([#4346][])
* Dynamic Instrumentation: Improve event reporting with combing status and snapshot events ([#4360][])

### Fixed

* Tracing: Fix `rack` to continue trace if only distributed trace is present ([#4398][])
* AppSec: Fix a memory leak issue for RASP ([#4422][])
* Dynamic Instrumentation: Fix event submission on forked servers ([#4363][])

### Removed

* Tracing: Remove peer services by default ([#3846][])

## [2.10.0] - 2025-02-04

### Added
Expand Down Expand Up @@ -3097,7 +3126,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.10.0...master
[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.11.0...master
[2.11.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.10.0...v2.11.0
[2.10.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.9.0...v2.10.0
[2.9.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.8.0...v2.9.0
[2.8.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.7.1...v2.8.0
Expand Down Expand Up @@ -4525,6 +4555,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
[#3837]: https://github.com/DataDog/dd-trace-rb/issues/3837
[#3839]: https://github.com/DataDog/dd-trace-rb/issues/3839
[#3841]: https://github.com/DataDog/dd-trace-rb/issues/3841
[#3846]: https://github.com/DataDog/dd-trace-rb/issues/3846
[#3849]: https://github.com/DataDog/dd-trace-rb/issues/3849
[#3852]: https://github.com/DataDog/dd-trace-rb/issues/3852
[#3857]: https://github.com/DataDog/dd-trace-rb/issues/3857
Expand Down Expand Up @@ -4558,6 +4589,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
[#4161]: https://github.com/DataDog/dd-trace-rb/issues/4161
[#4164]: https://github.com/DataDog/dd-trace-rb/issues/4164
[#4167]: https://github.com/DataDog/dd-trace-rb/issues/4167
[#4177]: https://github.com/DataDog/dd-trace-rb/issues/4177
[#4178]: https://github.com/DataDog/dd-trace-rb/issues/4178
[#4195]: https://github.com/DataDog/dd-trace-rb/issues/4195
[#4196]: https://github.com/DataDog/dd-trace-rb/issues/4196
Expand All @@ -4572,6 +4604,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
[#4257]: https://github.com/DataDog/dd-trace-rb/issues/4257
[#4266]: https://github.com/DataDog/dd-trace-rb/issues/4266
[#4272]: https://github.com/DataDog/dd-trace-rb/issues/4272
[#4283]: https://github.com/DataDog/dd-trace-rb/issues/4283
[#4285]: https://github.com/DataDog/dd-trace-rb/issues/4285
[#4288]: https://github.com/DataDog/dd-trace-rb/issues/4288
[#4292]: https://github.com/DataDog/dd-trace-rb/issues/4292
Expand All @@ -4580,6 +4613,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
[#4311]: https://github.com/DataDog/dd-trace-rb/issues/4311
[#4321]: https://github.com/DataDog/dd-trace-rb/issues/4321
[#4323]: https://github.com/DataDog/dd-trace-rb/issues/4323
[#4346]: https://github.com/DataDog/dd-trace-rb/issues/4346
[#4352]: https://github.com/DataDog/dd-trace-rb/issues/4352
[#4353]: https://github.com/DataDog/dd-trace-rb/issues/4353
[#4360]: https://github.com/DataDog/dd-trace-rb/issues/4360
[#4363]: https://github.com/DataDog/dd-trace-rb/issues/4363
[#4391]: https://github.com/DataDog/dd-trace-rb/issues/4391
[#4398]: https://github.com/DataDog/dd-trace-rb/issues/4398
[#4399]: https://github.com/DataDog/dd-trace-rb/issues/4399
[#4406]: https://github.com/DataDog/dd-trace-rb/issues/4406
[#4411]: https://github.com/DataDog/dd-trace-rb/issues/4411
[#4422]: https://github.com/DataDog/dd-trace-rb/issues/4422
[#4425]: https://github.com/DataDog/dd-trace-rb/issues/4425
[@AdrianLC]: https://github.com/AdrianLC
[@Azure7111]: https://github.com/Azure7111
[@BabyGroot]: https://github.com/BabyGroot
Expand Down
2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_activesupport.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_aws.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_contrib.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_contrib_old.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_core_old.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_dalli_2.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_dalli_latest.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_elasticsearch_7.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_elasticsearch_latest.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_excon_latest.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_faraday_latest.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_faraday_min.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_graphql_2.0.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_http.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_mongo_latest.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_mongo_min.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_opensearch_2.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_opensearch_latest.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rack_1.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rack_2.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rack_latest.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails5_mysql2.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails5_postgres.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails5_postgres_redis.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails5_postgres_sidekiq.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails5_semantic_logger.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails61_mysql2.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails61_postgres.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails61_postgres_redis.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails61_postgres_sidekiq.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails61_semantic_logger.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails6_mysql2.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion gemfiles/jruby_9.2_rails6_postgres.gemfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading