Skip to content

Commit 7a74e23

Browse files
authored
Merge pull request #2207 from DataDog/bump_to_version_1.3.0
Bump to version 1.3.0
2 parents 86ddf3a + f083746 commit 7a74e23

File tree

178 files changed

+1234
-677
lines changed

Some content is hidden

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

178 files changed

+1234
-677
lines changed

CHANGELOG.md

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

33
## [Unreleased]
44

5+
## [1.3.0] - 2022-08-04
6+
7+
Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.3.0
8+
9+
Git diff: https://github.com/DataDog/dd-trace-rb/compare/v1.2.0...v1.3.0
10+
11+
### Added
12+
13+
* Top-level span being tagged to avoid duplicate computation ([#2138][])
14+
15+
### Changed
16+
17+
* ActiveSupport: Optionally disable tracing with Rails ([@marcotc][])
18+
* Rack: Resource overwritten by nested application ([#2180][])
19+
* Rake: Explicit task instrumentation to prevent memory bloat ([#2174][])
20+
* Sidekiq and DelayedJob: Add spans to improve tracing ([#2170][])
21+
* Drop Profiling support for Ruby 2.1 ([#2140][])
22+
* Migrate `libddprof` dependency to `libdatadog` ([#2061][])
23+
24+
### Fixed
25+
26+
* Fix OpenTracing propagation with TraceDigest ([#2201][])
27+
* Fix SpanFilter dropping descendant spans ([#2074][])
28+
* Redis: Fix Empty pipelined span being dropped ([#757][]) ([@sponomarev][])
29+
* Fix profiler not restarting on `Process.daemon` ([#2150][])
30+
* Fix setting service from Rails configuration ([#2118][]) ([@agrobbin][])
31+
* Some document and development improvement ([@marocchino][]) ([@yukimurasawa][])
32+
533
## [1.2.0] - 2022-07-11
634

735
Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v1.2.0
@@ -2354,6 +2382,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
23542382
[#753]: https://github.com/DataDog/dd-trace-rb/issues/753
23552383
[#754]: https://github.com/DataDog/dd-trace-rb/issues/754
23562384
[#756]: https://github.com/DataDog/dd-trace-rb/issues/756
2385+
[#757]: https://github.com/DataDog/dd-trace-rb/issues/757
23572386
[#760]: https://github.com/DataDog/dd-trace-rb/issues/760
23582387
[#762]: https://github.com/DataDog/dd-trace-rb/issues/762
23592388
[#765]: https://github.com/DataDog/dd-trace-rb/issues/765
@@ -2892,18 +2921,31 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
28922921
[#2028]: https://github.com/DataDog/dd-trace-rb/issues/2028
28932922
[#2054]: https://github.com/DataDog/dd-trace-rb/issues/2054
28942923
[#2059]: https://github.com/DataDog/dd-trace-rb/issues/2059
2924+
[#2061]: https://github.com/DataDog/dd-trace-rb/issues/2061
28952925
[#2066]: https://github.com/DataDog/dd-trace-rb/issues/2066
28962926
[#2069]: https://github.com/DataDog/dd-trace-rb/issues/2069
28972927
[#2070]: https://github.com/DataDog/dd-trace-rb/issues/2070
2928+
[#2074]: https://github.com/DataDog/dd-trace-rb/issues/2074
28982929
[#2076]: https://github.com/DataDog/dd-trace-rb/issues/2076
28992930
[#2079]: https://github.com/DataDog/dd-trace-rb/issues/2079
29002931
[#2082]: https://github.com/DataDog/dd-trace-rb/issues/2082
29012932
[#2096]: https://github.com/DataDog/dd-trace-rb/issues/2096
29022933
[#2097]: https://github.com/DataDog/dd-trace-rb/issues/2097
29032934
[#2110]: https://github.com/DataDog/dd-trace-rb/issues/2110
29042935
[#2113]: https://github.com/DataDog/dd-trace-rb/issues/2113
2936+
[#2118]: https://github.com/DataDog/dd-trace-rb/issues/2118
29052937
[#2125]: https://github.com/DataDog/dd-trace-rb/issues/2125
29062938
[#2134]: https://github.com/DataDog/dd-trace-rb/issues/2134
2939+
[#2138]: https://github.com/DataDog/dd-trace-rb/issues/2138
2940+
[#2140]: https://github.com/DataDog/dd-trace-rb/issues/2140
2941+
[#2150]: https://github.com/DataDog/dd-trace-rb/issues/2150
2942+
[#2158]: https://github.com/DataDog/dd-trace-rb/issues/2158
2943+
[#2162]: https://github.com/DataDog/dd-trace-rb/issues/2162
2944+
[#2163]: https://github.com/DataDog/dd-trace-rb/issues/2163
2945+
[#2173]: https://github.com/DataDog/dd-trace-rb/issues/2173
2946+
[#2174]: https://github.com/DataDog/dd-trace-rb/issues/2174
2947+
[#2180]: https://github.com/DataDog/dd-trace-rb/issues/2180
2948+
[#2201]: https://github.com/DataDog/dd-trace-rb/issues/2201
29072949
[@AdrianLC]: https://github.com/AdrianLC
29082950
[@Azure7111]: https://github.com/Azure7111
29092951
[@BabyGroot]: https://github.com/BabyGroot
@@ -2996,6 +3038,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
29963038
[@link04]: https://github.com/link04
29973039
[@lloeki]: https://github.com/lloeki
29983040
[@mantrala]: https://github.com/mantrala
3041+
[@marcotc]: https://github.com/marcotc
3042+
[@marocchino]: https://github.com/marocchino
29993043
[@masato-hi]: https://github.com/masato-hi
30003044
[@matchbookmac]: https://github.com/matchbookmac
30013045
[@mberlanda]: https://github.com/mberlanda
@@ -3027,6 +3071,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
30273071
[@sinsoku]: https://github.com/sinsoku
30283072
[@skcc321]: https://github.com/skcc321
30293073
[@soulcutter]: https://github.com/soulcutter
3074+
[@sponomarev]: https://github.com/sponomarev
30303075
[@stefanahman]: https://github.com/stefanahman
30313076
[@steveh]: https://github.com/steveh
30323077
[@stormsilver]: https://github.com/stormsilver
@@ -3041,4 +3086,5 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
30413086
[@vramaiah]: https://github.com/vramaiah
30423087
[@walterking]: https://github.com/walterking
30433088
[@y-yagi]: https://github.com/y-yagi
3044-
[@zachmccormick]: https://github.com/zachmccormick
3089+
[@yukimurasawa]: https://github.com/yukimurasawa
3090+
[@zachmccormick]: https://github.com/zachmccormick

gemfiles/ruby_2.1.10_contrib.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/ruby_2.1.10_core_old.gemfile.lock

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

gemfiles/ruby_2.1.10_rails32_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/ruby_2.1.10_rails32_postgres.gemfile.lock

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

gemfiles/ruby_2.1.10_rails32_postgres_redis.gemfile.lock

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

gemfiles/ruby_2.1.10_rails32_postgres_sidekiq.gemfile.lock

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

gemfiles/ruby_2.1.10_rails4_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/ruby_2.1.10_rails4_postgres.gemfile.lock

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

gemfiles/ruby_2.1.10_rails4_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)