Skip to content

Commit d5accd8

Browse files
authored
Merge pull request #2821 from DataDog/bump_to_version_1.11.0
Bump to version 1.11.0
2 parents 9b9de4f + 1d99a77 commit d5accd8

File tree

303 files changed

+358
-303
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

303 files changed

+358
-303
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [1.11.0] - 2023-04-27
6+
7+
### Highlights
8+
9+
As of ddtrace 1.11.0, these features are GA and emabled by default:
10+
11+
- CPU Profiling 2.0
12+
- Remote Configuration
13+
- Telemetry
14+
15+
For more details, check the release notes.
16+
17+
### Added
18+
19+
* Add remote configuration, enabled by default ([#2674][], [#2678][], [#2686][], [#2687][], [#2688][], [#2689][], [#2696][], [#2705][], [#2731][], [#2732][], [#2733][], [#2739][], [#2756][], [#2769][], [#2771][], [#2773][], [#2789][], [#2805][], [#2794][])
20+
* AppSec: Add response headers passing to WAF ([#2701][])
21+
* Tracing: Distributed tracing for Sidekiq ([#2513][])
22+
* Tracing: Add Roda integration ([#2368][])
23+
* Profiling: Support disabling endpoint names collection in new profiler ([#2698][])
24+
* Tracing: Support Sidekiq 7 ([#2810][])
25+
* Core: Add support for Unix Domain Socket (UDS) configuration via `DD_TRACE_AGENT_URL` ([#2806][])
26+
* Core: Enable Telemetry by default ([#2762][])
27+
28+
### Changed
29+
30+
* Core: Allow `1` as true value in environment variables ([#2710][])
31+
* Profiling: Enable CPU Profiling 2.0 by default ([#2702][])
32+
* Tracing: Improve controller instrumentation and deprecate option `exception_controller` ([#2726][])
33+
* Tracing: Implement Span Attribute Schema Environment Variable ([#2727][])
34+
* Tracing: Change default `service_name` values (gated by feature flag) ([#2760][])
35+
36+
### Fixed
37+
38+
* Bug: Tracing: Fix w3c propagation special character handling ([#2720][])
39+
* Performance: Tracing: Use `+@` instead of `dup` for duplicating strings ([#2704][])
40+
* Profiling: Avoid triggering allocation sampling during sampling ([#2690][])
41+
* Integrations: Tracing: Fix Rails < 3 conditional check in Utils#railtie_supported? ([#2695][])
42+
* Profiling: Do not auto-enable new profiler when rugged gem is detected ([#2741][])
43+
* Tracing: Fix using SemanticLogger#log(severity, message, progname) ([#2748][]) ([@rqz13][])
44+
* Profiling: Improve detection of mysql2 gem incompatibilities with profiler ([#2770][])
45+
* AppSec: Remove check for `::Rack::Request.instance_methods.include?(:each_header)` at load time ([#2778][])
46+
* Tracing: Fix quadratic backtracking on invalid URI ([#2788][])
47+
* Community: Correctly set mutex ([#2757][]) ([@ixti][])
48+
49+
Read the [full changeset](https://github.com/DataDog/dd-trace-rb/compare/v1.10.1...v1.11.0.beta1) and the release [milestone](https://github.com/DataDog/dd-trace-rb/milestone/121?closed=1).
50+
551
## [1.11.0.beta1] - 2023-04-14
652

753
As of ddtrace 1.11.0.beta1, CPU Profiling 2.0 is now GA and enabled by default. For more details, check the release notes.
@@ -2356,7 +2402,8 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
23562402
23572403
Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
23582404
2359-
[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v1.11.0.beta1...master
2405+
[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v1.11.0...master
2406+
[1.11.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.10.1...v1.11.0
23602407
[1.11.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v1.10.1...v1.11.0.beta1
23612408
[1.10.1]: https://github.com/DataDog/dd-trace-rb/compare/v1.10.0...v1.10.1
23622409
[1.10.0]: https://github.com/DataDog/dd-trace-rb/compare/v1.9.0...v1.10.0
@@ -3396,13 +3443,20 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
33963443
[#2741]: https://github.com/DataDog/dd-trace-rb/issues/2741
33973444
[#2748]: https://github.com/DataDog/dd-trace-rb/issues/2748
33983445
[#2756]: https://github.com/DataDog/dd-trace-rb/issues/2756
3446+
[#2757]: https://github.com/DataDog/dd-trace-rb/issues/2757
3447+
[#2760]: https://github.com/DataDog/dd-trace-rb/issues/2760
3448+
[#2762]: https://github.com/DataDog/dd-trace-rb/issues/2762
33993449
[#2769]: https://github.com/DataDog/dd-trace-rb/issues/2769
34003450
[#2770]: https://github.com/DataDog/dd-trace-rb/issues/2770
34013451
[#2771]: https://github.com/DataDog/dd-trace-rb/issues/2771
34023452
[#2773]: https://github.com/DataDog/dd-trace-rb/issues/2773
34033453
[#2778]: https://github.com/DataDog/dd-trace-rb/issues/2778
34043454
[#2788]: https://github.com/DataDog/dd-trace-rb/issues/2788
34053455
[#2789]: https://github.com/DataDog/dd-trace-rb/issues/2789
3456+
[#2794]: https://github.com/DataDog/dd-trace-rb/issues/2794
3457+
[#2805]: https://github.com/DataDog/dd-trace-rb/issues/2805
3458+
[#2806]: https://github.com/DataDog/dd-trace-rb/issues/2806
3459+
[#2810]: https://github.com/DataDog/dd-trace-rb/issues/2810
34063460
[@AdrianLC]: https://github.com/AdrianLC
34073461
[@Azure7111]: https://github.com/Azure7111
34083462
[@BabyGroot]: https://github.com/BabyGroot
@@ -3481,6 +3535,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
34813535
[@hs-bguven]: https://github.com/hs-bguven
34823536
[@illdelph]: https://github.com/illdelph
34833537
[@ioquatix]: https://github.com/ioquatix
3538+
[@ixti]: https://github.com/ixti
34843539
[@jamiehodge]: https://github.com/jamiehodge
34853540
[@janz93]: https://github.com/janz93
34863541
[@jeffjo]: https://github.com/jeffjo

gemfiles/jruby_9.2.21.0_contrib.gemfile.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.21.0_contrib_old.gemfile.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.21.0_core_old.gemfile.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.21.0_cucumber3.gemfile.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.21.0_cucumber4.gemfile.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.21.0_cucumber5.gemfile.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.21.0_hanami_1.gemfile.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.21.0_opentelemetry.gemfile.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.21.0_rails5_mysql2.gemfile.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)