ddtrace 0.43.0 → 0.45.0

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