|
2 | 2 |
|
3 | 3 | ## [Unreleased] |
4 | 4 |
|
| 5 | +## [2.3.0] - 2024-08-22 |
| 6 | + |
| 7 | +### Added |
| 8 | + |
| 9 | +* Core: Support agentless telemetry ([#3779][]) |
| 10 | +* Tracing: Add support for span events ([#3776][]) |
| 11 | +* Tracing: Add tags to enable inferred service dependencies for databases ([#3789][]) |
| 12 | +* Tracing: Emit log message and instructions for incompatible Lograge setup ([#3812][], [#3839][]) |
| 13 | +* Tracing: Add `append_comment` option to append SQL comment propagation for `mysql`, `pg` and `trilogy` ([#3809][]) |
| 14 | +* AppSec: Add threat detection and protection for `graphql` ([#3769][], [#3814][]) |
| 15 | + |
| 16 | +### Changed |
| 17 | + |
| 18 | +* Core: Enable crashtracking by default ([#3826][]) |
| 19 | +* Profiling: Reduce allocation overhead ([#3805][], [#3797][]) |
| 20 | +* Profiling: Speed up stack sampling ([#3837][]) |
| 21 | +* Profiling: Upgrade to libdatadog 11 ([#3799][]) |
| 22 | +* Profiling: Disable allocation counting feature by default ([#3798][]) |
| 23 | +* Profiling: Reduce the maximum biased result for allocation samples ([#3793][]) |
| 24 | +* Tracing: Reduce noisy integration logs ([#3785][]) |
| 25 | + |
| 26 | +### Fixed |
| 27 | + |
| 28 | +* Tracing: Fix `require` issue for `graphql` ([#3813][]) |
| 29 | +* AppSec: Fix an error when parsing http headers with integer value ([#3790][]) |
| 30 | +* AppSec: Fix an error when tracking login failure without `user_id` ([#3841][]) |
| 31 | +* Fix a syntax error for Ruby < 2.4 during single step instrumentation ([#3795][]) |
| 32 | + |
5 | 33 | ## [2.2.0] - 2024-07-11 |
6 | 34 |
|
7 | 35 | ### Added |
@@ -2934,7 +2962,8 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1 |
2934 | 2962 | Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1 |
2935 | 2963 |
|
2936 | 2964 |
|
2937 | | -[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.2.0...master |
| 2965 | +[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v2.3.0...master |
| 2966 | +[2.3.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.2.0...v2.3.0 |
2938 | 2967 | [2.2.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.1.0...v2.2.0 |
2939 | 2968 | [2.1.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.0.0...v2.1.0 |
2940 | 2969 | [2.0.0]: https://github.com/DataDog/dd-trace-rb/compare/v2.0.0.rc1...v2.0.0 |
@@ -4331,9 +4360,29 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1 |
4331 | 4360 | [#3753]: https://github.com/DataDog/dd-trace-rb/issues/3753 |
4332 | 4361 | [#3757]: https://github.com/DataDog/dd-trace-rb/issues/3757 |
4333 | 4362 | [#3759]: https://github.com/DataDog/dd-trace-rb/issues/3759 |
| 4363 | +[#3769]: https://github.com/DataDog/dd-trace-rb/issues/3769 |
4334 | 4364 | [#3770]: https://github.com/DataDog/dd-trace-rb/issues/3770 |
4335 | 4365 | [#3772]: https://github.com/DataDog/dd-trace-rb/issues/3772 |
4336 | 4366 | [#3774]: https://github.com/DataDog/dd-trace-rb/issues/3774 |
| 4367 | +[#3776]: https://github.com/DataDog/dd-trace-rb/issues/3776 |
| 4368 | +[#3779]: https://github.com/DataDog/dd-trace-rb/issues/3779 |
| 4369 | +[#3785]: https://github.com/DataDog/dd-trace-rb/issues/3785 |
| 4370 | +[#3789]: https://github.com/DataDog/dd-trace-rb/issues/3789 |
| 4371 | +[#3790]: https://github.com/DataDog/dd-trace-rb/issues/3790 |
| 4372 | +[#3793]: https://github.com/DataDog/dd-trace-rb/issues/3793 |
| 4373 | +[#3795]: https://github.com/DataDog/dd-trace-rb/issues/3795 |
| 4374 | +[#3797]: https://github.com/DataDog/dd-trace-rb/issues/3797 |
| 4375 | +[#3798]: https://github.com/DataDog/dd-trace-rb/issues/3798 |
| 4376 | +[#3799]: https://github.com/DataDog/dd-trace-rb/issues/3799 |
| 4377 | +[#3805]: https://github.com/DataDog/dd-trace-rb/issues/3805 |
| 4378 | +[#3809]: https://github.com/DataDog/dd-trace-rb/issues/3809 |
| 4379 | +[#3812]: https://github.com/DataDog/dd-trace-rb/issues/3812 |
| 4380 | +[#3813]: https://github.com/DataDog/dd-trace-rb/issues/3813 |
| 4381 | +[#3814]: https://github.com/DataDog/dd-trace-rb/issues/3814 |
| 4382 | +[#3826]: https://github.com/DataDog/dd-trace-rb/issues/3826 |
| 4383 | +[#3837]: https://github.com/DataDog/dd-trace-rb/issues/3837 |
| 4384 | +[#3839]: https://github.com/DataDog/dd-trace-rb/issues/3839 |
| 4385 | +[#3841]: https://github.com/DataDog/dd-trace-rb/issues/3841 |
4337 | 4386 | [@AdrianLC]: https://github.com/AdrianLC |
4338 | 4387 | [@Azure7111]: https://github.com/Azure7111 |
4339 | 4388 | [@BabyGroot]: https://github.com/BabyGroot |
@@ -4485,4 +4534,4 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1 |
4485 | 4534 | [@y-yagi]: https://github.com/y-yagi |
4486 | 4535 | [@yujideveloper]: https://github.com/yujideveloper |
4487 | 4536 | [@yukimurasawa]: https://github.com/yukimurasawa |
4488 | | -[@zachmccormick]: https://github.com/zachmccormick |
| 4537 | +[@zachmccormick]: https://github.com/zachmccormick |
0 commit comments