|
2 | 2 |
|
3 | 3 | ## [Unreleased]
|
4 | 4 |
|
| 5 | +## [1.0.0.beta2] - 2022-04-14 |
| 6 | + |
| 7 | +Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.0.0.beta2 |
| 8 | + |
| 9 | +Git diff: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0.beta1...v1.0.0.beta2 |
| 10 | + |
| 11 | +### Added |
| 12 | + |
| 13 | +- Ruby 3.1 & 3.2 support ([#1975][], [#1955][]) |
| 14 | +- Trace tag API ([#1959][]) |
| 15 | + |
| 16 | +### Changed |
| 17 | + |
| 18 | +- Access to configuration settings is namespaced ([#1922][]) |
| 19 | +- AWS provides metrics by default ([#1976][]) ([@dudo][]) |
| 20 | +- Update `debase-ruby_core_source` version ([#1964][]) |
| 21 | +- Profiling: Hide symbols/functions in native extension ([#1968][]) |
| 22 | +- Profiling: Renamed code_provenance.json to code-provenance.json ([#1919][]) |
| 23 | +- AppSec: Update libddwaf to v1.2.1 ([#1942][]) |
| 24 | +- AppSec: Update rulesets to v1.3.1 ([#1965][], [#1961][], [#1937][]) |
| 25 | +- AppSec: Avoid exception on missing ruleset file ([#1948][]) |
| 26 | +- AppSec: Env var consistency ([#1938][]) |
| 27 | + |
| 28 | +### Fixed |
| 29 | + |
| 30 | +- Rake instrumenting while disabled ([#1940][], [#1945][]) |
| 31 | +- Grape instrumenting while disabled ([#1940][], [#1943][]) |
| 32 | +- CI: require 'datadog/ci' not loading dependencies ([#1911][]) |
| 33 | +- CI: RSpec shared example file names ([#1816][]) ([@Drowze][]) |
| 34 | +- General documentation improvements ([#1958][], [#1933][], [#1927][]) |
| 35 | +- Documentation fixes & improvements to 1.0 upgrade guide ([#1956][], [#1973][], [#1939][], [#1914][]) |
| 36 | + |
| 37 | +### Removed |
| 38 | + |
| 39 | +- OpenTelemetry extensions (Use [OTLP](https://docs.datadoghq.com/tracing/setup_overview/open_standards/#otlp-ingest-in-datadog-agent) instead) ([#1917][]) |
| 40 | + |
| 41 | +### Refactored |
| 42 | + |
| 43 | +- Agent settings resolver logic ([#1930][], [#1931][], [#1932][]) |
| 44 | + |
| 45 | +## [1.0.0.beta1] - 2022-02-15 |
| 46 | + |
| 47 | +Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.0.0.beta1 |
| 48 | + |
| 49 | +Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.54.2...v1.0.0.beta1 |
| 50 | + |
| 51 | +See https://github.com/DataDog/dd-trace-rb/blob/v1.0.0.beta1/docs/UpgradeGuide.md. |
| 52 | + |
5 | 53 | ## [0.54.2] - 2022-01-18
|
6 | 54 |
|
7 | 55 | Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.54.2
|
@@ -1911,7 +1959,11 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
|
1911 | 1959 |
|
1912 | 1960 | Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
|
1913 | 1961 |
|
1914 |
| -[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v0.54.0...master |
| 1962 | +[Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0.beta2...master |
| 1963 | +[1.0.0.beta2]: https://github.com/DataDog/dd-trace-rb/compare/v1.0.0.beta1...v1.0.0.beta2 |
| 1964 | +[1.0.0.beta1]: https://github.com/DataDog/dd-trace-rb/compare/v0.54.2...v1.0.0.beta1 |
| 1965 | +[0.54.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.54.1...v0.54.2 |
| 1966 | +[0.54.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.54.0...v0.54.1 |
1915 | 1967 | [0.54.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.53.0...v0.54.0
|
1916 | 1968 | [0.53.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.52.0...v0.53.0
|
1917 | 1969 | [0.52.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.51.1...v0.52.0
|
@@ -2701,12 +2753,43 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
|
2701 | 2753 | [#1798]: https://github.com/DataDog/dd-trace-rb/issues/1798
|
2702 | 2754 | [#1801]: https://github.com/DataDog/dd-trace-rb/issues/1801
|
2703 | 2755 | [#1807]: https://github.com/DataDog/dd-trace-rb/issues/1807
|
| 2756 | +[#1816]: https://github.com/DataDog/dd-trace-rb/issues/1816 |
2704 | 2757 | [#1820]: https://github.com/DataDog/dd-trace-rb/issues/1820
|
2705 | 2758 | [#1829]: https://github.com/DataDog/dd-trace-rb/issues/1829
|
| 2759 | +[#1911]: https://github.com/DataDog/dd-trace-rb/issues/1911 |
| 2760 | +[#1914]: https://github.com/DataDog/dd-trace-rb/issues/1914 |
| 2761 | +[#1917]: https://github.com/DataDog/dd-trace-rb/issues/1917 |
| 2762 | +[#1919]: https://github.com/DataDog/dd-trace-rb/issues/1919 |
| 2763 | +[#1922]: https://github.com/DataDog/dd-trace-rb/issues/1922 |
| 2764 | +[#1927]: https://github.com/DataDog/dd-trace-rb/issues/1927 |
| 2765 | +[#1930]: https://github.com/DataDog/dd-trace-rb/issues/1930 |
| 2766 | +[#1931]: https://github.com/DataDog/dd-trace-rb/issues/1931 |
| 2767 | +[#1932]: https://github.com/DataDog/dd-trace-rb/issues/1932 |
| 2768 | +[#1933]: https://github.com/DataDog/dd-trace-rb/issues/1933 |
| 2769 | +[#1937]: https://github.com/DataDog/dd-trace-rb/issues/1937 |
| 2770 | +[#1938]: https://github.com/DataDog/dd-trace-rb/issues/1938 |
| 2771 | +[#1939]: https://github.com/DataDog/dd-trace-rb/issues/1939 |
| 2772 | +[#1940]: https://github.com/DataDog/dd-trace-rb/issues/1940 |
| 2773 | +[#1942]: https://github.com/DataDog/dd-trace-rb/issues/1942 |
| 2774 | +[#1943]: https://github.com/DataDog/dd-trace-rb/issues/1943 |
| 2775 | +[#1945]: https://github.com/DataDog/dd-trace-rb/issues/1945 |
| 2776 | +[#1948]: https://github.com/DataDog/dd-trace-rb/issues/1948 |
| 2777 | +[#1955]: https://github.com/DataDog/dd-trace-rb/issues/1955 |
| 2778 | +[#1956]: https://github.com/DataDog/dd-trace-rb/issues/1956 |
| 2779 | +[#1958]: https://github.com/DataDog/dd-trace-rb/issues/1958 |
| 2780 | +[#1959]: https://github.com/DataDog/dd-trace-rb/issues/1959 |
| 2781 | +[#1961]: https://github.com/DataDog/dd-trace-rb/issues/1961 |
| 2782 | +[#1964]: https://github.com/DataDog/dd-trace-rb/issues/1964 |
| 2783 | +[#1965]: https://github.com/DataDog/dd-trace-rb/issues/1965 |
| 2784 | +[#1968]: https://github.com/DataDog/dd-trace-rb/issues/1968 |
| 2785 | +[#1973]: https://github.com/DataDog/dd-trace-rb/issues/1973 |
| 2786 | +[#1975]: https://github.com/DataDog/dd-trace-rb/issues/1975 |
| 2787 | +[#1976]: https://github.com/DataDog/dd-trace-rb/issues/1976 |
2706 | 2788 | [@AdrianLC]: https://github.com/AdrianLC
|
2707 | 2789 | [@Azure7111]: https://github.com/Azure7111
|
2708 | 2790 | [@BabyGroot]: https://github.com/BabyGroot
|
2709 | 2791 | [@DocX]: https://github.com/DocX
|
| 2792 | +[@Drowze]: https://github.com/Drowze |
2710 | 2793 | [@EpiFouloux]: https://github.com/EpiFouloux
|
2711 | 2794 | [@EvNomad]: https://github.com/EvNomad
|
2712 | 2795 | [@HoneyryderChuck]: https://github.com/HoneyryderChuck
|
@@ -2749,6 +2832,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
|
2749 | 2832 | [@djmb]: https://github.com/djmb
|
2750 | 2833 | [@dorner]: https://github.com/dorner
|
2751 | 2834 | [@drcapulet]: https://github.com/drcapulet
|
| 2835 | +[@dudo]: https://github.com/dudo |
2752 | 2836 | [@e1senh0rn]: https://github.com/e1senh0rn
|
2753 | 2837 | [@elliterate]: https://github.com/elliterate
|
2754 | 2838 | [@elyalvarado]: https://github.com/elyalvarado
|
|
0 commit comments