ddtrace 0.39.0 → 0.44.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (146) hide show
  1. checksums.yaml +4 -4
  2. data/.circleci/config.yml +142 -115
  3. data/.circleci/images/primary/Dockerfile-3.0.0 +73 -0
  4. data/.github/workflows/add-milestone-to-pull-requests.yml +42 -0
  5. data/.github/workflows/create-next-milestone.yml +20 -0
  6. data/.gitlab-ci.yml +1 -0
  7. data/.simplecov +41 -0
  8. data/Appraisals +476 -120
  9. data/CHANGELOG.md +1115 -325
  10. data/CONTRIBUTING.md +2 -2
  11. data/Gemfile +4 -2
  12. data/Rakefile +665 -477
  13. data/ddtrace.gemspec +8 -8
  14. data/docker-compose.yml +30 -0
  15. data/docs/DevelopmentGuide.md +28 -2
  16. data/docs/GettingStarted.md +170 -41
  17. data/lib/ddtrace.rb +4 -0
  18. data/lib/ddtrace/buffer.rb +259 -52
  19. data/lib/ddtrace/configuration.rb +55 -5
  20. data/lib/ddtrace/configuration/components.rb +4 -7
  21. data/lib/ddtrace/configuration/options.rb +3 -1
  22. data/lib/ddtrace/configuration/settings.rb +9 -3
  23. data/lib/ddtrace/context.rb +18 -0
  24. data/lib/ddtrace/context_provider.rb +17 -5
  25. data/lib/ddtrace/contrib/action_pack/action_controller/instrumentation.rb +0 -7
  26. data/lib/ddtrace/contrib/action_view/event.rb +0 -4
  27. data/lib/ddtrace/contrib/action_view/events/render_partial.rb +1 -0
  28. data/lib/ddtrace/contrib/action_view/events/render_template.rb +1 -0
  29. data/lib/ddtrace/contrib/active_record/events/sql.rb +4 -0
  30. data/lib/ddtrace/contrib/active_record/utils.rb +11 -1
  31. data/lib/ddtrace/contrib/active_support/cache/instrumentation.rb +104 -3
  32. data/lib/ddtrace/contrib/active_support/cache/patcher.rb +21 -0
  33. data/lib/ddtrace/contrib/active_support/ext.rb +3 -0
  34. data/lib/ddtrace/contrib/active_support/notifications/event.rb +10 -0
  35. data/lib/ddtrace/contrib/active_support/notifications/subscription.rb +2 -2
  36. data/lib/ddtrace/contrib/aws/instrumentation.rb +6 -1
  37. data/lib/ddtrace/contrib/aws/patcher.rb +0 -1
  38. data/lib/ddtrace/contrib/aws/services.rb +1 -0
  39. data/lib/ddtrace/contrib/configurable.rb +2 -0
  40. data/lib/ddtrace/contrib/configuration/resolvers/pattern_resolver.rb +6 -5
  41. data/lib/ddtrace/contrib/cucumber/configuration/settings.rb +38 -0
  42. data/lib/ddtrace/contrib/cucumber/ext.rb +19 -0
  43. data/lib/ddtrace/contrib/cucumber/formatter.rb +104 -0
  44. data/lib/ddtrace/contrib/cucumber/instrumentation.rb +24 -0
  45. data/lib/ddtrace/contrib/cucumber/integration.rb +40 -0
  46. data/lib/ddtrace/contrib/cucumber/patcher.rb +23 -0
  47. data/lib/ddtrace/contrib/dalli/instrumentation.rb +4 -0
  48. data/lib/ddtrace/contrib/delayed_job/configuration/settings.rb +2 -0
  49. data/lib/ddtrace/contrib/delayed_job/ext.rb +2 -0
  50. data/lib/ddtrace/contrib/delayed_job/plugin.rb +39 -15
  51. data/lib/ddtrace/contrib/elasticsearch/patcher.rb +4 -0
  52. data/lib/ddtrace/contrib/ethon/easy_patch.rb +5 -3
  53. data/lib/ddtrace/contrib/ethon/ext.rb +1 -0
  54. data/lib/ddtrace/contrib/ethon/multi_patch.rb +4 -0
  55. data/lib/ddtrace/contrib/excon/middleware.rb +11 -1
  56. data/lib/ddtrace/contrib/faraday/middleware.rb +4 -0
  57. data/lib/ddtrace/contrib/faraday/patcher.rb +1 -1
  58. data/lib/ddtrace/contrib/grape/configuration/settings.rb +7 -0
  59. data/lib/ddtrace/contrib/grape/endpoint.rb +53 -18
  60. data/lib/ddtrace/contrib/grape/ext.rb +1 -0
  61. data/lib/ddtrace/contrib/grpc/datadog_interceptor/client.rb +5 -1
  62. data/lib/ddtrace/contrib/grpc/datadog_interceptor/server.rb +4 -0
  63. data/lib/ddtrace/contrib/http/instrumentation.rb +6 -2
  64. data/lib/ddtrace/contrib/httprb/instrumentation.rb +6 -3
  65. data/lib/ddtrace/contrib/kafka/event.rb +1 -1
  66. data/lib/ddtrace/contrib/mongodb/subscribers.rb +4 -0
  67. data/lib/ddtrace/contrib/mysql2/instrumentation.rb +4 -0
  68. data/lib/ddtrace/contrib/presto/instrumentation.rb +3 -0
  69. data/lib/ddtrace/contrib/qless/configuration/settings.rb +35 -0
  70. data/lib/ddtrace/contrib/qless/ext.rb +20 -0
  71. data/lib/ddtrace/contrib/qless/integration.rb +38 -0
  72. data/lib/ddtrace/contrib/qless/patcher.rb +35 -0
  73. data/lib/ddtrace/contrib/qless/qless_job.rb +72 -0
  74. data/lib/ddtrace/contrib/qless/tracer_cleaner.rb +32 -0
  75. data/lib/ddtrace/contrib/que/configuration/settings.rb +43 -0
  76. data/lib/ddtrace/contrib/que/ext.rb +30 -0
  77. data/lib/ddtrace/contrib/que/integration.rb +42 -0
  78. data/lib/ddtrace/contrib/que/patcher.rb +24 -0
  79. data/lib/ddtrace/contrib/que/tracer.rb +57 -0
  80. data/lib/ddtrace/contrib/racecar/event.rb +4 -0
  81. data/lib/ddtrace/contrib/racecar/events.rb +2 -0
  82. data/lib/ddtrace/contrib/racecar/events/consume.rb +27 -0
  83. data/lib/ddtrace/contrib/racecar/ext.rb +1 -0
  84. data/lib/ddtrace/contrib/rack/middlewares.rb +2 -0
  85. data/lib/ddtrace/contrib/rails/configuration/settings.rb +5 -0
  86. data/lib/ddtrace/contrib/rails/ext.rb +1 -0
  87. data/lib/ddtrace/contrib/rails/log_injection.rb +81 -0
  88. data/lib/ddtrace/contrib/rails/middlewares.rb +7 -2
  89. data/lib/ddtrace/contrib/rails/patcher.rb +29 -0
  90. data/lib/ddtrace/contrib/redis/configuration/resolver.rb +3 -1
  91. data/lib/ddtrace/contrib/redis/configuration/settings.rb +5 -0
  92. data/lib/ddtrace/contrib/redis/ext.rb +1 -0
  93. data/lib/ddtrace/contrib/redis/patcher.rb +20 -3
  94. data/lib/ddtrace/contrib/redis/quantize.rb +27 -0
  95. data/lib/ddtrace/contrib/redis/tags.rb +9 -1
  96. data/lib/ddtrace/contrib/resque/configuration/settings.rb +1 -0
  97. data/lib/ddtrace/contrib/resque/integration.rb +1 -1
  98. data/lib/ddtrace/contrib/resque/resque_job.rb +1 -1
  99. data/lib/ddtrace/contrib/rest_client/request_patch.rb +4 -0
  100. data/lib/ddtrace/contrib/rspec/configuration/settings.rb +38 -0
  101. data/lib/ddtrace/contrib/rspec/example.rb +61 -0
  102. data/lib/ddtrace/contrib/rspec/example_group.rb +61 -0
  103. data/lib/ddtrace/contrib/rspec/ext.rb +19 -0
  104. data/lib/ddtrace/contrib/rspec/integration.rb +41 -0
  105. data/lib/ddtrace/contrib/rspec/patcher.rb +25 -0
  106. data/lib/ddtrace/contrib/sequel/database.rb +3 -1
  107. data/lib/ddtrace/contrib/sequel/dataset.rb +3 -2
  108. data/lib/ddtrace/contrib/sequel/ext.rb +1 -0
  109. data/lib/ddtrace/contrib/sequel/utils.rb +16 -5
  110. data/lib/ddtrace/contrib/shoryuken/configuration/settings.rb +1 -0
  111. data/lib/ddtrace/contrib/shoryuken/tracer.rb +4 -1
  112. data/lib/ddtrace/contrib/sidekiq/configuration/settings.rb +1 -0
  113. data/lib/ddtrace/contrib/sidekiq/server_tracer.rb +4 -1
  114. data/lib/ddtrace/contrib/sinatra/env.rb +5 -4
  115. data/lib/ddtrace/contrib/sinatra/tracer.rb +21 -42
  116. data/lib/ddtrace/contrib/sinatra/tracer_middleware.rb +50 -23
  117. data/lib/ddtrace/contrib/sneakers/configuration/settings.rb +1 -0
  118. data/lib/ddtrace/contrib/sneakers/tracer.rb +17 -20
  119. data/lib/ddtrace/contrib/status_code_matcher.rb +67 -0
  120. data/lib/ddtrace/ext/app_types.rb +1 -0
  121. data/lib/ddtrace/ext/ci.rb +264 -0
  122. data/lib/ddtrace/ext/distributed.rb +8 -2
  123. data/lib/ddtrace/ext/git.rb +12 -0
  124. data/lib/ddtrace/ext/integration.rb +8 -0
  125. data/lib/ddtrace/ext/runtime.rb +2 -0
  126. data/lib/ddtrace/ext/test.rb +24 -0
  127. data/lib/ddtrace/opentracer/distributed_headers.rb +1 -1
  128. data/lib/ddtrace/propagation/grpc_propagator.rb +18 -6
  129. data/lib/ddtrace/runtime/identity.rb +4 -5
  130. data/lib/ddtrace/runtime/metrics.rb +6 -2
  131. data/lib/ddtrace/sampler.rb +2 -2
  132. data/lib/ddtrace/sampling/rate_limiter.rb +65 -16
  133. data/lib/ddtrace/span.rb +152 -27
  134. data/lib/ddtrace/tracer.rb +25 -13
  135. data/lib/ddtrace/transport/http/adapters/net.rb +8 -2
  136. data/lib/ddtrace/transport/http/statistics.rb +14 -1
  137. data/lib/ddtrace/transport/traces.rb +7 -2
  138. data/lib/ddtrace/utils.rb +16 -13
  139. data/lib/ddtrace/utils/forking.rb +52 -0
  140. data/lib/ddtrace/version.rb +1 -1
  141. data/lib/ddtrace/workers/async.rb +2 -2
  142. data/lib/ddtrace/workers/loop.rb +1 -1
  143. data/lib/ddtrace/workers/polling.rb +1 -1
  144. data/lib/ddtrace/workers/runtime_metrics.rb +7 -3
  145. data/lib/ddtrace/writer.rb +19 -1
  146. metadata +147 -42
