|
2 | 2 |
|
3 | 3 | ## [Unreleased]
|
4 | 4 |
|
| 5 | +## [0.52.0] - 2021-08-09 |
| 6 | + |
| 7 | +Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.52.0 |
| 8 | + |
| 9 | +Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.51.1...v0.52.0 |
| 10 | + |
| 11 | +### Added |
| 12 | + |
| 13 | +- Add Sorbet typechecker to dd-trace-rb ([#1607][]) |
| 14 | + |
| 15 | + Note that no inline type signatures were added, to avoid a hard dependency on sorbet. |
| 16 | + |
| 17 | +- Profiler: Add support for annotating profiler stacks with the resource of the active web trace, if any ([#1623][]) |
| 18 | + |
| 19 | + Note that this data is not yet visible on the profiling interface. |
| 20 | + |
| 21 | +- Add error_handler option to GRPC tracer configuration ([#1583][]) ([@fteem][]) |
| 22 | +- User-friendly handling of slow submissions on shutdown ([#1601][]) |
| 23 | +- Profiler: Add experimental toggle to disable the profiling native extension ([#1594][]) |
| 24 | +- Profiler: Bootstrap profiling native extension ([#1584][]) |
| 25 | + |
| 26 | +### Changed |
| 27 | + |
| 28 | +- Profiler: Profiling data is no longer reported when there's less than 1 second of data to report ([#1630][]) |
| 29 | +- Move Grape span resource setting to beginning of request ([#1629][]) |
| 30 | +- Set resource in Sinatra spans at the beginning of requests, and delay setting fallback resource to end of requests ([#1628][]) |
| 31 | +- Move Rails span resource setting to beginning of request ([#1626][]) |
| 32 | +- Make registry a global constant repository ([#1572][]) |
| 33 | +- Profiler: Remove automatic agentless support ([#1590][]) |
| 34 | + |
| 35 | +### Fixed |
| 36 | + |
| 37 | +- Profiler: Fix CPU-time accounting in Profiling when fibers are used ([#1636][]) |
| 38 | +- Don't set peer.service tag on grpc.server spans ([#1632][]) |
| 39 | +- CI-App: Fix GitHub actions environment variable extraction ([#1622][]) |
| 40 | +- Additional Faraday 1.4+ cgroup parsing formats ([#1595][]) |
| 41 | +- Avoid shipping development cruft files in gem releases ([#1585][]) |
| 42 | + |
5 | 43 | ## [0.51.1] - 2021-07-13
|
6 | 44 |
|
7 | 45 | Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.51.1
|
@@ -2490,10 +2528,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
|
2490 | 2528 | [#1561]: https://github.com/DataDog/dd-trace-rb/issues/1561
|
2491 | 2529 | [#1566]: https://github.com/DataDog/dd-trace-rb/issues/1566
|
2492 | 2530 | [#1570]: https://github.com/DataDog/dd-trace-rb/issues/1570
|
| 2531 | +[#1572]: https://github.com/DataDog/dd-trace-rb/issues/1572 |
2493 | 2532 | [#1576]: https://github.com/DataDog/dd-trace-rb/issues/1576
|
| 2533 | +[#1583]: https://github.com/DataDog/dd-trace-rb/issues/1583 |
| 2534 | +[#1584]: https://github.com/DataDog/dd-trace-rb/issues/1584 |
| 2535 | +[#1585]: https://github.com/DataDog/dd-trace-rb/issues/1585 |
2494 | 2536 | [#1586]: https://github.com/DataDog/dd-trace-rb/issues/1586
|
2495 | 2537 | [#1587]: https://github.com/DataDog/dd-trace-rb/issues/1587
|
| 2538 | +[#1590]: https://github.com/DataDog/dd-trace-rb/issues/1590 |
2496 | 2539 | [#1592]: https://github.com/DataDog/dd-trace-rb/issues/1592
|
| 2540 | +[#1594]: https://github.com/DataDog/dd-trace-rb/issues/1594 |
| 2541 | +[#1595]: https://github.com/DataDog/dd-trace-rb/issues/1595 |
| 2542 | +[#1601]: https://github.com/DataDog/dd-trace-rb/issues/1601 |
| 2543 | +[#1607]: https://github.com/DataDog/dd-trace-rb/issues/1607 |
| 2544 | +[#1622]: https://github.com/DataDog/dd-trace-rb/issues/1622 |
| 2545 | +[#1623]: https://github.com/DataDog/dd-trace-rb/issues/1623 |
| 2546 | +[#1626]: https://github.com/DataDog/dd-trace-rb/issues/1626 |
| 2547 | +[#1628]: https://github.com/DataDog/dd-trace-rb/issues/1628 |
| 2548 | +[#1629]: https://github.com/DataDog/dd-trace-rb/issues/1629 |
| 2549 | +[#1630]: https://github.com/DataDog/dd-trace-rb/issues/1630 |
| 2550 | +[#1632]: https://github.com/DataDog/dd-trace-rb/issues/1632 |
| 2551 | +[#1636]: https://github.com/DataDog/dd-trace-rb/issues/1636 |
2497 | 2552 | [@AdrianLC]: https://github.com/AdrianLC
|
2498 | 2553 | [@Azure7111]: https://github.com/Azure7111
|
2499 | 2554 | [@BabyGroot]: https://github.com/BabyGroot
|
@@ -2545,6 +2600,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
|
2545 | 2600 | [@evan-waters]: https://github.com/evan-waters
|
2546 | 2601 | [@fledman]: https://github.com/fledman
|
2547 | 2602 | [@frsantos]: https://github.com/frsantos
|
| 2603 | +[@fteem]: https://github.com/fteem |
2548 | 2604 | [@gaborszakacs]: https://github.com/gaborszakacs
|
2549 | 2605 | [@giancarlocosta]: https://github.com/giancarlocosta
|
2550 | 2606 | [@gingerlime]: https://github.com/gingerlime
|
|
0 commit comments