Skip to content

Commit 0176245

Browse files
authored
Merge pull request #1978 from DataDog/bump_to_version_1.0.0.beta2
Bump to version 1.0.0.beta2
2 parents 8a75c8e + 7e37388 commit 0176245

File tree

259 files changed

+1063
-939
lines changed

Some content is hidden

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

259 files changed

+1063
-939
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

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+
553
## [0.54.2] - 2022-01-18
654

755
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
19111959
19121960
Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
19131961
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
19151967
[0.54.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.53.0...v0.54.0
19161968
[0.53.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.52.0...v0.53.0
19171969
[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
27012753
[#1798]: https://github.com/DataDog/dd-trace-rb/issues/1798
27022754
[#1801]: https://github.com/DataDog/dd-trace-rb/issues/1801
27032755
[#1807]: https://github.com/DataDog/dd-trace-rb/issues/1807
2756+
[#1816]: https://github.com/DataDog/dd-trace-rb/issues/1816
27042757
[#1820]: https://github.com/DataDog/dd-trace-rb/issues/1820
27052758
[#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
27062788
[@AdrianLC]: https://github.com/AdrianLC
27072789
[@Azure7111]: https://github.com/Azure7111
27082790
[@BabyGroot]: https://github.com/BabyGroot
27092791
[@DocX]: https://github.com/DocX
2792+
[@Drowze]: https://github.com/Drowze
27102793
[@EpiFouloux]: https://github.com/EpiFouloux
27112794
[@EvNomad]: https://github.com/EvNomad
27122795
[@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
27492832
[@djmb]: https://github.com/djmb
27502833
[@dorner]: https://github.com/dorner
27512834
[@drcapulet]: https://github.com/drcapulet
2835+
[@dudo]: https://github.com/dudo
27522836
[@e1senh0rn]: https://github.com/e1senh0rn
27532837
[@elliterate]: https://github.com/elliterate
27542838
[@elyalvarado]: https://github.com/elyalvarado

gemfiles/jruby_9.2.18.0_contrib.gemfile.lock

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.18.0_contrib_old.gemfile.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.18.0_core_old.gemfile.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.18.0_cucumber3.gemfile.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.18.0_cucumber4.gemfile.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.18.0_cucumber5.gemfile.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.18.0_rails5_mysql2.gemfile.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.18.0_rails5_postgres.gemfile.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gemfiles/jruby_9.2.18.0_rails5_postgres_redis.gemfile.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)