@@ -2,6 +2,194 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.44.0] - 2021-01-06
6
+
7
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.44.0
8
+
9
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.43.0...v0.44.0
10
+
11
+ ### Added
12
+
13
+ - Ruby 3.0 support ([#1281][], [#1296][], [#1298][])
14
+ - Rails 6.1 support ([#1295][])
15
+ - Qless integration ([#1237][]) ([@sco11morgan][])
16
+ - AWS Textract service to AWS integration ([#1270][]) ([@Sticksword][])
17
+ - Ability to disable Redis argument capture ([#1276][]) ([@callumj][])
18
+ - Upload coverage report to Codecov ([#1289][])
19
+
20
+ ### Changed
21
+
22
+ - Reduce Runtime Metrics frequency to every 10 seconds ([#1269][])
23
+
24
+ ### Fixed
25
+
26
+ - Disambiguate resource names for Grape endpoints with shared paths ([#1279][]) ([@pzaich][])
27
+ - Remove invalid Jenkins URL from CI integration ([#1283][])
28
+
29
+ ### Refactored
30
+
31
+ - Reduce memory allocation when unnecessary ([#1273][], [#1275][]) ([@callumj][])
32
+ - Improvements to test suite & CI ([#847][], [#1256][], [#1257][], [#1266][], [#1272][], [#1277][], [#1278][], [#1284][], [#1286][], [#1287][], [#1293][], [#1299][])
33
+ - Improvements to documentation ([#1262][], [#1263][], [#1264][], [#1267][], [#1268][], [#1297][])
34
+
35
+ ## [0.43.0] - 2020-11-18
36
+
37
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.43.0
38
+
39
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.42.0...v0.43.0
40
+
41
+ ### Added
42
+
43
+ - Background job custom error handlers ([#1212][]) ([@norbertnytko][])
44
+ - Add "multi" methods instrumentation for Rails cache ([#1217][]) ([@michaelkl][])
45
+ - Support custom error status codes for Grape ([#1238][])
46
+ - Cucumber integration ([#1216][])
47
+ - RSpec integration ([#1234][])
48
+ - Validation to `:on_error` argument on `Datadog::Tracer#trace` ([#1220][])
49
+
50
+ ### Changed
51
+
52
+ - Update `TokenBucket#effective_rate` calculation ([#1236][])
53
+
54
+ ### Fixed
55
+
56
+ - Avoid writer reinitialization during shutdown ([#1235][], [#1248][])
57
+ - Fix configuration multiplexing ([#1204][], [#1227][])
58
+ - Fix misnamed B3 distributed headers ([#1226][], [#1229][])
59
+ - Correct span type for AWS SDK ([#1233][])
60
+ - Correct span type for internal Pin on HTTP clients ([#1239][])
61
+ - Reset trace context after fork ([#1225][])
62
+
63
+ ### Refactored
64
+
65
+ - Improvements to test suite ([#1232][], [#1244][])
66
+ - Improvements to documentation ([#1243][], [#1218][]) ([@cjford][])
67
+
68
+ ### Removed
69
+
70
+ ## [0.42.0] - 2020-10-21
71
+
72
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.42.0
73
+
74
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.41.0...v0.42.0
75
+
76
+ ### Added
77
+
78
+ - Increase Resque support to include 2.0 ([#1213][]) ([@erict-square][])
79
+
80
+ - Improve gRPC Propagator to support metadata array values ([#1203][]) ([@mdehoog][])
81
+
82
+ - Add CPU benchmarks, diagnostics to tests ([#1188][], [#1198][])
83
+
84
+ - Access active correlation by Thread ([#1200][])
85
+
86
+ - Improve delayed_job instrumentation ([#1187][]) ([@norbertnytko][])
87
+
88
+ ### Changed
89
+
90
+ ### Fixed
91
+
92
+ - Improve Rails `log_injection` option to support more Lograge formats ([#1210][]) ([@Supy][])
93
+
94
+ - Fix Changelog ([#1199][]) ([@y-yagi][])
95
+
96
+ ### Refactored
97
+
98
+ - Refactor Trace buffer into multiple components ([#1195][])
99
+
100
+ ## [0.41.0] - 2020-09-30
101
+
102
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.41.0
103
+
104
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
105
+
106
+ ### Added
107
+
108
+ - Improve duration counting using monotonic clock ([#424][], [#1173][]) ([@soulcutter][])
109
+
110
+ ### Changed
111
+
112
+ - Add peer.service tag to external services and skip tagging external services with language tag for runtime metrics ([#934][], [#935][], [#1180][])
113
+ - This helps support the way runtime metrics are associated with spans in the UI.
114
+ - Faster TraceBuffer for CRuby ([#1172][])
115
+ - Reduce memory usage during gem startup ([#1090][])
116
+ - Reduce memory usage of the HTTP transport ([#1165][])
117
+
118
+ ### Fixed
119
+
120
+ - Improved prepared statement support for Sequel integrations ([#1186][])
121
+ - Fix Sequel instrumentation when executing literal strings ([#1185][]) ([@matchbookmac][])
122
+ - Remove explicit `Logger` class verification ([#1181][]) ([@bartekbsh][])
123
+ - This allows users to pass in a custom logger that does not inherit from `Logger` class.
124
+ - Correct tracer buffer metric counting ([#1182][])
125
+ - Fix Span#pretty_print for empty duration ([#1183][])
126
+
127
+ ### Refactored
128
+
129
+ - Improvements to test suite & CI ([#1179][], [#1184][], [#1177][], [#1178][], [#1176][])
130
+ - Reduce generated Span ID range to fit in Fixnum ([#1189][])
131
+
132
+ ## [0.40.0] - 2020-09-08
133
+
134
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.40.0
135
+
136
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
137
+
138
+ ### Added
139
+
140
+ - Rails `log_injection` option to auto enable log correlation ([#1157][])
141
+ - Que integration ([#1141][], [#1146][]) ([@hs-bguven][])
142
+ - `Components#startup!` hook ([#1151][])
143
+ - Code coverage report ([#1159][])
144
+ - Every commit now has a `coverage` CI step that contains the code coverage report. This report can be found in the `Artifacts` tab of that CI step, under `coverage/index.html`.
145
+
146
+ ### Changed
147
+
148
+ - Use a single top level span for Racecar consumers ([#1150][]) ([@dasch][])
149
+
150
+ ### Fixed
151
+
152
+ - Sinatra nested modular applications possibly leaking spans ([#1035][], [#1145][])
153
+
154
+ * **BREAKING** for nested modular Sinatra applications only:
155
+ ```ruby
156
+ class Nested < Sinatra::Base
157
+ end
158
+
159
+ class TopLevel < Sinatra::Base
160
+ use Nested # Nesting happens here
161
+ end
162
+ ```
163
+ * Non-breaking for classic applications nor modular non-nested applications.
164
+
165
+ Fixes issues introduced by [#1015][] (in 0.35.0), when we first introduced Sinatra support for modular applications.
166
+
167
+ The main issue we had to solve for modular support is how to handle nested applications, as only one application is actually responsible for handling the route. A naive implementation would cause the creation of nested `sinatra.request` spans, even for applications that did not handle the request. This is technically correct, as Sinatra is traversing that middleware, accruing overhead, but that does not aligned with our existing behavior of having a single `sinatra.request` span.
168
+
169
+ While trying to achieve backwards-compatibility, we had to resort to a solution that turned out brittle: `sinatra.request` spans had to start in one middleware level and finished it in another. This allowed us to only capture the `sinatra.request` for the matching route, and skip the non-matching one. This caused unexpected issues on some user setups, specially around Sinatra middleware that created spans in between the initialization and closure of `sinatra.request` spans.
170
+
171
+ This change now address these implementation issues by creating multiple `sinatra.request`, one for each traversed Sinatra application, even non-matching ones. This instrumentation is more correct, but at the cost of being a breaking change for nested modular applications.
172
+
173
+ Please see [#1145][] for more information, and example screenshots on how traces for affected applications will look like.
174
+
175
+ - Rack/Rails span error propagation with `rescue_from` ([#1155][], [#1162][])
176
+ - Prevent logger recursion during startup ([#1158][])
177
+ - Race condition on new worker classes ([#1154][])
178
+ - These classes represent future work, and not being used at the moment.
179
+
180
+ ### Refactored
181
+
182
+ - Run CI tests in parallel ([#1156][])
183
+ - Migrate minitest tests to RSpec ([#1127][], [#1128][], [#1133][], [#1149][], [#1152][], [#1153][])
184
+ - Improvements to test suite ([#1134][], [#1148][], [#1163][])
185
+ - Improvements to documentation ([#1138][])
186
+
187
+ ### Removed
188
+
189
+ - **Ruby 1.9 support ended, as it transitions from Maintenance to End-Of-Life ([#1137][])**
190
+ - GitLab status check when not applicable ([#1160][])
191
+ - Allows for PRs pass all status checks once again. Before this change, a `dd-gitlab/copy_to_s3` check would never leave the "Pending" status. This check tracks the deployment of a commit to an internal testing platform, which currently only happens on `master` branch or when manually triggered internally.
192
+
5
193
  ## [0.39.0] - 2020-08-05
6
194
 
7
195
  Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.39.0
@@ -10,26 +198,26 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
10
198
 
11
199
  ### Added
12
200
 
13
- - JRuby 9.2 support (#1126)
14
- - Sneakers integration (#1121) (@janz93)
201
+ - JRuby 9.2 support ([#1126][])
202
+ - Sneakers integration ([#1121][]) ([@janz93][])
15
203
 
16
204
  ### Changed
17
205
 
18
- - Consistent environment variables across languages (#1115)
19
- - Default logger level from WARN to INFO (#1120) (@gingerlime)
20
- - This change also reduces the startup environment log message to INFO level (#1104)
206
+ - Consistent environment variables across languages ([#1115][])
207
+ - Default logger level from WARN to INFO ([#1120][]) ([@gingerlime][])
208
+ - This change also reduces the startup environment log message to INFO level ([#1104][])
21
209
 
22
210
  ### Fixed
23
211
 
24
- - HTTP::StateError on error responses for http.rb (#1116, #1122) (@evan-waters)
25
- - Startup log error when using the test adapter (#1125, #1131) (@benhutton)
26
- - Warning message for Faraday < 1.0 (#1129) (@fledman, @tjwp)
27
- - Propagate Rails error message to Rack span (#1124)
212
+ - HTTP::StateError on error responses for http.rb ([#1116][], [#1122][]) ([@evan-waters][])
213
+ - Startup log error when using the test adapter ([#1125][], [#1131][]) ([@benhutton][])
214
+ - Warning message for Faraday < 1.0 ([#1129][]) ([@fledman][], [@tjwp][])
215
+ - Propagate Rails error message to Rack span ([#1124][])
28
216
 
29
217
  ### Refactored
30
218
 
31
- - Improved ActiveRecord documentation (#1119)
32
- - Improvements to test suite (#1105, #1118)
219
+ - Improved ActiveRecord documentation ([#1119][])
220
+ - Improvements to test suite ([#1105][], [#1118][])
33
221
 
34
222
  ## [0.38.0] - 2020-07-13
35
223
 
@@ -39,28 +227,28 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
39
227
 
40
228
  ### Added
41
229
 
42
- - http.rb integration (#529, #853)
43
- - Kafka integration (#1070) (@tjwp)
44
- - Span#set_tags (#1081) (@DocX)
45
- - retry_count tag for Sidekiq jobs (#1089) (@elyalvarado)
46
- - Startup environment log (#1104, #1109)
47
- - DD_SITE and DD_API_KEY configuration (#1107)
230
+ - http.rb integration ([#529][], [#853][])
231
+ - Kafka integration ([#1070][]) ([@tjwp][])
232
+ - Span#set_tags ([#1081][]) ([@DocX][])
233
+ - retry_count tag for Sidekiq jobs ([#1089][]) ([@elyalvarado][])
234
+ - Startup environment log ([#1104][], [#1109][])
235
+ - DD_SITE and DD_API_KEY configuration ([#1107][])
48
236
 
49
237
  ### Changed
50
238
 
51
- - Auto instrument Faraday default connection (#1057)
52
- - Sidekiq client middleware is now the same for client and server (#1099) (@drcapulet)
53
- - Single pass SpanFilter (#1071) (@tjwp)
239
+ - Auto instrument Faraday default connection ([#1057][])
240
+ - Sidekiq client middleware is now the same for client and server ([#1099][]) ([@drcapulet][])
241
+ - Single pass SpanFilter ([#1071][]) ([@tjwp][])
54
242
 
55
243
  ### Fixed
56
244
 
57
- - Ensure fatal exceptions are propagated (#1100)
58
- - Respect child_of: option in Tracer#trace (#1082) (@DocX)
59
- - Improve Writer thread safety (#1091) (@fledman)
245
+ - Ensure fatal exceptions are propagated ([#1100][])
246
+ - Respect child_of: option in Tracer#trace ([#1082][]) ([@DocX][])
247
+ - Improve Writer thread safety ([#1091][]) ([@fledman][])
60
248
 
61
249
  ### Refactored
62
250
 
63
- - Improvements to test suite (#1092, #1103)
251
+ - Improvements to test suite ([#1092][], [#1103][])
64
252
 
65
253
  ## [0.37.0] - 2020-06-24
66
254
 
@@ -70,12 +258,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
70
258
 
71
259
  ### Refactored
72
260
 
73
- - Documentation improvements regarding Datadog Agent defaults (#1074) (@cswatt)
74
- - Improvements to test suite (#1043, #1051, #1062, #1075, #1076, #1086)
261
+ - Documentation improvements regarding Datadog Agent defaults ([#1074][]) ([@cswatt][])
262
+ - Improvements to test suite ([#1043][], [#1051][], [#1062][], [#1075][], [#1076][], [#1086][])
75
263
 
76
264
  ### Removed
77
265
 
78
- - **DEPRECATION**: Deprecate Contrib::Configuration::Settings#tracer= (#1072, #1079)
266
+ - **DEPRECATION**: Deprecate Contrib::Configuration::Settings#tracer= ([#1072][], [#1079][])
79
267
  - The `tracer:` option is no longer supported for integration configuration. A deprecation warning will be issued when this option is used.
80
268
  - Tracer instances are dynamically created when `ddtrace` is reconfigured (through `Datadog.configure{}` calls).
81
269
 
@@ -85,10 +273,10 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
85
273
 
86
274
  Allowing an integration to set its tracer instance is effectively preventing that integration from dynamically retrieving the current active tracer in the future, thus causing it to record spans in a stale tracer instance. Spans recorded in a stale tracer instance will look disconnected from their parent context.
87
275
 
88
- - **BREAKING**: Remove Pin#tracer= and DeprecatedPin#tracer= (#1073)
276
+ - **BREAKING**: Remove Pin#tracer= and DeprecatedPin#tracer= ([#1073][])
89
277
  - The `Pin` and `DeprecatedPin` are internal tools used to provide more granular configuration for integrations.
90
278
  - The APIs being removed are not public nor have been externally documented. The `DeprecatedPin` specifically has been considered deprecated since 0.20.0.
91
- - This removal is a continuation of #1079 above, thus carrying the same rationale.
279
+ - This removal is a continuation of [#1079][] above, thus carrying the same rationale.
92
280
 
93
281
  ### Migration
94
282
 
@@ -109,16 +297,16 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.2...v0.36.0
109
297
 
110
298
  ### Changed
111
299
 
112
- - Prevent trace components from being re-initialized multiple times during setup (#1037)
300
+ - Prevent trace components from being re-initialized multiple times during setup ([#1037][])
113
301
 
114
302
  ### Fixed
115
303
 
116
- - Allow Rails patching if Railties are loaded (#993, #1054) (@mustela, @bheemreddy181, @vramaiah)
117
- - Pin delegates to default tracer unless configured (#1041)
304
+ - Allow Rails patching if Railties are loaded ([#993][], [#1054][]) ([@mustela][], [@bheemreddy181][], [@vramaiah][])
305
+ - Pin delegates to default tracer unless configured ([#1041][])
118
306
 
119
307
  ### Refactored
120
308
 
121
- - Improvements to test suite (#1027, #1031, #1045, #1046, #1047)
309
+ - Improvements to test suite ([#1027][], [#1031][], [#1045][], [#1046][], [#1047][])
122
310
 
123
311
  ## [0.35.2] - 2020-05-08
124
312
 
@@ -128,8 +316,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.1...v0.35.2
128
316
 
129
317
  ### Fixed
130
318
 
131
- - Internal tracer HTTP requests generating traces (#1030, #1033) (@gingerlime)
132
- - `Datadog.configure` forcing all options to eager load (#1032, #1034) (@kelvin-acosta)
319
+ - Internal tracer HTTP requests generating traces ([#1030][], [#1033][]) ([@gingerlime][])
320
+ - `Datadog.configure` forcing all options to eager load ([#1032][], [#1034][]) ([@kelvin-acosta][])
133
321
 
134
322
  ## [0.35.1] - 2020-05-05
135
323
 
@@ -139,7 +327,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.0...v0.35.1
139
327
 
140
328
  ### Fixed
141
329
 
142
- - Components#teardown! NoMethodError (#1021, #1023) (@bzf)
330
+ - Components#teardown! NoMethodError ([#1021][], [#1023][]) ([@bzf][])
143
331
 
144
332
  ## [0.35.0] - 2020-04-29
145
333
 
@@ -149,28 +337,28 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.2...v0.35.0
149
337
 
150
338
  ### Added
151
339
 
152
- - Chunk large trace payloads before flushing (#818, #840)
153
- - Support for Sinatra modular apps (#486, #913, #1015) (@jpaulgs, @tomasv, @ZimbiX)
154
- - active_job support for Resque (#991) (@stefanahman, @psycholein)
155
- - JRuby 9.2 to CI test matrix (#995)
156
- - `TraceWriter` and `AsyncTraceWriter` workers (#986)
157
- - Runtime metrics worker (#988)
340
+ - Chunk large trace payloads before flushing ([#818][], [#840][])
341
+ - Support for Sinatra modular apps ([#486][], [#913][], [#1015][]) ([@jpaulgs][], [@tomasv][], [@ZimbiX][])
342
+ - active_job support for Resque ([#991][]) ([@stefanahman][], [@psycholein][])
343
+ - JRuby 9.2 to CI test matrix ([#995][])
344
+ - `TraceWriter` and `AsyncTraceWriter` workers ([#986][])
345
+ - Runtime metrics worker ([#988][])
158
346
 
159
347
  ### Changed
160
348
 
161
- - Populate env, service, and version from tags (#1008)
162
- - Extract components from configuration (#996)
163
- - Extract logger to components (#997)
164
- - Extract runtime metrics worker from `Writer` (#1004)
165
- - Improvements to Faraday documentation (#1005)
349
+ - Populate env, service, and version from tags ([#1008][])
350
+ - Extract components from configuration ([#996][])
351
+ - Extract logger to components ([#997][])
352
+ - Extract runtime metrics worker from `Writer` ([#1004][])
353
+ - Improvements to Faraday documentation ([#1005][])
166
354
 
167
355
  ### Fixed
168
356
 
169
- - Runtime metrics not starting after #write (#1010)
357
+ - Runtime metrics not starting after #write ([#1010][])
170
358
 
171
359
  ### Refactored
172
360
 
173
- - Improvements to test suite (#842, #1006, #1009)
361
+ - Improvements to test suite ([#842][], [#1006][], [#1009][])
174
362
 
175
363
  ## [0.34.2] - 2020-04-09
176
364
 
@@ -180,7 +368,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.1...v0.34.2
180
368
 
181
369
  ### Changed
182
370
 
183
- - Revert Rails applications setting default `env` if none are configured. (#1000) (@errriclee)
371
+ - Revert Rails applications setting default `env` if none are configured. ([#1000][]) ([@errriclee][])
184
372
 
185
373
  ## [0.34.1] - 2020-04-02
186
374
 
@@ -190,11 +378,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.0...v0.34.1
190
378
 
191
379
  ### Changed
192
380
 
193
- - Rails applications set default `service` and `env` if none are configured. (#990)
381
+ - Rails applications set default `service` and `env` if none are configured. ([#990][])
194
382
 
195
383
  ### Fixed
196
384
 
197
- - Some configuration settings not applying (#989, #990) (@rahul342)
385
+ - Some configuration settings not applying ([#989][], [#990][]) ([@rahul342][])
198
386
 
199
387
  ## [0.34.0] - 2020-03-31
200
388
 
@@ -204,18 +392,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.1...v0.34.0
204
392
 
205
393
  ### Added
206
394
 
207
- - `Datadog::Event` for simple pub-sub messaging (#972)
208
- - `Datadog::Workers` for trace writing (#969, #973)
209
- - `_dd.measured` tag to some integrations for more statistics (#974)
210
- - `env`, `service`, `version`, `tags` configuration for auto-tagging (#977, #980, #982, #983, #985)
211
- - Multiplexed configuration for Ethon, Excon, Faraday, HTTP integrations (#882, #953) (@stormsilver)
395
+ - `Datadog::Event` for simple pub-sub messaging ([#972][])
396
+ - `Datadog::Workers` for trace writing ([#969][], [#973][])
397
+ - `_dd.measured` tag to some integrations for more statistics ([#974][])
398
+ - `env`, `service`, `version`, `tags` configuration for auto-tagging ([#977][], [#980][], [#982][], [#983][], [#985][])
399
+ - Multiplexed configuration for Ethon, Excon, Faraday, HTTP integrations ([#882][], [#953][]) ([@stormsilver][])
212
400
 
213
401
  ### Fixed
214
402
 
215
- - Runtime metrics configuration dropping with new writer (#967, #968) (@ericmustin)
216
- - Faraday "unexpected middleware" warnings on v0.x (#965, #971)
217
- - Presto configuration (#975)
218
- - Test suite issues (#981)
403
+ - Runtime metrics configuration dropping with new writer ([#967][], [#968][]) ([@ericmustin][])
404
+ - Faraday "unexpected middleware" warnings on v0.x ([#965][], [#971][])
405
+ - Presto configuration ([#975][])
406
+ - Test suite issues ([#981][])
219
407
 
220
408
  ## [0.33.1] - 2020-03-09
221
409
 
@@ -225,7 +413,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.0...v0.33.1
225
413
 
226
414
  ### Fixed
227
415
 
228
- - NoMethodError when activating instrumentation for non-existent library (#964, #966) (@roccoblues, @brafales)
416
+ - NoMethodError when activating instrumentation for non-existent library ([#964][], [#966][]) ([@roccoblues][], [@brafales][])
229
417
 
230
418
  ## [0.33.0] - 2020-03-05
231
419
 
@@ -235,27 +423,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.32.0...v0.33.0
235
423
 
236
424
  ### Added
237
425
 
238
- - Instrumentation for [Presto](https://github.com/treasure-data/presto-client-ruby) (#775, #920, #961) (@ahammel, @ericmustin)
239
- - Sidekiq job argument tagging (#933) (@mantrala)
240
- - Support for multiple Redis services (#861, #937, #940) (@mberlanda)
241
- - Support for Sidekiq w/ Delayed extensions (#798, #942) (@joeyAghion)
242
- - Setter/reset behavior for configuration options (#957)
243
- - Priority sampling rate tag (#891)
426
+ - Instrumentation for [Presto](https://github.com/treasure-data/presto-client-ruby) ([#775][], [#920][], [#961][]) ([@ahammel][], [@ericmustin][])
427
+ - Sidekiq job argument tagging ([#933][]) ([@mantrala][])
428
+ - Support for multiple Redis services ([#861][], [#937][], [#940][]) ([@mberlanda][])
429
+ - Support for Sidekiq w/ Delayed extensions ([#798][], [#942][]) ([@joeyAghion][])
430
+ - Setter/reset behavior for configuration options ([#957][])
431
+ - Priority sampling rate tag ([#891][])
244
432
 
245
433
  ### Changed
246
434
 
247
- - Enforced minimum version requirements for instrumentation (#944)
248
- - RubyGems minimum version requirement 2.0.0 (#954) (@Joas1988)
249
- - Relaxed Rack minimum version to 1.1.0 (#952)
435
+ - Enforced minimum version requirements for instrumentation ([#944][])
436
+ - RubyGems minimum version requirement 2.0.0 ([#954][]) ([@Joas1988][])
437
+ - Relaxed Rack minimum version to 1.1.0 ([#952][])
250
438
 
251
439
  ### Fixed
252
440
 
253
- - AWS instrumentation patching when AWS is partially loaded (#938, #945) (@letiesperon, @illdelph)
254
- - NoMethodError for RuleSampler with priority sampling (#949, #950) (@BabyGroot)
255
- - Runtime metrics accumulating service names when disabled (#956)
256
- - Sidekiq instrumentation incompatibility with Rails 6.0.2 (#943, #947) (@pj0tr)
257
- - Documentation tweaks (#948, #955) (@mstruve, @link04)
258
- - Various test suite issues (#930, #932, #951, #960)
441
+ - AWS instrumentation patching when AWS is partially loaded ([#938][], [#945][]) ([@letiesperon][], [@illdelph][])
442
+ - NoMethodError for RuleSampler with priority sampling ([#949][], [#950][]) ([@BabyGroot][])
443
+ - Runtime metrics accumulating service names when disabled ([#956][])
444
+ - Sidekiq instrumentation incompatibility with Rails 6.0.2 ([#943][], [#947][]) ([@pj0tr][])
445
+ - Documentation tweaks ([#948][], [#955][]) ([@mstruve][], [@link04][])
446
+ - Various test suite issues ([#930][], [#932][], [#951][], [#960][])
259
447
 
260
448
  ## [0.32.0] - 2020-01-22
261
449
 
@@ -265,18 +453,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.1...v0.32.0
265
453
 
266
454
  ### Added
267
455
 
268
- - New transport: Datadog::Transport::IO (#910)
269
- - Dual License (#893, #921)
456
+ - New transport: Datadog::Transport::IO ([#910][])
457
+ - Dual License ([#893][], [#921][])
270
458
 
271
459
  ### Changed
272
460
 
273
- - Improved annotation of `net/http` spans during exception (#888, #907) (@djmb, @ericmustin)
274
- - RuleSampler is now the default sampler; no behavior changes by default (#917)
461
+ - Improved annotation of `net/http` spans during exception ([#888][], [#907][]) ([@djmb][], [@ericmustin][])
462
+ - RuleSampler is now the default sampler; no behavior changes by default ([#917][])
275
463
 
276
464
  ### Refactored
277
465
 
278
- - Improved support for multiple tracer instances (#919)
279
- - Improvements to test suite (#909, #928, #929)
466
+ - Improved support for multiple tracer instances ([#919][])
467
+ - Improvements to test suite ([#909][], [#928][], [#929][])
280
468
 
281
469
  ## [0.31.1] - 2020-01-15
282
470
 
@@ -286,13 +474,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.0...v0.31.1
286
474
 
287
475
  ### Fixed
288
476
 
289
- - Implement SyncWriter#stop method (#914, #915) (@Yurokle)
290
- - Fix references to Datadog::Tracer.log (#912)
291
- - Ensure http.status_code tag is always a string (#927)
477
+ - Implement SyncWriter#stop method ([#914][], [#915][]) ([@Yurokle][])
478
+ - Fix references to Datadog::Tracer.log ([#912][])
479
+ - Ensure http.status_code tag is always a string ([#927][])
292
480
 
293
481
  ### Refactored
294
482
 
295
- - Improvements to test suite & CI (#911, #918)
483
+ - Improvements to test suite & CI ([#911][], [#918][])
296
484
 
297
485
  ## [0.31.0] - 2020-01-07
298
486
 
@@ -302,27 +490,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.1...v0.31.0
302
490
 
303
491
  ### Added
304
492
 
305
- - Ruby 2.7 support (#805, #896)
306
- - ActionCable integration (#132, #824) (@renchap, @ericmustin)
307
- - Faraday 1.0 support (#906)
308
- - Set resource for Rails template spans (#855, #881) (@djmb)
309
- - at_exit hook for graceful Tracer shutdown (#884)
310
- - Environment variables to configure RuleSampler defaults (#892)
493
+ - Ruby 2.7 support ([#805][], [#896][])
494
+ - ActionCable integration ([#132][], [#824][]) ([@renchap][], [@ericmustin][])
495
+ - Faraday 1.0 support ([#906][])
496
+ - Set resource for Rails template spans ([#855][], [#881][]) ([@djmb][])
497
+ - at_exit hook for graceful Tracer shutdown ([#884][])
498
+ - Environment variables to configure RuleSampler defaults ([#892][])
311
499
 
312
500
  ### Changed
313
501
 
314
- - Updated partial trace flushing to conform with new back-end requirements (#845)
315
- - Store numeric tags as metrics (#886)
316
- - Moved logging from Datadog::Tracer to Datadog::Logger (#880)
317
- - Changed default RuleSampler rate limit from unlimited to 100/s (#898)
502
+ - Updated partial trace flushing to conform with new back-end requirements ([#845][])
503
+ - Store numeric tags as metrics ([#886][])
504
+ - Moved logging from Datadog::Tracer to Datadog::Logger ([#880][])
505
+ - Changed default RuleSampler rate limit from unlimited to 100/s ([#898][])
318
506
 
319
507
  ### Fixed
320
508
 
321
- - SyncWriter incompatibility with Transport::HTTP::Client (#903, #904) (@Yurokle)
509
+ - SyncWriter incompatibility with Transport::HTTP::Client ([#903][], [#904][]) ([@Yurokle][])
322
510
 
323
511
  ### Refactored
324
512
 
325
- - Improvements to test suite & CI (#815, #821, #841, #846, #883, #895)
513
+ - Improvements to test suite & CI ([#815][], [#821][], [#841][], [#846][], [#883][], [#895][])
326
514
 
327
515
  ## [0.30.1] - 2019-12-30
328
516
 
@@ -332,12 +520,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.0...v0.30.1
332
520
 
333
521
  ### Fixed
334
522
 
335
- - NoMethodError when configuring tracer with SyncWriter (#899, #900) (@Yurokle)
336
- - Spans associated with runtime metrics when disabled (#885)
523
+ - NoMethodError when configuring tracer with SyncWriter ([#899][], [#900][]) ([@Yurokle][])
524
+ - Spans associated with runtime metrics when disabled ([#885][])
337
525
 
338
526
  ### Refactored
339
527
 
340
- - Improvements to test suite & CI (#815, #821, #846, #883, #890, #894)
528
+ - Improvements to test suite & CI ([#815][], [#821][], [#846][], [#883][], [#890][], [#894][])
341
529
 
342
530
  ## [0.30.0] - 2019-12-04
343
531
 
@@ -347,13 +535,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.1...v0.30.0
347
535
 
348
536
  ### Added
349
537
 
350
- - Additional tracer health metrics (#867)
351
- - Integration patching instrumentation (#871)
352
- - Rule-based trace sampling (#854)
538
+ - Additional tracer health metrics ([#867][])
539
+ - Integration patching instrumentation ([#871][])
540
+ - Rule-based trace sampling ([#854][])
353
541
 
354
542
  ### Fixed
355
543
 
356
- - Rails template layout name error (#872) (@djmb)
544
+ - Rails template layout name error ([#872][]) ([@djmb][])
357
545
 
358
546
  ## [0.29.1] - 2019-11-26
359
547
 
@@ -363,7 +551,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.0...v0.29.1
363
551
 
364
552
  ### Fixed
365
553
 
366
- - Priority sampling not activating by default (#868)
554
+ - Priority sampling not activating by default ([#868][])
367
555
 
368
556
  ## [0.29.0] - 2019-11-20
369
557
 
@@ -373,25 +561,25 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.28.0...v0.29.0
373
561
 
374
562
  ### Added
375
563
 
376
- - Tracer health metrics (#838, #859)
564
+ - Tracer health metrics ([#838][], [#859][])
377
565
 
378
566
  ### Changed
379
567
 
380
- - Default trace buffer size from 100 to 1000 (#865)
381
- - Rack request start headers to accept more values (#832) (@JamesHarker)
382
- - Faraday to apply default instrumentation out-of-the-box (#786, #843) (@mdross95)
568
+ - Default trace buffer size from 100 to 1000 ([#865][])
569
+ - Rack request start headers to accept more values ([#832][]) ([@JamesHarker][])
570
+ - Faraday to apply default instrumentation out-of-the-box ([#786][], [#843][]) ([@mdross95][])
383
571
 
384
572
  ### Fixed
385
573
 
386
- - Synthetics trace context being ignored (#856)
574
+ - Synthetics trace context being ignored ([#856][])
387
575
 
388
576
  ### Refactored
389
577
 
390
- - Tracer buffer constants (#851)
578
+ - Tracer buffer constants ([#851][])
391
579
 
392
580
  ### Removed
393
581
 
394
- - Some old Ruby 1.9 code (#819, #844)
582
+ - Some old Ruby 1.9 code ([#819][], [#844][])
395
583
 
396
584
  ## [0.28.0] - 2019-10-01
397
585
 
@@ -401,13 +589,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.27.0...v0.28.0
401
589
 
402
590
  ### Added
403
591
 
404
- - Support for Rails 6.0 (#814)
405
- - Multiplexing on hostname/port for Dalli (#823)
406
- - Support for Redis array arguments (#796, #817) (@brafales)
592
+ - Support for Rails 6.0 ([#814][])
593
+ - Multiplexing on hostname/port for Dalli ([#823][])
594
+ - Support for Redis array arguments ([#796][], [#817][]) ([@brafales][])
407
595
 
408
596
  ### Refactored
409
597
 
410
- - Encapsulate span resource name in Faraday integration (#811) (@giancarlocosta)
598
+ - Encapsulate span resource name in Faraday integration ([#811][]) ([@giancarlocosta][])
411
599
 
412
600
  ## [0.27.0] - 2019-09-04
413
601
 
@@ -425,16 +613,16 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
425
613
 
426
614
  ### Added
427
615
 
428
- - Support for Ruby 2.5 & 2.6 (#800, #802)
429
- - Ethon integration (#527, #778) (@al-kudryavtsev)
616
+ - Support for Ruby 2.5 & 2.6 ([#800][], [#802][])
617
+ - Ethon integration ([#527][], [#778][]) ([@al-kudryavtsev][])
430
618
 
431
619
  ### Refactored
432
620
 
433
- - Rails integration into smaller integrations per component (#747, #762, #795)
621
+ - Rails integration into smaller integrations per component ([#747][], [#762][], [#795][])
434
622
 
435
623
  ### Removed
436
624
 
437
- - Support for Ruby 1.9 (#791)
625
+ - Support for Ruby 1.9 ([#791][])
438
626
 
439
627
  ## [0.26.0] - 2019-08-06
440
628
 
@@ -452,15 +640,15 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
452
640
 
453
641
  ### Added
454
642
 
455
- - Container ID tagging for containerized environments (#784)
643
+ - Container ID tagging for containerized environments ([#784][])
456
644
 
457
645
  ### Refactored
458
646
 
459
- - Datadog::Metrics constants (#789)
647
+ - Datadog::Metrics constants ([#789][])
460
648
 
461
649
  ### Removed
462
650
 
463
- - Datadog::HTTPTransport and related components (#782)
651
+ - Datadog::HTTPTransport and related components ([#782][])
464
652
 
465
653
  ## [0.25.1] - 2019-07-16
466
654
 
@@ -470,7 +658,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.25.0...v0.25.1
470
658
 
471
659
  ### Fixed
472
660
 
473
- - Redis integration not quantizing AUTH command (#776)
661
+ - Redis integration not quantizing AUTH command ([#776][])
474
662
 
475
663
  ## [0.25.0] - 2019-06-27
476
664
 
@@ -488,25 +676,25 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
488
676
 
489
677
  ### Added
490
678
 
491
- - Unix socket support for transport layer (#770)
679
+ - Unix socket support for transport layer ([#770][])
492
680
 
493
681
  ### Changed
494
682
 
495
- - Renamed 'ForcedTracing' to 'ManualTracing' (#765)
683
+ - Renamed 'ForcedTracing' to 'ManualTracing' ([#765][])
496
684
 
497
685
  ### Fixed
498
686
 
499
- - HTTP headers for distributed tracing sometimes appearing in duplicate (#768)
687
+ - HTTP headers for distributed tracing sometimes appearing in duplicate ([#768][])
500
688
 
501
689
  ### Refactored
502
690
 
503
- - Transport layer (#628)
691
+ - Transport layer ([#628][])
504
692
 
505
693
  ### Deprecated
506
694
 
507
- - Ruby < 2.0 support (#771)
508
- - Use of `Datadog::HTTPTransport` (#628)
509
- - Use of `Datadog::Ext::ForcedTracing` (#765)
695
+ - Ruby < 2.0 support ([#771][])
696
+ - Use of `Datadog::HTTPTransport` ([#628][])
697
+ - Use of `Datadog::Ext::ForcedTracing` ([#765][])
510
698
 
511
699
  ## [0.24.0] - 2019-05-21
512
700
 
@@ -516,9 +704,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.3...v0.24.0
516
704
 
517
705
  ### Added
518
706
 
519
- - B3 header support (#753)
520
- - Hostname tagging option (#760)
521
- - Contribution and development guides (#754)
707
+ - B3 header support ([#753][])
708
+ - Hostname tagging option ([#760][])
709
+ - Contribution and development guides ([#754][])
522
710
 
523
711
  ## [0.23.3] - 2019-05-16
524
712
 
@@ -528,7 +716,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.2...v0.23.3
528
716
 
529
717
  ### Fixed
530
718
 
531
- - Integrations initializing tracer at load time (#756)
719
+ - Integrations initializing tracer at load time ([#756][])
532
720
 
533
721
  ## [0.23.2] - 2019-05-10
534
722
 
@@ -538,9 +726,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.1...v0.23.2
538
726
 
539
727
  ### Fixed
540
728
 
541
- - Span types for HTTP, web, and some datastore integrations (#751)
542
- - AWS integration not patching service-level gems (#707, #752) (@alksl, @tonypinder)
543
- - Rails 6 warning for `parent_name` (#750) (@sinsoku)
729
+ - Span types for HTTP, web, and some datastore integrations ([#751][])
730
+ - AWS integration not patching service-level gems ([#707][], [#752][]) ([@alksl][], [@tonypinder][])
731
+ - Rails 6 warning for `parent_name` ([#750][]) ([@sinsoku][])
544
732
 
545
733
  ## [0.23.1] - 2019-05-02
546
734
 
@@ -550,7 +738,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.0...v0.23.1
550
738
 
551
739
  ### Fixed
552
740
 
553
- - NoMethodError runtime_metrics for SyncWriter (#748)
741
+ - NoMethodError runtime_metrics for SyncWriter ([#748][])
554
742
 
555
743
  ## [0.23.0] - 2019-04-30
556
744
 
@@ -560,16 +748,16 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.22.0...v0.23.0
560
748
 
561
749
  ### Added
562
750
 
563
- - Error status support via tags for OpenTracing (#739)
564
- - Forced sampling support via tags (#720)
751
+ - Error status support via tags for OpenTracing ([#739][])
752
+ - Forced sampling support via tags ([#720][])
565
753
 
566
754
  ### Fixed
567
755
 
568
- - Wrong return values for Rake integration (#742) (@Redapted)
756
+ - Wrong return values for Rake integration ([#742][]) ([@Redapted][])
569
757
 
570
758
  ### Removed
571
759
 
572
- - Obsolete service telemetry (#738)
760
+ - Obsolete service telemetry ([#738][])
573
761
 
574
762
  ## [0.22.0] - 2019-04-15
575
763
 
@@ -581,11 +769,11 @@ In this release we are adding initial support for the **beta** [Runtime metrics
581
769
 
582
770
  ### Changed
583
771
 
584
- - Add warning log if an integration is incompatible (#722) (@ericmustin)
772
+ - Add warning log if an integration is incompatible ([#722][]) ([@ericmustin][])
585
773
 
586
774
  ### Added
587
775
 
588
- - Initial beta support for Runtime metrics collection (#677)
776
+ - Initial beta support for Runtime metrics collection ([#677][])
589
777
 
590
778
  ## [0.21.2] - 2019-04-10
591
779
 
@@ -595,7 +783,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.1...v0.21.2
595
783
 
596
784
  ### Changed
597
785
 
598
- - Support Mongo gem 2.5+ (#729, #731) (@ricbartm)
786
+ - Support Mongo gem 2.5+ ([#729][], [#731][]) ([@ricbartm][])
599
787
 
600
788
  ## [0.21.1] - 2019-03-26
601
789
 
@@ -605,7 +793,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.0...v0.21.1
605
793
 
606
794
  ### Changed
607
795
 
608
- - Support `TAG_ENABLED` for custom instrumentation with analytics. (#728)
796
+ - Support `TAG_ENABLED` for custom instrumentation with analytics. ([#728][])
609
797
 
610
798
  ## [0.21.0] - 2019-03-20
611
799
 
@@ -615,17 +803,17 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...v0.21.0
615
803
 
616
804
  ### Added
617
805
 
618
- - Trace analytics support (#697, #715)
619
- - HTTP after_request span hook (#716, #724)
806
+ - Trace analytics support ([#697][], [#715][])
807
+ - HTTP after_request span hook ([#716][], [#724][])
620
808
 
621
809
  ### Fixed
622
810
 
623
- - Distributed traces with IDs in 2^64 range being dropped (#719)
624
- - Custom logger level forced to warning (#681, #721) (@blaines, @ericmustin)
811
+ - Distributed traces with IDs in 2^64 range being dropped ([#719][])
812
+ - Custom logger level forced to warning ([#681][], [#721][]) ([@blaines][], [@ericmustin][])
625
813
 
626
814
  ### Refactored
627
815
 
628
- - Global configuration for tracing into configuration API (#714)
816
+ - Global configuration for tracing into configuration API ([#714][])
629
817
 
630
818
  ## [0.20.0] - 2019-03-07
631
819
 
@@ -638,24 +826,24 @@ These changes are backwards compatible, but all integration configuration should
638
826
 
639
827
  ### Added
640
828
 
641
- - Propagate synthetics origin header (#699)
829
+ - Propagate synthetics origin header ([#699][])
642
830
 
643
831
  ### Changed
644
832
 
645
- - Enable distributed tracing by default (#701)
833
+ - Enable distributed tracing by default ([#701][])
646
834
 
647
835
  ### Fixed
648
836
 
649
- - Fix Rack http_server.queue spans missing from distributed traces (#709)
837
+ - Fix Rack http_server.queue spans missing from distributed traces ([#709][])
650
838
 
651
839
  ### Refactored
652
840
 
653
- - Refactor MongoDB to use instrumentation module (#704)
654
- - Refactor HTTP to use instrumentation module (#703)
655
- - Deprecate GRPC global pin in favor of configuration API (#702)
656
- - Deprecate Grape pin in favor of configuration API (#700)
657
- - Deprecate Faraday pin in favor of configuration API (#696)
658
- - Deprecate Dalli pin in favor of configuration API (#693)
841
+ - Refactor MongoDB to use instrumentation module ([#704][])
842
+ - Refactor HTTP to use instrumentation module ([#703][])
843
+ - Deprecate GRPC global pin in favor of configuration API ([#702][])
844
+ - Deprecate Grape pin in favor of configuration API ([#700][])
845
+ - Deprecate Faraday pin in favor of configuration API ([#696][])
846
+ - Deprecate Dalli pin in favor of configuration API ([#693][])
659
847
 
660
848
  ## [0.19.1] - 2019-02-07
661
849
 
@@ -665,11 +853,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.19.0...v0.19.1
665
853
 
666
854
  ### Added
667
855
 
668
- - Documentation for Lograge implementation (#683, #687) (@nic-lan)
856
+ - Documentation for Lograge implementation ([#683][], [#687][]) ([@nic-lan][])
669
857
 
670
858
  ### Fixed
671
859
 
672
- - Priority sampling dropping spans (#686)
860
+ - Priority sampling dropping spans ([#686][])
673
861
 
674
862
  ## [0.19.0] - 2019-01-22
675
863
 
@@ -679,12 +867,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.3...v0.19.0
679
867
 
680
868
  ### Added
681
869
 
682
- - Tracer#active_correlation for adding correlation IDs to logs. (#660, #664, #673)
683
- - Opt-in support for `event_sample_rate` tag for some integrations. (#665, #666)
870
+ - Tracer#active_correlation for adding correlation IDs to logs. ([#660][], [#664][], [#673][])
871
+ - Opt-in support for `event_sample_rate` tag for some integrations. ([#665][], [#666][])
684
872
 
685
873
  ### Changed
686
874
 
687
- - Priority sampling enabled by default. (#654)
875
+ - Priority sampling enabled by default. ([#654][])
688
876
 
689
877
  ## [0.18.3] - 2019-01-17
690
878
 
@@ -694,9 +882,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.2...v0.18.3
694
882
 
695
883
  ### Fixed
696
884
 
697
- - Mongo `NoMethodError` when no span available during `#failed`. (#674, #675) (@Azure7111)
698
- - Rack deprecation warnings firing with some 3rd party libraries present. (#672)
699
- - Shoryuken resource name when used with ActiveJob. (#671) (@aurelian)
885
+ - Mongo `NoMethodError` when no span available during `#failed`. ([#674][], [#675][]) ([@Azure7111][])
886
+ - Rack deprecation warnings firing with some 3rd party libraries present. ([#672][])
887
+ - Shoryuken resource name when used with ActiveJob. ([#671][]) ([@aurelian][])
700
888
 
701
889
  ## [0.18.2] - 2019-01-03
702
890
 
@@ -706,8 +894,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.1...v0.18.2
706
894
 
707
895
  ### Fixed
708
896
 
709
- - Unfinished Mongo spans when SASL configured (#658) (@zachmccormick)
710
- - Possible performance issue with unexpanded Rails cache keys (#630, #635) (@gingerlime)
897
+ - Unfinished Mongo spans when SASL configured ([#658][]) ([@zachmccormick][])
898
+ - Possible performance issue with unexpanded Rails cache keys ([#630][], [#635][]) ([@gingerlime][])
711
899
 
712
900
  ## [0.18.1] - 2018-12-20
713
901
 
@@ -717,7 +905,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.0...v0.18.1
717
905
 
718
906
  ### Fixed
719
907
 
720
- - ActiveRecord `SystemStackError` with some 3rd party libraries (#661, #662) (@EpiFouloux, @tjgrathwell, @guizmaii)
908
+ - ActiveRecord `SystemStackError` with some 3rd party libraries ([#661][], [#662][]) ([@EpiFouloux][], [@tjgrathwell][], [@guizmaii][])
721
909
 
722
910
  ## [0.18.0] - 2018-12-18
723
911
 
@@ -727,15 +915,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...v0.18.0
727
915
 
728
916
  ### Added
729
917
 
730
- - Shoryuken integration (#538, #626, #655) (@steveh, @JustSnow)
731
- - Sidekiq client integration (#602, #650) (@dirk)
732
- - Datadog::Shim for adding instrumentation (#648)
918
+ - Shoryuken integration ([#538][], [#626][], [#655][]) ([@steveh][], [@JustSnow][])
919
+ - Sidekiq client integration ([#602][], [#650][]) ([@dirk][])
920
+ - Datadog::Shim for adding instrumentation ([#648][])
733
921
 
734
922
  ### Changed
735
923
 
736
- - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available (#631)
737
- - Inject `:connection` into `sql.active_record` event (#640, #649, #656) (@guizmaii)
738
- - Return default configuration instead of `nil` on miss (#651)
924
+ - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available ([#631][])
925
+ - Inject `:connection` into `sql.active_record` event ([#640][], [#649][], [#656][]) ([@guizmaii][])
926
+ - Return default configuration instead of `nil` on miss ([#651][])
739
927
 
740
928
  ## [0.17.3] - 2018-11-29
741
929
 
@@ -745,9 +933,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
745
933
 
746
934
  ### Fixed
747
935
 
748
- - Bad resource names for Grape::API objects in Grape 1.2.0 (#639)
749
- - RestClient raising NoMethodError when response is `nil` (#636, #642) (@frsantos)
750
- - Rack middleware inserted twice in some Rails applications (#641)
936
+ - Bad resource names for Grape::API objects in Grape 1.2.0 ([#639][])
937
+ - RestClient raising NoMethodError when response is `nil` ([#636][], [#642][]) ([@frsantos][])
938
+ - Rack middleware inserted twice in some Rails applications ([#641][])
751
939
 
752
940
  ## [0.17.2] - 2018-11-23
753
941
 
@@ -757,7 +945,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...v0.17.2
757
945
 
758
946
  ### Fixed
759
947
 
760
- - Resque integration shutting down tracer when forking is disabled (#637)
948
+ - Resque integration shutting down tracer when forking is disabled ([#637][])
761
949
 
762
950
  ## [0.17.1] - 2018-11-07
763
951
 
@@ -767,8 +955,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.0...v0.17.1
767
955
 
768
956
  ### Fixed
769
957
 
770
- - RestClient incorrect app type (#583) (@gaborszakacs)
771
- - DelayedJob incorrect job name when used with ActiveJob (#605) (@agirlnamedsophia)
958
+ - RestClient incorrect app type ([#583][]) ([@gaborszakacs][])
959
+ - DelayedJob incorrect job name when used with ActiveJob ([#605][]) ([@agirlnamedsophia][])
772
960
 
773
961
  ## [0.17.0] - 2018-10-30
774
962
 
@@ -778,18 +966,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.1...v0.17.0
778
966
 
779
967
  ### Added
780
968
 
781
- - [BETA] Span memory `allocations` attribute (#597) (@dasch)
969
+ - [BETA] Span memory `allocations` attribute ([#597][]) ([@dasch][])
782
970
 
783
971
  ### Changed
784
972
 
785
- - Use Rack Env to update resource in Rails (#580) (@dasch)
786
- - Expand support for Sidekiq to 3.5.4+ (#593)
787
- - Expand support for mysql2 to 0.3.21+ (#578)
973
+ - Use Rack Env to update resource in Rails ([#580][]) ([@dasch][])
974
+ - Expand support for Sidekiq to 3.5.4+ ([#593][])
975
+ - Expand support for mysql2 to 0.3.21+ ([#578][])
788
976
 
789
977
  ### Refactored
790
978
 
791
- - Upgraded integrations to new API (#544)
792
- - Encoding classes into modules (#598)
979
+ - Upgraded integrations to new API ([#544][])
980
+ - Encoding classes into modules ([#598][])
793
981
 
794
982
  ## [0.16.1] - 2018-10-17
795
983
 
@@ -799,8 +987,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.0...v0.16.1
799
987
 
800
988
  ### Fixed
801
989
 
802
- - Priority sampling response being mishandled (#591)
803
- - HTTP open timeout to agent too long (#582)
990
+ - Priority sampling response being mishandled ([#591][])
991
+ - HTTP open timeout to agent too long ([#582][])
804
992
 
805
993
  ## [0.16.0] - 2018-09-18
806
994
 
@@ -810,8 +998,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.15.0...v0.16.0
810
998
 
811
999
  ### Added
812
1000
 
813
- - OpenTracing support (#517)
814
- - `middleware` option for disabling Rails trace middleware. (#552)
1001
+ - OpenTracing support ([#517][])
1002
+ - `middleware` option for disabling Rails trace middleware. ([#552][])
815
1003
 
816
1004
  ## [0.15.0] - 2018-09-12
817
1005
 
@@ -821,13 +1009,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.2...v0.15.0
821
1009
 
822
1010
  ### Added
823
1011
 
824
- - Rails 5.2 support (#535)
825
- - Context propagation support for `Concurrent::Future` (#415, #496)
1012
+ - Rails 5.2 support ([#535][])
1013
+ - Context propagation support for `Concurrent::Future` ([#415][], [#496][])
826
1014
 
827
1015
  ### Fixed
828
1016
 
829
- - Grape uninitialized constant TraceMiddleware (#525, #533) (@dim)
830
- - Signed integer trace and span IDs being discarded in distributed traces (#530) (@alloy)
1017
+ - Grape uninitialized constant TraceMiddleware ([#525][], [#533][]) ([@dim][])
1018
+ - Signed integer trace and span IDs being discarded in distributed traces ([#530][]) ([@alloy][])
831
1019
 
832
1020
  ## [0.14.2] - 2018-08-23
833
1021
 
@@ -837,7 +1025,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.1...v0.14.2
837
1025
 
838
1026
  ### Fixed
839
1027
 
840
- - Sampling priority from request headers not being used (#521)
1028
+ - Sampling priority from request headers not being used ([#521][])
841
1029
 
842
1030
  ## [0.14.1] - 2018-08-21
843
1031
 
@@ -847,11 +1035,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0...v0.14.1
847
1035
 
848
1036
  ### Changed
849
1037
 
850
- - Reduce verbosity of connection errors in log (#515)
1038
+ - Reduce verbosity of connection errors in log ([#515][])
851
1039
 
852
1040
  ### Fixed
853
1041
 
854
- - Sequel 'not a valid integration' error (#514, #516) (@steveh)
1042
+ - Sequel 'not a valid integration' error ([#514][], [#516][]) ([@steveh][])
855
1043
 
856
1044
  ## [0.14.0] - 2018-08-14
857
1045
 
@@ -861,22 +1049,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.2...v0.14.0
861
1049
 
862
1050
  ### Added
863
1051
 
864
- - RestClient integration (#422, #460)
865
- - DelayedJob integration (#393 #444)
866
- - Version information to integrations (#483)
867
- - Tracer#active_root_span helper (#503)
1052
+ - RestClient integration ([#422][], [#460][])
1053
+ - DelayedJob integration ([#393][] [#444][])
1054
+ - Version information to integrations ([#483][])
1055
+ - Tracer#active_root_span helper ([#503][])
868
1056
 
869
1057
  ### Changed
870
1058
 
871
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
872
- - ActiveRecord to allow configuring multiple databases (#451)
873
- - Integrations configuration settings (#450, #452, #451)
1059
+ - Resque to flush traces when Job finishes instead of using SyncWriter ([#474][])
1060
+ - ActiveRecord to allow configuring multiple databases ([#451][])
1061
+ - Integrations configuration settings ([#450][], [#452][], [#451][])
874
1062
 
875
1063
  ### Fixed
876
1064
 
877
- - Context propagation for distributed traces when context is full (#502)
878
- - Rake shutdown tracer after execution (#487) (@kissrobber)
879
- - Deprecation warnings fired using Unicorn (#508)
1065
+ - Context propagation for distributed traces when context is full ([#502][])
1066
+ - Rake shutdown tracer after execution ([#487][]) ([@kissrobber][])
1067
+ - Deprecation warnings fired using Unicorn ([#508][])
880
1068
 
881
1069
  ## [0.14.0.rc1] - 2018-08-08
882
1070
 
@@ -886,12 +1074,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta2...v0.14.0
886
1074
 
887
1075
  ### Added
888
1076
 
889
- - RestClient integration (#422, #460)
890
- - Tracer#active_root_span helper (#503)
1077
+ - RestClient integration ([#422][], [#460][])
1078
+ - Tracer#active_root_span helper ([#503][])
891
1079
 
892
1080
  ### Fixed
893
1081
 
894
- - Context propagation for distributed traces when context is full (#502)
1082
+ - Context propagation for distributed traces when context is full ([#502][])
895
1083
 
896
1084
  ## [0.14.0.beta2] - 2018-07-25
897
1085
 
@@ -901,7 +1089,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta1...v0.14.0
901
1089
 
902
1090
  ### Fixed
903
1091
 
904
- - Rake shutdown tracer after execution (#487) @kissrobber
1092
+ - Rake shutdown tracer after execution ([#487][]) [@kissrobber][]
905
1093
 
906
1094
  ## [0.14.0.beta1] - 2018-07-24
907
1095
 
@@ -911,19 +1099,19 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.14.0.beta1
911
1099
 
912
1100
  ### Changed
913
1101
 
914
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
915
- - ActiveRecord to allow configuring multiple databases (#451)
916
- - Integrations configuration settings (#450, #452, #451)
1102
+ - Resque to flush traces when Job finishes instead of using SyncWriter ([#474][])
1103
+ - ActiveRecord to allow configuring multiple databases ([#451][])
1104
+ - Integrations configuration settings ([#450][], [#452][], [#451][])
917
1105
 
918
1106
  ### Fixed
919
1107
 
920
- - Ruby warnings during tests (#499)
921
- - Tests failing intermittently on Ruby 1.9.3 (#497)
1108
+ - Ruby warnings during tests ([#499][])
1109
+ - Tests failing intermittently on Ruby 1.9.3 ([#497][])
922
1110
 
923
1111
  ### Added
924
1112
 
925
- - DelayedJob integration (#393 #444)
926
- - Version information to integrations (#483)
1113
+ - DelayedJob integration ([#393][] [#444][])
1114
+ - Version information to integrations ([#483][])
927
1115
 
928
1116
  ## [0.13.2] - 2018-08-07
929
1117
 
@@ -933,7 +1121,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.13.2
933
1121
 
934
1122
  ### Fixed
935
1123
 
936
- - Context propagation for distributed traces when context is full (#502)
1124
+ - Context propagation for distributed traces when context is full ([#502][])
937
1125
 
938
1126
  ## [0.13.1] - 2018-07-17
939
1127
 
@@ -943,15 +1131,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.13.1
943
1131
 
944
1132
  ### Changed
945
1133
 
946
- - Configuration class variables don't lazy load (#477)
947
- - Default tracer host `localhost` --> `127.0.0.1` (#466, #480) (@NobodysNightmare)
1134
+ - Configuration class variables don't lazy load ([#477][])
1135
+ - Default tracer host `localhost` --> `127.0.0.1` ([#466][], [#480][]) ([@NobodysNightmare][])
948
1136
 
949
1137
  ### Fixed
950
1138
 
951
- - Workers not shutting down quickly in some short running processes (#475)
952
- - Missing documentation for mysql2 and Rails (#476, #488)
953
- - Missing variable in rescue block (#481) (@kitop)
954
- - Unclosed spans in ActiveSupport::Notifications with multithreading (#431, #478) (@senny)
1139
+ - Workers not shutting down quickly in some short running processes ([#475][])
1140
+ - Missing documentation for mysql2 and Rails ([#476][], [#488][])
1141
+ - Missing variable in rescue block ([#481][]) ([@kitop][])
1142
+ - Unclosed spans in ActiveSupport::Notifications with multithreading ([#431][], [#478][]) ([@senny][])
955
1143
 
956
1144
  ## [0.13.0] - 2018-06-20
957
1145
 
@@ -961,31 +1149,31 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.1...v0.13.0
961
1149
 
962
1150
  ### Added
963
1151
 
964
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
965
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
966
- - ActiveModelSerializers integration (#340) (@sullimander)
967
- - Excon integration (#211, #426) (@walterking, @jeffjo)
968
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
969
- - Request queuing tracing to Rack (experimental) (#272)
970
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
971
- - Request and response header tags to Rack (#389)
972
- - Request and response header tags to Sinatra (#427, #375)
973
- - MySQL2 integration (#453) (@jamiehodge)
974
- - Sidekiq job delay tag (#443, #418) (@gottfrois)
1152
+ - Sequel integration (supporting Ruby 2.0+) ([#171][], [#367][]) ([@randy-girard][], [@twe4ked][], [@palin][])
1153
+ - gRPC integration (supporting Ruby 2.2+) ([#379][], [#403][]) ([@Jared-Prime][])
1154
+ - ActiveModelSerializers integration ([#340][]) ([@sullimander][])
1155
+ - Excon integration ([#211][], [#426][]) ([@walterking][], [@jeffjo][])
1156
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) ([#409][])
1157
+ - Request queuing tracing to Rack (experimental) ([#272][])
1158
+ - ActiveSupport::Notifications::Event helper for event tracing ([#400][])
1159
+ - Request and response header tags to Rack ([#389][])
1160
+ - Request and response header tags to Sinatra ([#427][], [#375][])
1161
+ - MySQL2 integration ([#453][]) ([@jamiehodge][])
1162
+ - Sidekiq job delay tag ([#443][], [#418][]) ([@gottfrois][])
975
1163
 
976
1164
  ### Fixed
977
1165
 
978
- - Elasticsearch quantization of ids (#458)
979
- - MongoDB to allow quantization of collection name (#463)
1166
+ - Elasticsearch quantization of ids ([#458][])
1167
+ - MongoDB to allow quantization of collection name ([#463][])
980
1168
 
981
1169
  ### Refactored
982
1170
 
983
- - Hash quantization into core library (#410)
984
- - MongoDB integration to use Hash quantization library (#463)
1171
+ - Hash quantization into core library ([#410][])
1172
+ - MongoDB integration to use Hash quantization library ([#463][])
985
1173
 
986
1174
  ### Changed
987
1175
 
988
- - Hash quantization truncates arrays with nested objects (#463)
1176
+ - Hash quantization truncates arrays with nested objects ([#463][])
989
1177
 
990
1178
  ## [0.13.0.beta1] - 2018-05-09
991
1179
 
@@ -995,18 +1183,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.13.0.beta1
995
1183
 
996
1184
  ### Added
997
1185
 
998
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
999
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
1000
- - ActiveModelSerializers integration (#340) (@sullimander)
1001
- - Excon integration (#211) (@walterking)
1002
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
1003
- - Request queuing tracing to Rack (experimental) (#272)
1004
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
1005
- - Request and response header tags to Rack (#389)
1186
+ - Sequel integration (supporting Ruby 2.0+) ([#171][], [#367][]) ([@randy-girard][], [@twe4ked][], [@palin][])
1187
+ - gRPC integration (supporting Ruby 2.2+) ([#379][], [#403][]) ([@Jared-Prime][])
1188
+ - ActiveModelSerializers integration ([#340][]) ([@sullimander][])
1189
+ - Excon integration ([#211][]) ([@walterking][])
1190
+ - Rake integration (supporting Ruby 2.0+, Rake 12.0+) ([#409][])
1191
+ - Request queuing tracing to Rack (experimental) ([#272][])
1192
+ - ActiveSupport::Notifications::Event helper for event tracing ([#400][])
1193
+ - Request and response header tags to Rack ([#389][])
1006
1194
 
1007
1195
  ### Refactored
1008
1196
 
1009
- - Hash quantization into core library (#410)
1197
+ - Hash quantization into core library ([#410][])
1010
1198
 
1011
1199
  ## [0.12.1] - 2018-06-12
1012
1200
 
@@ -1016,22 +1204,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.12.1
1016
1204
 
1017
1205
  ### Changed
1018
1206
 
1019
- - Cache configuration `Proxy` objects (#446)
1020
- - `freeze` more constant strings, to improve memory usage (#446)
1021
- - `Utils#truncate` to use slightly less memory (#446)
1207
+ - Cache configuration `Proxy` objects ([#446][])
1208
+ - `freeze` more constant strings, to improve memory usage ([#446][])
1209
+ - `Utils#truncate` to use slightly less memory ([#446][])
1022
1210
 
1023
1211
  ### Fixed
1024
1212
 
1025
- - Net/HTTP integration not permitting `service_name` to be overridden. (#407, #430) (@undergroundwebdesigns)
1026
- - Block not being passed through Elasticsearch client initialization. (#421) (@shayonj)
1027
- - Devise raising `NoMethodError` when bad login attempts are made. (#419, #420) (@frsantos)
1028
- - AWS spans using wrong resource name (#374, #377) (@jfrancoist)
1029
- - ActionView `NoMethodError` on very long traces. (#445, #447) (@jvalanen)
1213
+ - Net/HTTP integration not permitting `service_name` to be overridden. ([#407][], [#430][]) ([@undergroundwebdesigns][])
1214
+ - Block not being passed through Elasticsearch client initialization. ([#421][]) ([@shayonj][])
1215
+ - Devise raising `NoMethodError` when bad login attempts are made. ([#419][], [#420][]) ([@frsantos][])
1216
+ - AWS spans using wrong resource name ([#374][], [#377][]) ([@jfrancoist][])
1217
+ - ActionView `NoMethodError` on very long traces. ([#445][], [#447][]) ([@jvalanen][])
1030
1218
 
1031
1219
  ### Refactored
1032
1220
 
1033
- - ActionController patching strategy using modules. (#439)
1034
- - ActionView tracing strategy. (#445, #447)
1221
+ - ActionController patching strategy using modules. ([#439][])
1222
+ - ActionView tracing strategy. ([#445][], [#447][])
1035
1223
 
1036
1224
  ## [0.12.0] - 2018-05-08
1037
1225
 
@@ -1041,34 +1229,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0
1041
1229
 
1042
1230
  ### Added
1043
1231
 
1044
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1045
- - ActiveRecord object instantiation tracing (#311, #334)
1046
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
1047
- - HTTP quantization module (#384)
1048
- - Partial flushing option to tracer (#247, #397)
1232
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
1233
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
1234
+ - Subscriber module for ActiveSupport::Notifications tracing ([#324][], [#380][], [#390][], [#395][]) ([@dasch][])
1235
+ - HTTP quantization module ([#384][])
1236
+ - Partial flushing option to tracer ([#247][], [#397][])
1049
1237
 
1050
1238
  ### Changed
1051
1239
 
1052
- - Rack applies URL quantization by default (#371)
1053
- - Elasticsearch applies body quantization by default (#362)
1054
- - Context for a single trace now has hard limit of 100,000 spans (#247)
1055
- - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
1240
+ - Rack applies URL quantization by default ([#371][])
1241
+ - Elasticsearch applies body quantization by default ([#362][])
1242
+ - Context for a single trace now has hard limit of 100,000 spans ([#247][])
1243
+ - Tags with `rails.db.x` to `active_record.db.x` instead ([#396][])
1056
1244
 
1057
1245
  ### Fixed
1058
1246
 
1059
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1060
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
1061
- - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
1247
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1248
+ - Some scenarios where `middleware_names` could result in bad resource names ([#354][])
1249
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails ([#391][])
1062
1250
 
1063
1251
  ### Deprecated
1064
1252
 
1065
- - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
1253
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. ([#365][], [#392][])
1066
1254
 
1067
1255
  ### Refactored
1068
1256
 
1069
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
1070
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
1071
- - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
1257
+ - Racecar to use ActiveSupport::Notifications Subscriber module ([#381][])
1258
+ - Rails to use ActiveRecord integration instead of its own implementation ([#396][])
1259
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module ([#396][])
1072
1260
 
1073
1261
  ## [0.12.0.rc1] - 2018-04-11
1074
1262
 
@@ -1078,34 +1266,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0.rc1
1078
1266
 
1079
1267
  ### Added
1080
1268
 
1081
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1082
- - ActiveRecord object instantiation tracing (#311, #334)
1083
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
1084
- - HTTP quantization module (#384)
1085
- - Partial flushing option to tracer (#247, #397)
1269
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
1270
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
1271
+ - Subscriber module for ActiveSupport::Notifications tracing ([#324][], [#380][], [#390][], [#395][]) ([@dasch][])
1272
+ - HTTP quantization module ([#384][])
1273
+ - Partial flushing option to tracer ([#247][], [#397][])
1086
1274
 
1087
1275
  ### Changed
1088
1276
 
1089
- - Rack applies URL quantization by default (#371)
1090
- - Elasticsearch applies body quantization by default (#362)
1091
- - Context for a single trace now has hard limit of 100,000 spans (#247)
1092
- - Tags with `rails.db.x` to `active_record.db.x` instead (#396)
1277
+ - Rack applies URL quantization by default ([#371][])
1278
+ - Elasticsearch applies body quantization by default ([#362][])
1279
+ - Context for a single trace now has hard limit of 100,000 spans ([#247][])
1280
+ - Tags with `rails.db.x` to `active_record.db.x` instead ([#396][])
1093
1281
 
1094
1282
  ### Fixed
1095
1283
 
1096
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1097
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
1098
- - ActionController instrumentation conflicting with some gems that monkey patch Rails (#391)
1284
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1285
+ - Some scenarios where `middleware_names` could result in bad resource names ([#354][])
1286
+ - ActionController instrumentation conflicting with some gems that monkey patch Rails ([#391][])
1099
1287
 
1100
1288
  ### Deprecated
1101
1289
 
1102
- - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. (#365, #392)
1290
+ - Use of `:datadog_rack_request_span` variable in favor of `'datadog.rack_request_span'` in Rack. ([#365][], [#392][])
1103
1291
 
1104
1292
  ### Refactored
1105
1293
 
1106
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
1107
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
1108
- - ActiveRecord to use ActiveSupport::Notifications Subscriber module (#396)
1294
+ - Racecar to use ActiveSupport::Notifications Subscriber module ([#381][])
1295
+ - Rails to use ActiveRecord integration instead of its own implementation ([#396][])
1296
+ - ActiveRecord to use ActiveSupport::Notifications Subscriber module ([#396][])
1109
1297
 
1110
1298
  ## [0.12.0.beta2] - 2018-02-28
1111
1299
 
@@ -1115,7 +1303,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0.beta1...v0.12.0
1115
1303
 
1116
1304
  ### Fixed
1117
1305
 
1118
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1306
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1119
1307
 
1120
1308
  ## [0.12.0.beta1] - 2018-02-09
1121
1309
 
@@ -1125,9 +1313,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.12.0.beta1
1125
1313
 
1126
1314
  ### Added
1127
1315
 
1128
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1129
- - ActiveRecord object instantiation tracing (#311, #334)
1130
- - `http.request_id` tag to Rack spans (#335)
1316
+ - GraphQL integration (supporting graphql 1.7.9+) ([#295][])
1317
+ - ActiveRecord object instantiation tracing ([#311][], [#334][])
1318
+ - `http.request_id` tag to Rack spans ([#335][])
1131
1319
 
1132
1320
  ## [0.11.4] - 2018-03-29
1133
1321
 
@@ -1137,9 +1325,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.3...v0.11.4
1137
1325
 
1138
1326
  ### Fixed
1139
1327
 
1140
- - Transport body parsing when downgrading (#369)
1141
- - Transport incorrectly attempting to apply sampling to service metadata (#370)
1142
- - `sql.active_record` traces showing incorrect adapter settings when non-default adapter used (#383)
1328
+ - Transport body parsing when downgrading ([#369][])
1329
+ - Transport incorrectly attempting to apply sampling to service metadata ([#370][])
1330
+ - `sql.active_record` traces showing incorrect adapter settings when non-default adapter used ([#383][])
1143
1331
 
1144
1332
  ## [0.11.3] - 2018-03-06
1145
1333
 
@@ -1149,20 +1337,20 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.11.3
1149
1337
 
1150
1338
  ### Added
1151
1339
 
1152
- - CHANGELOG.md (#350, #363) (@awendt)
1153
- - `http.request_id` tag to Rack spans (#335)
1154
- - Tracer configuration to README.md (#332) (@noma4i)
1340
+ - CHANGELOG.md ([#350][], [#363][]) ([@awendt][])
1341
+ - `http.request_id` tag to Rack spans ([#335][])
1342
+ - Tracer configuration to README.md ([#332][]) ([@noma4i][])
1155
1343
 
1156
1344
  ### Fixed
1157
1345
 
1158
- - Extra indentation in README.md (#349) (@ck3g)
1159
- - `http.url` when Rails raises exceptions (#351, #353)
1160
- - Rails from being patched twice (#352)
1161
- - 4XX responses from middleware being marked as errors (#345)
1162
- - Rails exception middleware sometimes not being inserted at correct position (#345)
1163
- - Processing pipeline documentation typo (#355) (@MMartyn)
1164
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1165
- - Use of block syntax with Rails `render` not working (#359, #360) (@dorner)
1346
+ - Extra indentation in README.md ([#349][]) ([@ck3g][])
1347
+ - `http.url` when Rails raises exceptions ([#351][], [#353][])
1348
+ - Rails from being patched twice ([#352][])
1349
+ - 4XX responses from middleware being marked as errors ([#345][])
1350
+ - Rails exception middleware sometimes not being inserted at correct position ([#345][])
1351
+ - Processing pipeline documentation typo ([#355][]) ([@MMartyn][])
1352
+ - Loading the ddtrace library after Rails has fully initialized can result in load errors. ([#357][])
1353
+ - Use of block syntax with Rails `render` not working ([#359][], [#360][]) ([@dorner][])
1166
1354
 
1167
1355
  ## [0.11.2] - 2018-02-02
1168
1356
 
@@ -1184,23 +1372,23 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0...v0.11.1
1184
1372
 
1185
1373
  ### Added
1186
1374
 
1187
- - `http.base_url` tag for Rack applications (#301, #327)
1188
- - `distributed_tracing` option to Sinatra (#325)
1189
- - `exception_controller` option to Rails (#320)
1375
+ - `http.base_url` tag for Rack applications ([#301][], [#327][])
1376
+ - `distributed_tracing` option to Sinatra ([#325][])
1377
+ - `exception_controller` option to Rails ([#320][])
1190
1378
 
1191
1379
  ### Changed
1192
1380
 
1193
- - Decoupled Sinatra and ActiveRecord integrations (#328, #330) (@hawknewton)
1194
- - Racecar uses preferred ActiveSupport::Notifications strategy (#323)
1381
+ - Decoupled Sinatra and ActiveRecord integrations ([#328][], [#330][]) ([@hawknewton][])
1382
+ - Racecar uses preferred ActiveSupport::Notifications strategy ([#323][])
1195
1383
 
1196
1384
  ### Removed
1197
1385
 
1198
- - `Datadog::Monkey` in favor of newer configuration API (#322)
1386
+ - `Datadog::Monkey` in favor of newer configuration API ([#322][])
1199
1387
 
1200
1388
  ### Fixed
1201
1389
 
1202
- - Custom resource names from Rails controllers being overridden (#321)
1203
- - Custom Rails exception controllers reporting as the resource (#320)
1390
+ - Custom resource names from Rails controllers being overridden ([#321][])
1391
+ - Custom Rails exception controllers reporting as the resource ([#320][])
1204
1392
 
1205
1393
  ## [0.11.0] - 2018-01-17
1206
1394
 
@@ -1334,7 +1522,11 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
1334
1522
 
1335
1523
  Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1336
1524
 
1337
- [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...master
1525
+ [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v0.41.0...master
1526
+ [0.44.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.43.0...v0.44.0
1527
+ [0.43.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.42.0...v0.43.0
1528
+ [0.41.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
1529
+ [0.40.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
1338
1530
  [0.39.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
1339
1531
  [0.38.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
1340
1532
  [0.37.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
@@ -1430,3 +1622,601 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1430
1622
  [0.1.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.2...v0.1.3
1431
1623
  [0.1.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.1...v0.1.2
1432
1624
  [0.1.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.0...v0.1.1
1625
+
1626
+ <!--- The following link definition list is generated by PimpMyChangelog --->
1627
+ [#132]: https://github.com/DataDog/dd-trace-rb/issues/132
1628
+ [#171]: https://github.com/DataDog/dd-trace-rb/issues/171
1629
+ [#211]: https://github.com/DataDog/dd-trace-rb/issues/211
1630
+ [#247]: https://github.com/DataDog/dd-trace-rb/issues/247
1631
+ [#272]: https://github.com/DataDog/dd-trace-rb/issues/272
1632
+ [#295]: https://github.com/DataDog/dd-trace-rb/issues/295
1633
+ [#301]: https://github.com/DataDog/dd-trace-rb/issues/301
1634
+ [#311]: https://github.com/DataDog/dd-trace-rb/issues/311
1635
+ [#320]: https://github.com/DataDog/dd-trace-rb/issues/320
1636
+ [#321]: https://github.com/DataDog/dd-trace-rb/issues/321
1637
+ [#322]: https://github.com/DataDog/dd-trace-rb/issues/322
1638
+ [#323]: https://github.com/DataDog/dd-trace-rb/issues/323
1639
+ [#324]: https://github.com/DataDog/dd-trace-rb/issues/324
1640
+ [#325]: https://github.com/DataDog/dd-trace-rb/issues/325
1641
+ [#327]: https://github.com/DataDog/dd-trace-rb/issues/327
1642
+ [#328]: https://github.com/DataDog/dd-trace-rb/issues/328
1643
+ [#330]: https://github.com/DataDog/dd-trace-rb/issues/330
1644
+ [#332]: https://github.com/DataDog/dd-trace-rb/issues/332
1645
+ [#334]: https://github.com/DataDog/dd-trace-rb/issues/334
1646
+ [#335]: https://github.com/DataDog/dd-trace-rb/issues/335
1647
+ [#340]: https://github.com/DataDog/dd-trace-rb/issues/340
1648
+ [#345]: https://github.com/DataDog/dd-trace-rb/issues/345
1649
+ [#349]: https://github.com/DataDog/dd-trace-rb/issues/349
1650
+ [#350]: https://github.com/DataDog/dd-trace-rb/issues/350
1651
+ [#351]: https://github.com/DataDog/dd-trace-rb/issues/351
1652
+ [#352]: https://github.com/DataDog/dd-trace-rb/issues/352
1653
+ [#353]: https://github.com/DataDog/dd-trace-rb/issues/353
1654
+ [#354]: https://github.com/DataDog/dd-trace-rb/issues/354
1655
+ [#355]: https://github.com/DataDog/dd-trace-rb/issues/355
1656
+ [#357]: https://github.com/DataDog/dd-trace-rb/issues/357
1657
+ [#359]: https://github.com/DataDog/dd-trace-rb/issues/359
1658
+ [#360]: https://github.com/DataDog/dd-trace-rb/issues/360
1659
+ [#362]: https://github.com/DataDog/dd-trace-rb/issues/362
1660
+ [#363]: https://github.com/DataDog/dd-trace-rb/issues/363
1661
+ [#365]: https://github.com/DataDog/dd-trace-rb/issues/365
1662
+ [#367]: https://github.com/DataDog/dd-trace-rb/issues/367
1663
+ [#369]: https://github.com/DataDog/dd-trace-rb/issues/369
1664
+ [#370]: https://github.com/DataDog/dd-trace-rb/issues/370
1665
+ [#371]: https://github.com/DataDog/dd-trace-rb/issues/371
1666
+ [#374]: https://github.com/DataDog/dd-trace-rb/issues/374
1667
+ [#375]: https://github.com/DataDog/dd-trace-rb/issues/375
1668
+ [#377]: https://github.com/DataDog/dd-trace-rb/issues/377
1669
+ [#379]: https://github.com/DataDog/dd-trace-rb/issues/379
1670
+ [#380]: https://github.com/DataDog/dd-trace-rb/issues/380
1671
+ [#381]: https://github.com/DataDog/dd-trace-rb/issues/381
1672
+ [#383]: https://github.com/DataDog/dd-trace-rb/issues/383
1673
+ [#384]: https://github.com/DataDog/dd-trace-rb/issues/384
1674
+ [#389]: https://github.com/DataDog/dd-trace-rb/issues/389
1675
+ [#390]: https://github.com/DataDog/dd-trace-rb/issues/390
1676
+ [#391]: https://github.com/DataDog/dd-trace-rb/issues/391
1677
+ [#392]: https://github.com/DataDog/dd-trace-rb/issues/392
1678
+ [#393]: https://github.com/DataDog/dd-trace-rb/issues/393
1679
+ [#395]: https://github.com/DataDog/dd-trace-rb/issues/395
1680
+ [#396]: https://github.com/DataDog/dd-trace-rb/issues/396
1681
+ [#397]: https://github.com/DataDog/dd-trace-rb/issues/397
1682
+ [#400]: https://github.com/DataDog/dd-trace-rb/issues/400
1683
+ [#403]: https://github.com/DataDog/dd-trace-rb/issues/403
1684
+ [#407]: https://github.com/DataDog/dd-trace-rb/issues/407
1685
+ [#409]: https://github.com/DataDog/dd-trace-rb/issues/409
1686
+ [#410]: https://github.com/DataDog/dd-trace-rb/issues/410
1687
+ [#415]: https://github.com/DataDog/dd-trace-rb/issues/415
1688
+ [#418]: https://github.com/DataDog/dd-trace-rb/issues/418
1689
+ [#419]: https://github.com/DataDog/dd-trace-rb/issues/419
1690
+ [#420]: https://github.com/DataDog/dd-trace-rb/issues/420
1691
+ [#421]: https://github.com/DataDog/dd-trace-rb/issues/421
1692
+ [#422]: https://github.com/DataDog/dd-trace-rb/issues/422
1693
+ [#424]: https://github.com/DataDog/dd-trace-rb/issues/424
1694
+ [#426]: https://github.com/DataDog/dd-trace-rb/issues/426
1695
+ [#427]: https://github.com/DataDog/dd-trace-rb/issues/427
1696
+ [#430]: https://github.com/DataDog/dd-trace-rb/issues/430
1697
+ [#431]: https://github.com/DataDog/dd-trace-rb/issues/431
1698
+ [#439]: https://github.com/DataDog/dd-trace-rb/issues/439
1699
+ [#443]: https://github.com/DataDog/dd-trace-rb/issues/443
1700
+ [#444]: https://github.com/DataDog/dd-trace-rb/issues/444
1701
+ [#445]: https://github.com/DataDog/dd-trace-rb/issues/445
1702
+ [#446]: https://github.com/DataDog/dd-trace-rb/issues/446
1703
+ [#447]: https://github.com/DataDog/dd-trace-rb/issues/447
1704
+ [#450]: https://github.com/DataDog/dd-trace-rb/issues/450
1705
+ [#451]: https://github.com/DataDog/dd-trace-rb/issues/451
1706
+ [#452]: https://github.com/DataDog/dd-trace-rb/issues/452
1707
+ [#453]: https://github.com/DataDog/dd-trace-rb/issues/453
1708
+ [#458]: https://github.com/DataDog/dd-trace-rb/issues/458
1709
+ [#460]: https://github.com/DataDog/dd-trace-rb/issues/460
1710
+ [#463]: https://github.com/DataDog/dd-trace-rb/issues/463
1711
+ [#466]: https://github.com/DataDog/dd-trace-rb/issues/466
1712
+ [#474]: https://github.com/DataDog/dd-trace-rb/issues/474
1713
+ [#475]: https://github.com/DataDog/dd-trace-rb/issues/475
1714
+ [#476]: https://github.com/DataDog/dd-trace-rb/issues/476
1715
+ [#477]: https://github.com/DataDog/dd-trace-rb/issues/477
1716
+ [#478]: https://github.com/DataDog/dd-trace-rb/issues/478
1717
+ [#480]: https://github.com/DataDog/dd-trace-rb/issues/480
1718
+ [#481]: https://github.com/DataDog/dd-trace-rb/issues/481
1719
+ [#483]: https://github.com/DataDog/dd-trace-rb/issues/483
1720
+ [#486]: https://github.com/DataDog/dd-trace-rb/issues/486
1721
+ [#487]: https://github.com/DataDog/dd-trace-rb/issues/487
1722
+ [#488]: https://github.com/DataDog/dd-trace-rb/issues/488
1723
+ [#496]: https://github.com/DataDog/dd-trace-rb/issues/496
1724
+ [#497]: https://github.com/DataDog/dd-trace-rb/issues/497
1725
+ [#499]: https://github.com/DataDog/dd-trace-rb/issues/499
1726
+ [#502]: https://github.com/DataDog/dd-trace-rb/issues/502
1727
+ [#503]: https://github.com/DataDog/dd-trace-rb/issues/503
1728
+ [#508]: https://github.com/DataDog/dd-trace-rb/issues/508
1729
+ [#514]: https://github.com/DataDog/dd-trace-rb/issues/514
1730
+ [#515]: https://github.com/DataDog/dd-trace-rb/issues/515
1731
+ [#516]: https://github.com/DataDog/dd-trace-rb/issues/516
1732
+ [#517]: https://github.com/DataDog/dd-trace-rb/issues/517
1733
+ [#521]: https://github.com/DataDog/dd-trace-rb/issues/521
1734
+ [#525]: https://github.com/DataDog/dd-trace-rb/issues/525
1735
+ [#527]: https://github.com/DataDog/dd-trace-rb/issues/527
1736
+ [#529]: https://github.com/DataDog/dd-trace-rb/issues/529
1737
+ [#530]: https://github.com/DataDog/dd-trace-rb/issues/530
1738
+ [#533]: https://github.com/DataDog/dd-trace-rb/issues/533
1739
+ [#535]: https://github.com/DataDog/dd-trace-rb/issues/535
1740
+ [#538]: https://github.com/DataDog/dd-trace-rb/issues/538
1741
+ [#544]: https://github.com/DataDog/dd-trace-rb/issues/544
1742
+ [#552]: https://github.com/DataDog/dd-trace-rb/issues/552
1743
+ [#578]: https://github.com/DataDog/dd-trace-rb/issues/578
1744
+ [#580]: https://github.com/DataDog/dd-trace-rb/issues/580
1745
+ [#582]: https://github.com/DataDog/dd-trace-rb/issues/582
1746
+ [#583]: https://github.com/DataDog/dd-trace-rb/issues/583
1747
+ [#591]: https://github.com/DataDog/dd-trace-rb/issues/591
1748
+ [#593]: https://github.com/DataDog/dd-trace-rb/issues/593
1749
+ [#597]: https://github.com/DataDog/dd-trace-rb/issues/597
1750
+ [#598]: https://github.com/DataDog/dd-trace-rb/issues/598
1751
+ [#602]: https://github.com/DataDog/dd-trace-rb/issues/602
1752
+ [#605]: https://github.com/DataDog/dd-trace-rb/issues/605
1753
+ [#626]: https://github.com/DataDog/dd-trace-rb/issues/626
1754
+ [#628]: https://github.com/DataDog/dd-trace-rb/issues/628
1755
+ [#630]: https://github.com/DataDog/dd-trace-rb/issues/630
1756
+ [#631]: https://github.com/DataDog/dd-trace-rb/issues/631
1757
+ [#635]: https://github.com/DataDog/dd-trace-rb/issues/635
1758
+ [#636]: https://github.com/DataDog/dd-trace-rb/issues/636
1759
+ [#637]: https://github.com/DataDog/dd-trace-rb/issues/637
1760
+ [#639]: https://github.com/DataDog/dd-trace-rb/issues/639
1761
+ [#640]: https://github.com/DataDog/dd-trace-rb/issues/640
1762
+ [#641]: https://github.com/DataDog/dd-trace-rb/issues/641
1763
+ [#642]: https://github.com/DataDog/dd-trace-rb/issues/642
1764
+ [#648]: https://github.com/DataDog/dd-trace-rb/issues/648
1765
+ [#649]: https://github.com/DataDog/dd-trace-rb/issues/649
1766
+ [#650]: https://github.com/DataDog/dd-trace-rb/issues/650
1767
+ [#651]: https://github.com/DataDog/dd-trace-rb/issues/651
1768
+ [#654]: https://github.com/DataDog/dd-trace-rb/issues/654
1769
+ [#655]: https://github.com/DataDog/dd-trace-rb/issues/655
1770
+ [#656]: https://github.com/DataDog/dd-trace-rb/issues/656
1771
+ [#658]: https://github.com/DataDog/dd-trace-rb/issues/658
1772
+ [#660]: https://github.com/DataDog/dd-trace-rb/issues/660
1773
+ [#661]: https://github.com/DataDog/dd-trace-rb/issues/661
1774
+ [#662]: https://github.com/DataDog/dd-trace-rb/issues/662
1775
+ [#664]: https://github.com/DataDog/dd-trace-rb/issues/664
1776
+ [#665]: https://github.com/DataDog/dd-trace-rb/issues/665
1777
+ [#666]: https://github.com/DataDog/dd-trace-rb/issues/666
1778
+ [#671]: https://github.com/DataDog/dd-trace-rb/issues/671
1779
+ [#672]: https://github.com/DataDog/dd-trace-rb/issues/672
1780
+ [#673]: https://github.com/DataDog/dd-trace-rb/issues/673
1781
+ [#674]: https://github.com/DataDog/dd-trace-rb/issues/674
1782
+ [#675]: https://github.com/DataDog/dd-trace-rb/issues/675
1783
+ [#677]: https://github.com/DataDog/dd-trace-rb/issues/677
1784
+ [#681]: https://github.com/DataDog/dd-trace-rb/issues/681
1785
+ [#683]: https://github.com/DataDog/dd-trace-rb/issues/683
1786
+ [#686]: https://github.com/DataDog/dd-trace-rb/issues/686
1787
+ [#687]: https://github.com/DataDog/dd-trace-rb/issues/687
1788
+ [#693]: https://github.com/DataDog/dd-trace-rb/issues/693
1789
+ [#696]: https://github.com/DataDog/dd-trace-rb/issues/696
1790
+ [#697]: https://github.com/DataDog/dd-trace-rb/issues/697
1791
+ [#699]: https://github.com/DataDog/dd-trace-rb/issues/699
1792
+ [#700]: https://github.com/DataDog/dd-trace-rb/issues/700
1793
+ [#701]: https://github.com/DataDog/dd-trace-rb/issues/701
1794
+ [#702]: https://github.com/DataDog/dd-trace-rb/issues/702
1795
+ [#703]: https://github.com/DataDog/dd-trace-rb/issues/703
1796
+ [#704]: https://github.com/DataDog/dd-trace-rb/issues/704
1797
+ [#707]: https://github.com/DataDog/dd-trace-rb/issues/707
1798
+ [#709]: https://github.com/DataDog/dd-trace-rb/issues/709
1799
+ [#714]: https://github.com/DataDog/dd-trace-rb/issues/714
1800
+ [#715]: https://github.com/DataDog/dd-trace-rb/issues/715
1801
+ [#716]: https://github.com/DataDog/dd-trace-rb/issues/716
1802
+ [#719]: https://github.com/DataDog/dd-trace-rb/issues/719
1803
+ [#720]: https://github.com/DataDog/dd-trace-rb/issues/720
1804
+ [#721]: https://github.com/DataDog/dd-trace-rb/issues/721
1805
+ [#722]: https://github.com/DataDog/dd-trace-rb/issues/722
1806
+ [#724]: https://github.com/DataDog/dd-trace-rb/issues/724
1807
+ [#728]: https://github.com/DataDog/dd-trace-rb/issues/728
1808
+ [#729]: https://github.com/DataDog/dd-trace-rb/issues/729
1809
+ [#731]: https://github.com/DataDog/dd-trace-rb/issues/731
1810
+ [#738]: https://github.com/DataDog/dd-trace-rb/issues/738
1811
+ [#739]: https://github.com/DataDog/dd-trace-rb/issues/739
1812
+ [#742]: https://github.com/DataDog/dd-trace-rb/issues/742
1813
+ [#747]: https://github.com/DataDog/dd-trace-rb/issues/747
1814
+ [#748]: https://github.com/DataDog/dd-trace-rb/issues/748
1815
+ [#750]: https://github.com/DataDog/dd-trace-rb/issues/750
1816
+ [#751]: https://github.com/DataDog/dd-trace-rb/issues/751
1817
+ [#752]: https://github.com/DataDog/dd-trace-rb/issues/752
1818
+ [#753]: https://github.com/DataDog/dd-trace-rb/issues/753
1819
+ [#754]: https://github.com/DataDog/dd-trace-rb/issues/754
1820
+ [#756]: https://github.com/DataDog/dd-trace-rb/issues/756
1821
+ [#760]: https://github.com/DataDog/dd-trace-rb/issues/760
1822
+ [#762]: https://github.com/DataDog/dd-trace-rb/issues/762
1823
+ [#765]: https://github.com/DataDog/dd-trace-rb/issues/765
1824
+ [#768]: https://github.com/DataDog/dd-trace-rb/issues/768
1825
+ [#770]: https://github.com/DataDog/dd-trace-rb/issues/770
1826
+ [#771]: https://github.com/DataDog/dd-trace-rb/issues/771
1827
+ [#775]: https://github.com/DataDog/dd-trace-rb/issues/775
1828
+ [#776]: https://github.com/DataDog/dd-trace-rb/issues/776
1829
+ [#778]: https://github.com/DataDog/dd-trace-rb/issues/778
1830
+ [#782]: https://github.com/DataDog/dd-trace-rb/issues/782
1831
+ [#784]: https://github.com/DataDog/dd-trace-rb/issues/784
1832
+ [#786]: https://github.com/DataDog/dd-trace-rb/issues/786
1833
+ [#789]: https://github.com/DataDog/dd-trace-rb/issues/789
1834
+ [#791]: https://github.com/DataDog/dd-trace-rb/issues/791
1835
+ [#795]: https://github.com/DataDog/dd-trace-rb/issues/795
1836
+ [#796]: https://github.com/DataDog/dd-trace-rb/issues/796
1837
+ [#798]: https://github.com/DataDog/dd-trace-rb/issues/798
1838
+ [#800]: https://github.com/DataDog/dd-trace-rb/issues/800
1839
+ [#802]: https://github.com/DataDog/dd-trace-rb/issues/802
1840
+ [#805]: https://github.com/DataDog/dd-trace-rb/issues/805
1841
+ [#811]: https://github.com/DataDog/dd-trace-rb/issues/811
1842
+ [#814]: https://github.com/DataDog/dd-trace-rb/issues/814
1843
+ [#815]: https://github.com/DataDog/dd-trace-rb/issues/815
1844
+ [#817]: https://github.com/DataDog/dd-trace-rb/issues/817
1845
+ [#818]: https://github.com/DataDog/dd-trace-rb/issues/818
1846
+ [#819]: https://github.com/DataDog/dd-trace-rb/issues/819
1847
+ [#821]: https://github.com/DataDog/dd-trace-rb/issues/821
1848
+ [#823]: https://github.com/DataDog/dd-trace-rb/issues/823
1849
+ [#824]: https://github.com/DataDog/dd-trace-rb/issues/824
1850
+ [#832]: https://github.com/DataDog/dd-trace-rb/issues/832
1851
+ [#838]: https://github.com/DataDog/dd-trace-rb/issues/838
1852
+ [#840]: https://github.com/DataDog/dd-trace-rb/issues/840
1853
+ [#841]: https://github.com/DataDog/dd-trace-rb/issues/841
1854
+ [#842]: https://github.com/DataDog/dd-trace-rb/issues/842
1855
+ [#843]: https://github.com/DataDog/dd-trace-rb/issues/843
1856
+ [#844]: https://github.com/DataDog/dd-trace-rb/issues/844
1857
+ [#845]: https://github.com/DataDog/dd-trace-rb/issues/845
1858
+ [#846]: https://github.com/DataDog/dd-trace-rb/issues/846
1859
+ [#847]: https://github.com/DataDog/dd-trace-rb/issues/847
1860
+ [#851]: https://github.com/DataDog/dd-trace-rb/issues/851
1861
+ [#853]: https://github.com/DataDog/dd-trace-rb/issues/853
1862
+ [#854]: https://github.com/DataDog/dd-trace-rb/issues/854
1863
+ [#855]: https://github.com/DataDog/dd-trace-rb/issues/855
1864
+ [#856]: https://github.com/DataDog/dd-trace-rb/issues/856
1865
+ [#859]: https://github.com/DataDog/dd-trace-rb/issues/859
1866
+ [#861]: https://github.com/DataDog/dd-trace-rb/issues/861
1867
+ [#865]: https://github.com/DataDog/dd-trace-rb/issues/865
1868
+ [#867]: https://github.com/DataDog/dd-trace-rb/issues/867
1869
+ [#868]: https://github.com/DataDog/dd-trace-rb/issues/868
1870
+ [#871]: https://github.com/DataDog/dd-trace-rb/issues/871
1871
+ [#872]: https://github.com/DataDog/dd-trace-rb/issues/872
1872
+ [#880]: https://github.com/DataDog/dd-trace-rb/issues/880
1873
+ [#881]: https://github.com/DataDog/dd-trace-rb/issues/881
1874
+ [#882]: https://github.com/DataDog/dd-trace-rb/issues/882
1875
+ [#883]: https://github.com/DataDog/dd-trace-rb/issues/883
1876
+ [#884]: https://github.com/DataDog/dd-trace-rb/issues/884
1877
+ [#885]: https://github.com/DataDog/dd-trace-rb/issues/885
1878
+ [#886]: https://github.com/DataDog/dd-trace-rb/issues/886
1879
+ [#888]: https://github.com/DataDog/dd-trace-rb/issues/888
1880
+ [#890]: https://github.com/DataDog/dd-trace-rb/issues/890
1881
+ [#891]: https://github.com/DataDog/dd-trace-rb/issues/891
1882
+ [#892]: https://github.com/DataDog/dd-trace-rb/issues/892
1883
+ [#893]: https://github.com/DataDog/dd-trace-rb/issues/893
1884
+ [#894]: https://github.com/DataDog/dd-trace-rb/issues/894
1885
+ [#895]: https://github.com/DataDog/dd-trace-rb/issues/895
1886
+ [#896]: https://github.com/DataDog/dd-trace-rb/issues/896
1887
+ [#898]: https://github.com/DataDog/dd-trace-rb/issues/898
1888
+ [#899]: https://github.com/DataDog/dd-trace-rb/issues/899
1889
+ [#900]: https://github.com/DataDog/dd-trace-rb/issues/900
1890
+ [#903]: https://github.com/DataDog/dd-trace-rb/issues/903
1891
+ [#904]: https://github.com/DataDog/dd-trace-rb/issues/904
1892
+ [#906]: https://github.com/DataDog/dd-trace-rb/issues/906
1893
+ [#907]: https://github.com/DataDog/dd-trace-rb/issues/907
1894
+ [#909]: https://github.com/DataDog/dd-trace-rb/issues/909
1895
+ [#910]: https://github.com/DataDog/dd-trace-rb/issues/910
1896
+ [#911]: https://github.com/DataDog/dd-trace-rb/issues/911
1897
+ [#912]: https://github.com/DataDog/dd-trace-rb/issues/912
1898
+ [#913]: https://github.com/DataDog/dd-trace-rb/issues/913
1899
+ [#914]: https://github.com/DataDog/dd-trace-rb/issues/914
1900
+ [#915]: https://github.com/DataDog/dd-trace-rb/issues/915
1901
+ [#917]: https://github.com/DataDog/dd-trace-rb/issues/917
1902
+ [#918]: https://github.com/DataDog/dd-trace-rb/issues/918
1903
+ [#919]: https://github.com/DataDog/dd-trace-rb/issues/919
1904
+ [#920]: https://github.com/DataDog/dd-trace-rb/issues/920
1905
+ [#921]: https://github.com/DataDog/dd-trace-rb/issues/921
1906
+ [#927]: https://github.com/DataDog/dd-trace-rb/issues/927
1907
+ [#928]: https://github.com/DataDog/dd-trace-rb/issues/928
1908
+ [#929]: https://github.com/DataDog/dd-trace-rb/issues/929
1909
+ [#930]: https://github.com/DataDog/dd-trace-rb/issues/930
1910
+ [#932]: https://github.com/DataDog/dd-trace-rb/issues/932
1911
+ [#933]: https://github.com/DataDog/dd-trace-rb/issues/933
1912
+ [#934]: https://github.com/DataDog/dd-trace-rb/issues/934
1913
+ [#935]: https://github.com/DataDog/dd-trace-rb/issues/935
1914
+ [#937]: https://github.com/DataDog/dd-trace-rb/issues/937
1915
+ [#938]: https://github.com/DataDog/dd-trace-rb/issues/938
1916
+ [#940]: https://github.com/DataDog/dd-trace-rb/issues/940
1917
+ [#942]: https://github.com/DataDog/dd-trace-rb/issues/942
1918
+ [#943]: https://github.com/DataDog/dd-trace-rb/issues/943
1919
+ [#944]: https://github.com/DataDog/dd-trace-rb/issues/944
1920
+ [#945]: https://github.com/DataDog/dd-trace-rb/issues/945
1921
+ [#947]: https://github.com/DataDog/dd-trace-rb/issues/947
1922
+ [#948]: https://github.com/DataDog/dd-trace-rb/issues/948
1923
+ [#949]: https://github.com/DataDog/dd-trace-rb/issues/949
1924
+ [#950]: https://github.com/DataDog/dd-trace-rb/issues/950
1925
+ [#951]: https://github.com/DataDog/dd-trace-rb/issues/951
1926
+ [#952]: https://github.com/DataDog/dd-trace-rb/issues/952
1927
+ [#953]: https://github.com/DataDog/dd-trace-rb/issues/953
1928
+ [#954]: https://github.com/DataDog/dd-trace-rb/issues/954
1929
+ [#955]: https://github.com/DataDog/dd-trace-rb/issues/955
1930
+ [#956]: https://github.com/DataDog/dd-trace-rb/issues/956
1931
+ [#957]: https://github.com/DataDog/dd-trace-rb/issues/957
1932
+ [#960]: https://github.com/DataDog/dd-trace-rb/issues/960
1933
+ [#961]: https://github.com/DataDog/dd-trace-rb/issues/961
1934
+ [#964]: https://github.com/DataDog/dd-trace-rb/issues/964
1935
+ [#965]: https://github.com/DataDog/dd-trace-rb/issues/965
1936
+ [#966]: https://github.com/DataDog/dd-trace-rb/issues/966
1937
+ [#967]: https://github.com/DataDog/dd-trace-rb/issues/967
1938
+ [#968]: https://github.com/DataDog/dd-trace-rb/issues/968
1939
+ [#969]: https://github.com/DataDog/dd-trace-rb/issues/969
1940
+ [#971]: https://github.com/DataDog/dd-trace-rb/issues/971
1941
+ [#972]: https://github.com/DataDog/dd-trace-rb/issues/972
1942
+ [#973]: https://github.com/DataDog/dd-trace-rb/issues/973
1943
+ [#974]: https://github.com/DataDog/dd-trace-rb/issues/974
1944
+ [#975]: https://github.com/DataDog/dd-trace-rb/issues/975
1945
+ [#977]: https://github.com/DataDog/dd-trace-rb/issues/977
1946
+ [#980]: https://github.com/DataDog/dd-trace-rb/issues/980
1947
+ [#981]: https://github.com/DataDog/dd-trace-rb/issues/981
1948
+ [#982]: https://github.com/DataDog/dd-trace-rb/issues/982
1949
+ [#983]: https://github.com/DataDog/dd-trace-rb/issues/983
1950
+ [#985]: https://github.com/DataDog/dd-trace-rb/issues/985
1951
+ [#986]: https://github.com/DataDog/dd-trace-rb/issues/986
1952
+ [#988]: https://github.com/DataDog/dd-trace-rb/issues/988
1953
+ [#989]: https://github.com/DataDog/dd-trace-rb/issues/989
1954
+ [#990]: https://github.com/DataDog/dd-trace-rb/issues/990
1955
+ [#991]: https://github.com/DataDog/dd-trace-rb/issues/991
1956
+ [#993]: https://github.com/DataDog/dd-trace-rb/issues/993
1957
+ [#995]: https://github.com/DataDog/dd-trace-rb/issues/995
1958
+ [#996]: https://github.com/DataDog/dd-trace-rb/issues/996
1959
+ [#997]: https://github.com/DataDog/dd-trace-rb/issues/997
1960
+ [#1000]: https://github.com/DataDog/dd-trace-rb/issues/1000
1961
+ [#1004]: https://github.com/DataDog/dd-trace-rb/issues/1004
1962
+ [#1005]: https://github.com/DataDog/dd-trace-rb/issues/1005
1963
+ [#1006]: https://github.com/DataDog/dd-trace-rb/issues/1006
1964
+ [#1008]: https://github.com/DataDog/dd-trace-rb/issues/1008
1965
+ [#1009]: https://github.com/DataDog/dd-trace-rb/issues/1009
1966
+ [#1010]: https://github.com/DataDog/dd-trace-rb/issues/1010
1967
+ [#1015]: https://github.com/DataDog/dd-trace-rb/issues/1015
1968
+ [#1021]: https://github.com/DataDog/dd-trace-rb/issues/1021
1969
+ [#1023]: https://github.com/DataDog/dd-trace-rb/issues/1023
1970
+ [#1027]: https://github.com/DataDog/dd-trace-rb/issues/1027
1971
+ [#1030]: https://github.com/DataDog/dd-trace-rb/issues/1030
1972
+ [#1031]: https://github.com/DataDog/dd-trace-rb/issues/1031
1973
+ [#1032]: https://github.com/DataDog/dd-trace-rb/issues/1032
1974
+ [#1033]: https://github.com/DataDog/dd-trace-rb/issues/1033
1975
+ [#1034]: https://github.com/DataDog/dd-trace-rb/issues/1034
1976
+ [#1035]: https://github.com/DataDog/dd-trace-rb/issues/1035
1977
+ [#1037]: https://github.com/DataDog/dd-trace-rb/issues/1037
1978
+ [#1041]: https://github.com/DataDog/dd-trace-rb/issues/1041
1979
+ [#1043]: https://github.com/DataDog/dd-trace-rb/issues/1043
1980
+ [#1045]: https://github.com/DataDog/dd-trace-rb/issues/1045
1981
+ [#1046]: https://github.com/DataDog/dd-trace-rb/issues/1046
1982
+ [#1047]: https://github.com/DataDog/dd-trace-rb/issues/1047
1983
+ [#1051]: https://github.com/DataDog/dd-trace-rb/issues/1051
1984
+ [#1054]: https://github.com/DataDog/dd-trace-rb/issues/1054
1985
+ [#1057]: https://github.com/DataDog/dd-trace-rb/issues/1057
1986
+ [#1062]: https://github.com/DataDog/dd-trace-rb/issues/1062
1987
+ [#1070]: https://github.com/DataDog/dd-trace-rb/issues/1070
1988
+ [#1071]: https://github.com/DataDog/dd-trace-rb/issues/1071
1989
+ [#1072]: https://github.com/DataDog/dd-trace-rb/issues/1072
1990
+ [#1073]: https://github.com/DataDog/dd-trace-rb/issues/1073
1991
+ [#1074]: https://github.com/DataDog/dd-trace-rb/issues/1074
1992
+ [#1075]: https://github.com/DataDog/dd-trace-rb/issues/1075
1993
+ [#1076]: https://github.com/DataDog/dd-trace-rb/issues/1076
1994
+ [#1079]: https://github.com/DataDog/dd-trace-rb/issues/1079
1995
+ [#1081]: https://github.com/DataDog/dd-trace-rb/issues/1081
1996
+ [#1082]: https://github.com/DataDog/dd-trace-rb/issues/1082
1997
+ [#1086]: https://github.com/DataDog/dd-trace-rb/issues/1086
1998
+ [#1089]: https://github.com/DataDog/dd-trace-rb/issues/1089
1999
+ [#1090]: https://github.com/DataDog/dd-trace-rb/issues/1090
2000
+ [#1091]: https://github.com/DataDog/dd-trace-rb/issues/1091
2001
+ [#1092]: https://github.com/DataDog/dd-trace-rb/issues/1092
2002
+ [#1099]: https://github.com/DataDog/dd-trace-rb/issues/1099
2003
+ [#1100]: https://github.com/DataDog/dd-trace-rb/issues/1100
2004
+ [#1103]: https://github.com/DataDog/dd-trace-rb/issues/1103
2005
+ [#1104]: https://github.com/DataDog/dd-trace-rb/issues/1104
2006
+ [#1105]: https://github.com/DataDog/dd-trace-rb/issues/1105
2007
+ [#1107]: https://github.com/DataDog/dd-trace-rb/issues/1107
2008
+ [#1109]: https://github.com/DataDog/dd-trace-rb/issues/1109
2009
+ [#1115]: https://github.com/DataDog/dd-trace-rb/issues/1115
2010
+ [#1116]: https://github.com/DataDog/dd-trace-rb/issues/1116
2011
+ [#1118]: https://github.com/DataDog/dd-trace-rb/issues/1118
2012
+ [#1119]: https://github.com/DataDog/dd-trace-rb/issues/1119
2013
+ [#1120]: https://github.com/DataDog/dd-trace-rb/issues/1120
2014
+ [#1121]: https://github.com/DataDog/dd-trace-rb/issues/1121
2015
+ [#1122]: https://github.com/DataDog/dd-trace-rb/issues/1122
2016
+ [#1124]: https://github.com/DataDog/dd-trace-rb/issues/1124
2017
+ [#1125]: https://github.com/DataDog/dd-trace-rb/issues/1125
2018
+ [#1126]: https://github.com/DataDog/dd-trace-rb/issues/1126
2019
+ [#1127]: https://github.com/DataDog/dd-trace-rb/issues/1127
2020
+ [#1128]: https://github.com/DataDog/dd-trace-rb/issues/1128
2021
+ [#1129]: https://github.com/DataDog/dd-trace-rb/issues/1129
2022
+ [#1131]: https://github.com/DataDog/dd-trace-rb/issues/1131
2023
+ [#1133]: https://github.com/DataDog/dd-trace-rb/issues/1133
2024
+ [#1134]: https://github.com/DataDog/dd-trace-rb/issues/1134
2025
+ [#1137]: https://github.com/DataDog/dd-trace-rb/issues/1137
2026
+ [#1138]: https://github.com/DataDog/dd-trace-rb/issues/1138
2027
+ [#1141]: https://github.com/DataDog/dd-trace-rb/issues/1141
2028
+ [#1145]: https://github.com/DataDog/dd-trace-rb/issues/1145
2029
+ [#1146]: https://github.com/DataDog/dd-trace-rb/issues/1146
2030
+ [#1148]: https://github.com/DataDog/dd-trace-rb/issues/1148
2031
+ [#1149]: https://github.com/DataDog/dd-trace-rb/issues/1149
2032
+ [#1150]: https://github.com/DataDog/dd-trace-rb/issues/1150
2033
+ [#1151]: https://github.com/DataDog/dd-trace-rb/issues/1151
2034
+ [#1152]: https://github.com/DataDog/dd-trace-rb/issues/1152
2035
+ [#1153]: https://github.com/DataDog/dd-trace-rb/issues/1153
2036
+ [#1154]: https://github.com/DataDog/dd-trace-rb/issues/1154
2037
+ [#1155]: https://github.com/DataDog/dd-trace-rb/issues/1155
2038
+ [#1156]: https://github.com/DataDog/dd-trace-rb/issues/1156
2039
+ [#1157]: https://github.com/DataDog/dd-trace-rb/issues/1157
2040
+ [#1158]: https://github.com/DataDog/dd-trace-rb/issues/1158
2041
+ [#1159]: https://github.com/DataDog/dd-trace-rb/issues/1159
2042
+ [#1160]: https://github.com/DataDog/dd-trace-rb/issues/1160
2043
+ [#1162]: https://github.com/DataDog/dd-trace-rb/issues/1162
2044
+ [#1163]: https://github.com/DataDog/dd-trace-rb/issues/1163
2045
+ [#1165]: https://github.com/DataDog/dd-trace-rb/issues/1165
2046
+ [#1172]: https://github.com/DataDog/dd-trace-rb/issues/1172
2047
+ [#1173]: https://github.com/DataDog/dd-trace-rb/issues/1173
2048
+ [#1176]: https://github.com/DataDog/dd-trace-rb/issues/1176
2049
+ [#1177]: https://github.com/DataDog/dd-trace-rb/issues/1177
2050
+ [#1178]: https://github.com/DataDog/dd-trace-rb/issues/1178
2051
+ [#1179]: https://github.com/DataDog/dd-trace-rb/issues/1179
2052
+ [#1180]: https://github.com/DataDog/dd-trace-rb/issues/1180
2053
+ [#1181]: https://github.com/DataDog/dd-trace-rb/issues/1181
2054
+ [#1182]: https://github.com/DataDog/dd-trace-rb/issues/1182
2055
+ [#1183]: https://github.com/DataDog/dd-trace-rb/issues/1183
2056
+ [#1184]: https://github.com/DataDog/dd-trace-rb/issues/1184
2057
+ [#1185]: https://github.com/DataDog/dd-trace-rb/issues/1185
2058
+ [#1186]: https://github.com/DataDog/dd-trace-rb/issues/1186
2059
+ [#1187]: https://github.com/DataDog/dd-trace-rb/issues/1187
2060
+ [#1188]: https://github.com/DataDog/dd-trace-rb/issues/1188
2061
+ [#1189]: https://github.com/DataDog/dd-trace-rb/issues/1189
2062
+ [#1195]: https://github.com/DataDog/dd-trace-rb/issues/1195
2063
+ [#1198]: https://github.com/DataDog/dd-trace-rb/issues/1198
2064
+ [#1199]: https://github.com/DataDog/dd-trace-rb/issues/1199
2065
+ [#1200]: https://github.com/DataDog/dd-trace-rb/issues/1200
2066
+ [#1203]: https://github.com/DataDog/dd-trace-rb/issues/1203
2067
+ [#1204]: https://github.com/DataDog/dd-trace-rb/issues/1204
2068
+ [#1210]: https://github.com/DataDog/dd-trace-rb/issues/1210
2069
+ [#1212]: https://github.com/DataDog/dd-trace-rb/issues/1212
2070
+ [#1213]: https://github.com/DataDog/dd-trace-rb/issues/1213
2071
+ [#1216]: https://github.com/DataDog/dd-trace-rb/issues/1216
2072
+ [#1217]: https://github.com/DataDog/dd-trace-rb/issues/1217
2073
+ [#1218]: https://github.com/DataDog/dd-trace-rb/issues/1218
2074
+ [#1220]: https://github.com/DataDog/dd-trace-rb/issues/1220
2075
+ [#1225]: https://github.com/DataDog/dd-trace-rb/issues/1225
2076
+ [#1226]: https://github.com/DataDog/dd-trace-rb/issues/1226
2077
+ [#1227]: https://github.com/DataDog/dd-trace-rb/issues/1227
2078
+ [#1229]: https://github.com/DataDog/dd-trace-rb/issues/1229
2079
+ [#1232]: https://github.com/DataDog/dd-trace-rb/issues/1232
2080
+ [#1233]: https://github.com/DataDog/dd-trace-rb/issues/1233
2081
+ [#1234]: https://github.com/DataDog/dd-trace-rb/issues/1234
2082
+ [#1235]: https://github.com/DataDog/dd-trace-rb/issues/1235
2083
+ [#1236]: https://github.com/DataDog/dd-trace-rb/issues/1236
2084
+ [#1237]: https://github.com/DataDog/dd-trace-rb/issues/1237
2085
+ [#1238]: https://github.com/DataDog/dd-trace-rb/issues/1238
2086
+ [#1239]: https://github.com/DataDog/dd-trace-rb/issues/1239
2087
+ [#1243]: https://github.com/DataDog/dd-trace-rb/issues/1243
2088
+ [#1244]: https://github.com/DataDog/dd-trace-rb/issues/1244
2089
+ [#1248]: https://github.com/DataDog/dd-trace-rb/issues/1248
2090
+ [#1256]: https://github.com/DataDog/dd-trace-rb/issues/1256
2091
+ [#1257]: https://github.com/DataDog/dd-trace-rb/issues/1257
2092
+ [#1262]: https://github.com/DataDog/dd-trace-rb/issues/1262
2093
+ [#1263]: https://github.com/DataDog/dd-trace-rb/issues/1263
2094
+ [#1264]: https://github.com/DataDog/dd-trace-rb/issues/1264
2095
+ [#1266]: https://github.com/DataDog/dd-trace-rb/issues/1266
2096
+ [#1267]: https://github.com/DataDog/dd-trace-rb/issues/1267
2097
+ [#1268]: https://github.com/DataDog/dd-trace-rb/issues/1268
2098
+ [#1269]: https://github.com/DataDog/dd-trace-rb/issues/1269
2099
+ [#1270]: https://github.com/DataDog/dd-trace-rb/issues/1270
2100
+ [#1272]: https://github.com/DataDog/dd-trace-rb/issues/1272
2101
+ [#1273]: https://github.com/DataDog/dd-trace-rb/issues/1273
2102
+ [#1275]: https://github.com/DataDog/dd-trace-rb/issues/1275
2103
+ [#1276]: https://github.com/DataDog/dd-trace-rb/issues/1276
2104
+ [#1277]: https://github.com/DataDog/dd-trace-rb/issues/1277
2105
+ [#1278]: https://github.com/DataDog/dd-trace-rb/issues/1278
2106
+ [#1279]: https://github.com/DataDog/dd-trace-rb/issues/1279
2107
+ [#1281]: https://github.com/DataDog/dd-trace-rb/issues/1281
2108
+ [#1283]: https://github.com/DataDog/dd-trace-rb/issues/1283
2109
+ [#1284]: https://github.com/DataDog/dd-trace-rb/issues/1284
2110
+ [#1286]: https://github.com/DataDog/dd-trace-rb/issues/1286
2111
+ [#1287]: https://github.com/DataDog/dd-trace-rb/issues/1287
2112
+ [#1289]: https://github.com/DataDog/dd-trace-rb/issues/1289
2113
+ [#1293]: https://github.com/DataDog/dd-trace-rb/issues/1293
2114
+ [#1295]: https://github.com/DataDog/dd-trace-rb/issues/1295
2115
+ [#1296]: https://github.com/DataDog/dd-trace-rb/issues/1296
2116
+ [#1297]: https://github.com/DataDog/dd-trace-rb/issues/1297
2117
+ [#1298]: https://github.com/DataDog/dd-trace-rb/issues/1298
2118
+ [#1299]: https://github.com/DataDog/dd-trace-rb/issues/1299
2119
+ [@Azure7111]: https://github.com/Azure7111
2120
+ [@BabyGroot]: https://github.com/BabyGroot
2121
+ [@DocX]: https://github.com/DocX
2122
+ [@EpiFouloux]: https://github.com/EpiFouloux
2123
+ [@JamesHarker]: https://github.com/JamesHarker
2124
+ [@Jared-Prime]: https://github.com/Jared-Prime
2125
+ [@Joas1988]: https://github.com/Joas1988
2126
+ [@JustSnow]: https://github.com/JustSnow
2127
+ [@MMartyn]: https://github.com/MMartyn
2128
+ [@NobodysNightmare]: https://github.com/NobodysNightmare
2129
+ [@Redapted]: https://github.com/Redapted
2130
+ [@Sticksword]: https://github.com/Sticksword
2131
+ [@Supy]: https://github.com/Supy
2132
+ [@Yurokle]: https://github.com/Yurokle
2133
+ [@ZimbiX]: https://github.com/ZimbiX
2134
+ [@agirlnamedsophia]: https://github.com/agirlnamedsophia
2135
+ [@ahammel]: https://github.com/ahammel
2136
+ [@al-kudryavtsev]: https://github.com/al-kudryavtsev
2137
+ [@alksl]: https://github.com/alksl
2138
+ [@alloy]: https://github.com/alloy
2139
+ [@aurelian]: https://github.com/aurelian
2140
+ [@awendt]: https://github.com/awendt
2141
+ [@bartekbsh]: https://github.com/bartekbsh
2142
+ [@benhutton]: https://github.com/benhutton
2143
+ [@bheemreddy181]: https://github.com/bheemreddy181
2144
+ [@blaines]: https://github.com/blaines
2145
+ [@brafales]: https://github.com/brafales
2146
+ [@bzf]: https://github.com/bzf
2147
+ [@callumj]: https://github.com/callumj
2148
+ [@cjford]: https://github.com/cjford
2149
+ [@ck3g]: https://github.com/ck3g
2150
+ [@cswatt]: https://github.com/cswatt
2151
+ [@dasch]: https://github.com/dasch
2152
+ [@dim]: https://github.com/dim
2153
+ [@dirk]: https://github.com/dirk
2154
+ [@djmb]: https://github.com/djmb
2155
+ [@dorner]: https://github.com/dorner
2156
+ [@drcapulet]: https://github.com/drcapulet
2157
+ [@elyalvarado]: https://github.com/elyalvarado
2158
+ [@ericmustin]: https://github.com/ericmustin
2159
+ [@erict-square]: https://github.com/erict-square
2160
+ [@errriclee]: https://github.com/errriclee
2161
+ [@evan-waters]: https://github.com/evan-waters
2162
+ [@fledman]: https://github.com/fledman
2163
+ [@frsantos]: https://github.com/frsantos
2164
+ [@gaborszakacs]: https://github.com/gaborszakacs
2165
+ [@giancarlocosta]: https://github.com/giancarlocosta
2166
+ [@gingerlime]: https://github.com/gingerlime
2167
+ [@gottfrois]: https://github.com/gottfrois
2168
+ [@guizmaii]: https://github.com/guizmaii
2169
+ [@hawknewton]: https://github.com/hawknewton
2170
+ [@hs-bguven]: https://github.com/hs-bguven
2171
+ [@illdelph]: https://github.com/illdelph
2172
+ [@jamiehodge]: https://github.com/jamiehodge
2173
+ [@janz93]: https://github.com/janz93
2174
+ [@jeffjo]: https://github.com/jeffjo
2175
+ [@jfrancoist]: https://github.com/jfrancoist
2176
+ [@joeyAghion]: https://github.com/joeyAghion
2177
+ [@jpaulgs]: https://github.com/jpaulgs
2178
+ [@jvalanen]: https://github.com/jvalanen
2179
+ [@kelvin-acosta]: https://github.com/kelvin-acosta
2180
+ [@kissrobber]: https://github.com/kissrobber
2181
+ [@kitop]: https://github.com/kitop
2182
+ [@letiesperon]: https://github.com/letiesperon
2183
+ [@link04]: https://github.com/link04
2184
+ [@mantrala]: https://github.com/mantrala
2185
+ [@matchbookmac]: https://github.com/matchbookmac
2186
+ [@mberlanda]: https://github.com/mberlanda
2187
+ [@mdehoog]: https://github.com/mdehoog
2188
+ [@mdross95]: https://github.com/mdross95
2189
+ [@michaelkl]: https://github.com/michaelkl
2190
+ [@mstruve]: https://github.com/mstruve
2191
+ [@mustela]: https://github.com/mustela
2192
+ [@nic-lan]: https://github.com/nic-lan
2193
+ [@noma4i]: https://github.com/noma4i
2194
+ [@norbertnytko]: https://github.com/norbertnytko
2195
+ [@palin]: https://github.com/palin
2196
+ [@pj0tr]: https://github.com/pj0tr
2197
+ [@psycholein]: https://github.com/psycholein
2198
+ [@pzaich]: https://github.com/pzaich
2199
+ [@rahul342]: https://github.com/rahul342
2200
+ [@randy-girard]: https://github.com/randy-girard
2201
+ [@renchap]: https://github.com/renchap
2202
+ [@ricbartm]: https://github.com/ricbartm
2203
+ [@roccoblues]: https://github.com/roccoblues
2204
+ [@sco11morgan]: https://github.com/sco11morgan
2205
+ [@senny]: https://github.com/senny
2206
+ [@shayonj]: https://github.com/shayonj
2207
+ [@sinsoku]: https://github.com/sinsoku
2208
+ [@soulcutter]: https://github.com/soulcutter
2209
+ [@stefanahman]: https://github.com/stefanahman
2210
+ [@steveh]: https://github.com/steveh
2211
+ [@stormsilver]: https://github.com/stormsilver
2212
+ [@sullimander]: https://github.com/sullimander
2213
+ [@tjgrathwell]: https://github.com/tjgrathwell
2214
+ [@tjwp]: https://github.com/tjwp
2215
+ [@tomasv]: https://github.com/tomasv
2216
+ [@tonypinder]: https://github.com/tonypinder
2217
+ [@twe4ked]: https://github.com/twe4ked
2218
+ [@undergroundwebdesigns]: https://github.com/undergroundwebdesigns
2219
+ [@vramaiah]: https://github.com/vramaiah
2220
+ [@walterking]: https://github.com/walterking
2221
+ [@y-yagi]: https://github.com/y-yagi
2222
+ [@zachmccormick]: https://github.com/zachmccormick