ddtrace 0.40.0 → 0.45.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (150) hide show
  1. checksums.yaml +4 -4
  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 +42 -0
  5. data/.github/workflows/create-next-milestone.yml +20 -0
  6. data/.simplecov +3 -0
  7. data/Appraisals +414 -135
  8. data/CHANGELOG.md +1112 -342
  9. data/CONTRIBUTING.md +2 -2
  10. data/Gemfile +4 -2
  11. data/README.md +1 -0
  12. data/Rakefile +231 -29
  13. data/ddtrace.gemspec +8 -8
  14. data/docker-compose.yml +30 -0
  15. data/docs/DevelopmentGuide.md +12 -2
  16. data/docs/GettingStarted.md +187 -16
  17. data/lib/ddtrace.rb +10 -0
  18. data/lib/ddtrace/auto_instrument.rb +3 -0
  19. data/lib/ddtrace/auto_instrument_base.rb +6 -0
  20. data/lib/ddtrace/buffer.rb +259 -52
  21. data/lib/ddtrace/configuration.rb +19 -0
  22. data/lib/ddtrace/configuration/options.rb +3 -1
  23. data/lib/ddtrace/configuration/settings.rb +9 -3
  24. data/lib/ddtrace/context.rb +18 -0
  25. data/lib/ddtrace/context_provider.rb +17 -5
  26. data/lib/ddtrace/contrib/action_cable/integration.rb +7 -0
  27. data/lib/ddtrace/contrib/action_pack/integration.rb +7 -0
  28. data/lib/ddtrace/contrib/action_view/event.rb +0 -4
  29. data/lib/ddtrace/contrib/action_view/events/render_partial.rb +1 -0
  30. data/lib/ddtrace/contrib/action_view/events/render_template.rb +1 -0
  31. data/lib/ddtrace/contrib/action_view/integration.rb +7 -0
  32. data/lib/ddtrace/contrib/active_record/events/sql.rb +4 -0
  33. data/lib/ddtrace/contrib/active_record/integration.rb +7 -0
  34. data/lib/ddtrace/contrib/active_record/utils.rb +67 -21
  35. data/lib/ddtrace/contrib/active_support/cache/instrumentation.rb +104 -3
  36. data/lib/ddtrace/contrib/active_support/cache/patcher.rb +21 -0
  37. data/lib/ddtrace/contrib/active_support/ext.rb +3 -0
  38. data/lib/ddtrace/contrib/active_support/integration.rb +7 -1
  39. data/lib/ddtrace/contrib/active_support/notifications/event.rb +10 -0
  40. data/lib/ddtrace/contrib/active_support/notifications/subscription.rb +2 -2
  41. data/lib/ddtrace/contrib/auto_instrument.rb +48 -0
  42. data/lib/ddtrace/contrib/aws/instrumentation.rb +6 -1
  43. data/lib/ddtrace/contrib/aws/patcher.rb +0 -1
  44. data/lib/ddtrace/contrib/aws/services.rb +1 -0
  45. data/lib/ddtrace/contrib/configurable.rb +2 -0
  46. data/lib/ddtrace/contrib/configuration/resolvers/pattern_resolver.rb +6 -5
  47. data/lib/ddtrace/contrib/cucumber/configuration/settings.rb +38 -0
  48. data/lib/ddtrace/contrib/cucumber/ext.rb +19 -0
  49. data/lib/ddtrace/contrib/cucumber/formatter.rb +104 -0
  50. data/lib/ddtrace/contrib/cucumber/instrumentation.rb +24 -0
  51. data/lib/ddtrace/contrib/cucumber/integration.rb +45 -0
  52. data/lib/ddtrace/contrib/cucumber/patcher.rb +23 -0
  53. data/lib/ddtrace/contrib/dalli/instrumentation.rb +4 -0
  54. data/lib/ddtrace/contrib/delayed_job/configuration/settings.rb +2 -0
  55. data/lib/ddtrace/contrib/delayed_job/ext.rb +2 -0
  56. data/lib/ddtrace/contrib/delayed_job/plugin.rb +39 -15
  57. data/lib/ddtrace/contrib/elasticsearch/patcher.rb +4 -0
  58. data/lib/ddtrace/contrib/ethon/easy_patch.rb +10 -7
  59. data/lib/ddtrace/contrib/ethon/ext.rb +1 -0
  60. data/lib/ddtrace/contrib/ethon/multi_patch.rb +4 -0
  61. data/lib/ddtrace/contrib/excon/middleware.rb +11 -1
  62. data/lib/ddtrace/contrib/extensions.rb +27 -1
  63. data/lib/ddtrace/contrib/faraday/middleware.rb +4 -0
  64. data/lib/ddtrace/contrib/faraday/patcher.rb +1 -1
  65. data/lib/ddtrace/contrib/grape/configuration/settings.rb +7 -0
  66. data/lib/ddtrace/contrib/grape/endpoint.rb +53 -18
  67. data/lib/ddtrace/contrib/grape/ext.rb +1 -0
  68. data/lib/ddtrace/contrib/grpc/datadog_interceptor/client.rb +5 -1
  69. data/lib/ddtrace/contrib/grpc/datadog_interceptor/server.rb +4 -0
  70. data/lib/ddtrace/contrib/http/instrumentation.rb +6 -2
  71. data/lib/ddtrace/contrib/httpclient/configuration/settings.rb +32 -0
  72. data/lib/ddtrace/contrib/httpclient/ext.rb +17 -0
  73. data/lib/ddtrace/contrib/httpclient/instrumentation.rb +152 -0
  74. data/lib/ddtrace/contrib/httpclient/integration.rb +43 -0
  75. data/lib/ddtrace/contrib/httpclient/patcher.rb +35 -0
  76. data/lib/ddtrace/contrib/httprb/instrumentation.rb +6 -3
  77. data/lib/ddtrace/contrib/kafka/event.rb +1 -1
  78. data/lib/ddtrace/contrib/mongodb/subscribers.rb +4 -0
  79. data/lib/ddtrace/contrib/mysql2/instrumentation.rb +4 -0
  80. data/lib/ddtrace/contrib/patchable.rb +18 -7
  81. data/lib/ddtrace/contrib/presto/instrumentation.rb +3 -0
  82. data/lib/ddtrace/contrib/qless/configuration/settings.rb +35 -0
  83. data/lib/ddtrace/contrib/qless/ext.rb +20 -0
  84. data/lib/ddtrace/contrib/qless/integration.rb +38 -0
  85. data/lib/ddtrace/contrib/qless/patcher.rb +35 -0
  86. data/lib/ddtrace/contrib/qless/qless_job.rb +72 -0
  87. data/lib/ddtrace/contrib/qless/tracer_cleaner.rb +32 -0
  88. data/lib/ddtrace/contrib/que/configuration/settings.rb +1 -0
  89. data/lib/ddtrace/contrib/que/tracer.rb +2 -1
  90. data/lib/ddtrace/contrib/racecar/event.rb +4 -0
  91. data/lib/ddtrace/contrib/rack/integration.rb +7 -0
  92. data/lib/ddtrace/contrib/rack/middlewares.rb +1 -1
  93. data/lib/ddtrace/contrib/rack/request_queue.rb +6 -1
  94. data/lib/ddtrace/contrib/rails/auto_instrument_railtie.rb +10 -0
  95. data/lib/ddtrace/contrib/rails/patcher.rb +19 -5
  96. data/lib/ddtrace/contrib/rails/utils.rb +4 -0
  97. data/lib/ddtrace/contrib/rake/integration.rb +1 -1
  98. data/lib/ddtrace/contrib/redis/configuration/resolver.rb +3 -1
  99. data/lib/ddtrace/contrib/redis/configuration/settings.rb +5 -0
  100. data/lib/ddtrace/contrib/redis/ext.rb +1 -0
  101. data/lib/ddtrace/contrib/redis/patcher.rb +20 -3
  102. data/lib/ddtrace/contrib/redis/quantize.rb +27 -0
  103. data/lib/ddtrace/contrib/redis/tags.rb +9 -1
  104. data/lib/ddtrace/contrib/resque/configuration/settings.rb +1 -0
  105. data/lib/ddtrace/contrib/resque/integration.rb +1 -1
  106. data/lib/ddtrace/contrib/resque/resque_job.rb +1 -1
  107. data/lib/ddtrace/contrib/rest_client/request_patch.rb +4 -0
  108. data/lib/ddtrace/contrib/rspec/configuration/settings.rb +38 -0
  109. data/lib/ddtrace/contrib/rspec/example.rb +61 -0
  110. data/lib/ddtrace/contrib/rspec/example_group.rb +61 -0
  111. data/lib/ddtrace/contrib/rspec/ext.rb +19 -0
  112. data/lib/ddtrace/contrib/rspec/integration.rb +46 -0
  113. data/lib/ddtrace/contrib/rspec/patcher.rb +25 -0
  114. data/lib/ddtrace/contrib/sequel/database.rb +3 -1
  115. data/lib/ddtrace/contrib/sequel/dataset.rb +3 -2
  116. data/lib/ddtrace/contrib/sequel/ext.rb +1 -0
  117. data/lib/ddtrace/contrib/sequel/utils.rb +16 -5
  118. data/lib/ddtrace/contrib/shoryuken/configuration/settings.rb +1 -0
  119. data/lib/ddtrace/contrib/shoryuken/tracer.rb +4 -1
  120. data/lib/ddtrace/contrib/sidekiq/configuration/settings.rb +1 -0
  121. data/lib/ddtrace/contrib/sidekiq/server_tracer.rb +4 -1
  122. data/lib/ddtrace/contrib/sinatra/tracer_middleware.rb +2 -2
  123. data/lib/ddtrace/contrib/sneakers/configuration/settings.rb +1 -0
  124. data/lib/ddtrace/contrib/sneakers/tracer.rb +17 -20
  125. data/lib/ddtrace/contrib/status_code_matcher.rb +67 -0
  126. data/lib/ddtrace/ext/app_types.rb +1 -0
  127. data/lib/ddtrace/ext/ci.rb +297 -0
  128. data/lib/ddtrace/ext/distributed.rb +8 -2
  129. data/lib/ddtrace/ext/git.rb +11 -0
  130. data/lib/ddtrace/ext/integration.rb +8 -0
  131. data/lib/ddtrace/ext/runtime.rb +2 -0
  132. data/lib/ddtrace/ext/test.rb +24 -0
  133. data/lib/ddtrace/opentracer/distributed_headers.rb +1 -1
  134. data/lib/ddtrace/propagation/grpc_propagator.rb +18 -6
  135. data/lib/ddtrace/propagation/http_propagator.rb +17 -2
  136. data/lib/ddtrace/runtime/identity.rb +4 -5
  137. data/lib/ddtrace/runtime/metrics.rb +6 -2
  138. data/lib/ddtrace/sampler.rb +2 -2
  139. data/lib/ddtrace/sampling/rate_limiter.rb +65 -16
  140. data/lib/ddtrace/span.rb +152 -27
  141. data/lib/ddtrace/tracer.rb +25 -13
  142. data/lib/ddtrace/transport/http/adapters/net.rb +8 -2
  143. data/lib/ddtrace/transport/http/statistics.rb +14 -1
  144. data/lib/ddtrace/transport/traces.rb +7 -2
  145. data/lib/ddtrace/utils.rb +16 -13
  146. data/lib/ddtrace/utils/forking.rb +52 -0
  147. data/lib/ddtrace/version.rb +1 -1
  148. data/lib/ddtrace/workers/runtime_metrics.rb +7 -3
  149. data/lib/ddtrace/writer.rb +19 -1
  150. metadata +111 -19
@@ -2,6 +2,157 @@
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
+
59
+ ## [0.43.0] - 2020-11-18
60
+
61
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.43.0
62
+
63
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.42.0...v0.43.0
64
+
65
+ ### Added
66
+
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][])
73
+
74
+ ### Changed
75
+
76
+ - Update `TokenBucket#effective_rate` calculation ([#1236][])
77
+
78
+ ### Fixed
79
+
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][])
86
+
87
+ ### Refactored
88
+
89
+ - Improvements to test suite ([#1232][], [#1244][])
90
+ - Improvements to documentation ([#1243][], [#1218][]) ([@cjford][])
91
+
92
+ ### Removed
93
+
94
+ ## [0.42.0] - 2020-10-21
95
+
96
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.42.0
97
+
98
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.41.0...v0.42.0
99
+
100
+ ### Added
101
+
102
+ - Increase Resque support to include 2.0 ([#1213][]) ([@erict-square][])
103
+
104
+ - Improve gRPC Propagator to support metadata array values ([#1203][]) ([@mdehoog][])
105
+
106
+ - Add CPU benchmarks, diagnostics to tests ([#1188][], [#1198][])
107
+
108
+ - Access active correlation by Thread ([#1200][])
109
+
110
+ - Improve delayed_job instrumentation ([#1187][]) ([@norbertnytko][])
111
+
112
+ ### Changed
113
+
114
+ ### Fixed
115
+
116
+ - Improve Rails `log_injection` option to support more Lograge formats ([#1210][]) ([@Supy][])
117
+
118
+ - Fix Changelog ([#1199][]) ([@y-yagi][])
119
+
120
+ ### Refactored
121
+
122
+ - Refactor Trace buffer into multiple components ([#1195][])
123
+
124
+ ## [0.41.0] - 2020-09-30
125
+
126
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.41.0
127
+
128
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
129
+
130
+ ### Added
131
+
132
+ - Improve duration counting using monotonic clock ([#424][], [#1173][]) ([@soulcutter][])
133
+
134
+ ### Changed
135
+
136
+ - Add peer.service tag to external services and skip tagging external services with language tag for runtime metrics ([#934][], [#935][], [#1180][])
137
+ - This helps support the way runtime metrics are associated with spans in the UI.
138
+ - Faster TraceBuffer for CRuby ([#1172][])
139
+ - Reduce memory usage during gem startup ([#1090][])
140
+ - Reduce memory usage of the HTTP transport ([#1165][])
141
+
142
+ ### Fixed
143
+
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][])
147
+ - This allows users to pass in a custom logger that does not inherit from `Logger` class.
148
+ - Correct tracer buffer metric counting ([#1182][])
149
+ - Fix Span#pretty_print for empty duration ([#1183][])
150
+
151
+ ### Refactored
152
+
153
+ - Improvements to test suite & CI ([#1179][], [#1184][], [#1177][], [#1178][], [#1176][])
154
+ - Reduce generated Span ID range to fit in Fixnum ([#1189][])
155
+
5
156
  ## [0.40.0] - 2020-09-08
6
157
 
7
158
  Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.40.0
@@ -10,19 +161,19 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
10
161
 
11
162
  ### Added
12
163
 
13
- - Rails `log_injection` option to auto enable log correlation (#1157)
14
- - Que integration (#1141, #1146) (@hs-bguven)
15
- - `Components#startup!` hook (#1151)
16
- - 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][])
17
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`.
18
169
 
19
170
  ### Changed
20
171
 
21
- - Use a single top level span for Racecar consumers (#1150) (@dasch)
172
+ - Use a single top level span for Racecar consumers ([#1150][]) ([@dasch][])
22
173
 
23
174
  ### Fixed
24
175
 
25
- - Sinatra nested modular applications possibly leaking spans (#1035, #1145)
176
+ - Sinatra nested modular applications possibly leaking spans ([#1035][], [#1145][])
26
177
 
27
178
  * **BREAKING** for nested modular Sinatra applications only:
28
179
  ```ruby
@@ -35,7 +186,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
35
186
  ```
36
187
  * Non-breaking for classic applications nor modular non-nested applications.
37
188
 
38
- 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.
39
190
 
40
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.
41
192
 
@@ -43,24 +194,24 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
43
194
 
44
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.
45
196
 
46
- 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.
47
198
 
48
- - Rack/Rails span error propagation with `rescue_from` (#1155, #1162)
49
- - Prevent logger recursion during startup (#1158)
50
- - 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][])
51
202
  - These classes represent future work, and not being used at the moment.
52
203
 
53
204
  ### Refactored
54
205
 
55
- - Run CI tests in parallel (#1156)
56
- - Migrate minitest tests to RSpec (#1127, #1128, #1133, #1149, #1152, #1153)
57
- - Improvements to test suite (#1134, #1148, #1163)
58
- - 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][])
59
210
 
60
211
  ### Removed
61
212
 
62
- - **Ruby 1.9 support ended, as it transitions from Maintenance to End-Of-Life (#1137)**
63
- - 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][])
64
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.
65
216
 
66
217
  ## [0.39.0] - 2020-08-05
@@ -71,26 +222,26 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
71
222
 
72
223
  ### Added
73
224
 
74
- - JRuby 9.2 support (#1126)
75
- - Sneakers integration (#1121) (@janz93)
225
+ - JRuby 9.2 support ([#1126][])
226
+ - Sneakers integration ([#1121][]) ([@janz93][])
76
227
 
77
228
  ### Changed
78
229
 
79
- - Consistent environment variables across languages (#1115)
80
- - Default logger level from WARN to INFO (#1120) (@gingerlime)
81
- - 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][])
82
233
 
83
234
  ### Fixed
84
235
 
85
- - HTTP::StateError on error responses for http.rb (#1116, #1122) (@evan-waters)
86
- - Startup log error when using the test adapter (#1125, #1131) (@benhutton)
87
- - Warning message for Faraday < 1.0 (#1129) (@fledman, @tjwp)
88
- - 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][])
89
240
 
90
241
  ### Refactored
91
242
 
92
- - Improved ActiveRecord documentation (#1119)
93
- - Improvements to test suite (#1105, #1118)
243
+ - Improved ActiveRecord documentation ([#1119][])
244
+ - Improvements to test suite ([#1105][], [#1118][])
94
245
 
95
246
  ## [0.38.0] - 2020-07-13
96
247
 
@@ -100,28 +251,28 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
100
251
 
101
252
  ### Added
102
253
 
103
- - http.rb integration (#529, #853)
104
- - Kafka integration (#1070) (@tjwp)
105
- - Span#set_tags (#1081) (@DocX)
106
- - retry_count tag for Sidekiq jobs (#1089) (@elyalvarado)
107
- - Startup environment log (#1104, #1109)
108
- - 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][])
109
260
 
110
261
  ### Changed
111
262
 
112
- - Auto instrument Faraday default connection (#1057)
113
- - Sidekiq client middleware is now the same for client and server (#1099) (@drcapulet)
114
- - 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][])
115
266
 
116
267
  ### Fixed
117
268
 
118
- - Ensure fatal exceptions are propagated (#1100)
119
- - Respect child_of: option in Tracer#trace (#1082) (@DocX)
120
- - 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][])
121
272
 
122
273
  ### Refactored
123
274
 
124
- - Improvements to test suite (#1092, #1103)
275
+ - Improvements to test suite ([#1092][], [#1103][])
125
276
 
126
277
  ## [0.37.0] - 2020-06-24
127
278
 
@@ -131,12 +282,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
131
282
 
132
283
  ### Refactored
133
284
 
134
- - Documentation improvements regarding Datadog Agent defaults (#1074) (@cswatt)
135
- - 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][])
136
287
 
137
288
  ### Removed
138
289
 
139
- - **DEPRECATION**: Deprecate Contrib::Configuration::Settings#tracer= (#1072, #1079)
290
+ - **DEPRECATION**: Deprecate Contrib::Configuration::Settings#tracer= ([#1072][], [#1079][])
140
291
  - The `tracer:` option is no longer supported for integration configuration. A deprecation warning will be issued when this option is used.
141
292
  - Tracer instances are dynamically created when `ddtrace` is reconfigured (through `Datadog.configure{}` calls).
142
293
 
@@ -146,10 +297,10 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.36.0...v0.37.0
146
297
 
147
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.
148
299
 
149
- - **BREAKING**: Remove Pin#tracer= and DeprecatedPin#tracer= (#1073)
300
+ - **BREAKING**: Remove Pin#tracer= and DeprecatedPin#tracer= ([#1073][])
150
301
  - The `Pin` and `DeprecatedPin` are internal tools used to provide more granular configuration for integrations.
151
302
  - The APIs being removed are not public nor have been externally documented. The `DeprecatedPin` specifically has been considered deprecated since 0.20.0.
152
- - 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.
153
304
 
154
305
  ### Migration
155
306
 
@@ -170,16 +321,16 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.2...v0.36.0
170
321
 
171
322
  ### Changed
172
323
 
173
- - 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][])
174
325
 
175
326
  ### Fixed
176
327
 
177
- - Allow Rails patching if Railties are loaded (#993, #1054) (@mustela, @bheemreddy181, @vramaiah)
178
- - 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][])
179
330
 
180
331
  ### Refactored
181
332
 
182
- - Improvements to test suite (#1027, #1031, #1045, #1046, #1047)
333
+ - Improvements to test suite ([#1027][], [#1031][], [#1045][], [#1046][], [#1047][])
183
334
 
184
335
  ## [0.35.2] - 2020-05-08
185
336
 
@@ -189,8 +340,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.1...v0.35.2
189
340
 
190
341
  ### Fixed
191
342
 
192
- - Internal tracer HTTP requests generating traces (#1030, #1033) (@gingerlime)
193
- - `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][])
194
345
 
195
346
  ## [0.35.1] - 2020-05-05
196
347
 
@@ -200,7 +351,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.35.0...v0.35.1
200
351
 
201
352
  ### Fixed
202
353
 
203
- - Components#teardown! NoMethodError (#1021, #1023) (@bzf)
354
+ - Components#teardown! NoMethodError ([#1021][], [#1023][]) ([@bzf][])
204
355
 
205
356
  ## [0.35.0] - 2020-04-29
206
357
 
@@ -210,28 +361,28 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.2...v0.35.0
210
361
 
211
362
  ### Added
212
363
 
213
- - Chunk large trace payloads before flushing (#818, #840)
214
- - Support for Sinatra modular apps (#486, #913, #1015) (@jpaulgs, @tomasv, @ZimbiX)
215
- - active_job support for Resque (#991) (@stefanahman, @psycholein)
216
- - JRuby 9.2 to CI test matrix (#995)
217
- - `TraceWriter` and `AsyncTraceWriter` workers (#986)
218
- - 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][])
219
370
 
220
371
  ### Changed
221
372
 
222
- - Populate env, service, and version from tags (#1008)
223
- - Extract components from configuration (#996)
224
- - Extract logger to components (#997)
225
- - Extract runtime metrics worker from `Writer` (#1004)
226
- - 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][])
227
378
 
228
379
  ### Fixed
229
380
 
230
- - Runtime metrics not starting after #write (#1010)
381
+ - Runtime metrics not starting after #write ([#1010][])
231
382
 
232
383
  ### Refactored
233
384
 
234
- - Improvements to test suite (#842, #1006, #1009)
385
+ - Improvements to test suite ([#842][], [#1006][], [#1009][])
235
386
 
236
387
  ## [0.34.2] - 2020-04-09
237
388
 
@@ -241,7 +392,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.1...v0.34.2
241
392
 
242
393
  ### Changed
243
394
 
244
- - 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][])
245
396
 
246
397
  ## [0.34.1] - 2020-04-02
247
398
 
@@ -251,11 +402,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.34.0...v0.34.1
251
402
 
252
403
  ### Changed
253
404
 
254
- - 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][])
255
406
 
256
407
  ### Fixed
257
408
 
258
- - Some configuration settings not applying (#989, #990) (@rahul342)
409
+ - Some configuration settings not applying ([#989][], [#990][]) ([@rahul342][])
259
410
 
260
411
  ## [0.34.0] - 2020-03-31
261
412
 
@@ -265,18 +416,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.1...v0.34.0
265
416
 
266
417
  ### Added
267
418
 
268
- - `Datadog::Event` for simple pub-sub messaging (#972)
269
- - `Datadog::Workers` for trace writing (#969, #973)
270
- - `_dd.measured` tag to some integrations for more statistics (#974)
271
- - `env`, `service`, `version`, `tags` configuration for auto-tagging (#977, #980, #982, #983, #985)
272
- - 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][])
273
424
 
274
425
  ### Fixed
275
426
 
276
- - Runtime metrics configuration dropping with new writer (#967, #968) (@ericmustin)
277
- - Faraday "unexpected middleware" warnings on v0.x (#965, #971)
278
- - Presto configuration (#975)
279
- - 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][])
280
431
 
281
432
  ## [0.33.1] - 2020-03-09
282
433
 
@@ -286,7 +437,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.33.0...v0.33.1
286
437
 
287
438
  ### Fixed
288
439
 
289
- - 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][])
290
441
 
291
442
  ## [0.33.0] - 2020-03-05
292
443
 
@@ -296,27 +447,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.32.0...v0.33.0
296
447
 
297
448
  ### Added
298
449
 
299
- - Instrumentation for [Presto](https://github.com/treasure-data/presto-client-ruby) (#775, #920, #961) (@ahammel, @ericmustin)
300
- - Sidekiq job argument tagging (#933) (@mantrala)
301
- - Support for multiple Redis services (#861, #937, #940) (@mberlanda)
302
- - Support for Sidekiq w/ Delayed extensions (#798, #942) (@joeyAghion)
303
- - Setter/reset behavior for configuration options (#957)
304
- - 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][])
305
456
 
306
457
  ### Changed
307
458
 
308
- - Enforced minimum version requirements for instrumentation (#944)
309
- - RubyGems minimum version requirement 2.0.0 (#954) (@Joas1988)
310
- - 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][])
311
462
 
312
463
  ### Fixed
313
464
 
314
- - AWS instrumentation patching when AWS is partially loaded (#938, #945) (@letiesperon, @illdelph)
315
- - NoMethodError for RuleSampler with priority sampling (#949, #950) (@BabyGroot)
316
- - Runtime metrics accumulating service names when disabled (#956)
317
- - Sidekiq instrumentation incompatibility with Rails 6.0.2 (#943, #947) (@pj0tr)
318
- - Documentation tweaks (#948, #955) (@mstruve, @link04)
319
- - 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][])
320
471
 
321
472
  ## [0.32.0] - 2020-01-22
322
473
 
@@ -326,18 +477,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.1...v0.32.0
326
477
 
327
478
  ### Added
328
479
 
329
- - New transport: Datadog::Transport::IO (#910)
330
- - Dual License (#893, #921)
480
+ - New transport: Datadog::Transport::IO ([#910][])
481
+ - Dual License ([#893][], [#921][])
331
482
 
332
483
  ### Changed
333
484
 
334
- - Improved annotation of `net/http` spans during exception (#888, #907) (@djmb, @ericmustin)
335
- - 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][])
336
487
 
337
488
  ### Refactored
338
489
 
339
- - Improved support for multiple tracer instances (#919)
340
- - Improvements to test suite (#909, #928, #929)
490
+ - Improved support for multiple tracer instances ([#919][])
491
+ - Improvements to test suite ([#909][], [#928][], [#929][])
341
492
 
342
493
  ## [0.31.1] - 2020-01-15
343
494
 
@@ -347,13 +498,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.31.0...v0.31.1
347
498
 
348
499
  ### Fixed
349
500
 
350
- - Implement SyncWriter#stop method (#914, #915) (@Yurokle)
351
- - Fix references to Datadog::Tracer.log (#912)
352
- - 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][])
353
504
 
354
505
  ### Refactored
355
506
 
356
- - Improvements to test suite & CI (#911, #918)
507
+ - Improvements to test suite & CI ([#911][], [#918][])
357
508
 
358
509
  ## [0.31.0] - 2020-01-07
359
510
 
@@ -363,27 +514,27 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.1...v0.31.0
363
514
 
364
515
  ### Added
365
516
 
366
- - Ruby 2.7 support (#805, #896)
367
- - ActionCable integration (#132, #824) (@renchap, @ericmustin)
368
- - Faraday 1.0 support (#906)
369
- - Set resource for Rails template spans (#855, #881) (@djmb)
370
- - at_exit hook for graceful Tracer shutdown (#884)
371
- - 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][])
372
523
 
373
524
  ### Changed
374
525
 
375
- - Updated partial trace flushing to conform with new back-end requirements (#845)
376
- - Store numeric tags as metrics (#886)
377
- - Moved logging from Datadog::Tracer to Datadog::Logger (#880)
378
- - 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][])
379
530
 
380
531
  ### Fixed
381
532
 
382
- - SyncWriter incompatibility with Transport::HTTP::Client (#903, #904) (@Yurokle)
533
+ - SyncWriter incompatibility with Transport::HTTP::Client ([#903][], [#904][]) ([@Yurokle][])
383
534
 
384
535
  ### Refactored
385
536
 
386
- - Improvements to test suite & CI (#815, #821, #841, #846, #883, #895)
537
+ - Improvements to test suite & CI ([#815][], [#821][], [#841][], [#846][], [#883][], [#895][])
387
538
 
388
539
  ## [0.30.1] - 2019-12-30
389
540
 
@@ -393,12 +544,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.30.0...v0.30.1
393
544
 
394
545
  ### Fixed
395
546
 
396
- - NoMethodError when configuring tracer with SyncWriter (#899, #900) (@Yurokle)
397
- - 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][])
398
549
 
399
550
  ### Refactored
400
551
 
401
- - Improvements to test suite & CI (#815, #821, #846, #883, #890, #894)
552
+ - Improvements to test suite & CI ([#815][], [#821][], [#846][], [#883][], [#890][], [#894][])
402
553
 
403
554
  ## [0.30.0] - 2019-12-04
404
555
 
@@ -408,13 +559,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.1...v0.30.0
408
559
 
409
560
  ### Added
410
561
 
411
- - Additional tracer health metrics (#867)
412
- - Integration patching instrumentation (#871)
413
- - Rule-based trace sampling (#854)
562
+ - Additional tracer health metrics ([#867][])
563
+ - Integration patching instrumentation ([#871][])
564
+ - Rule-based trace sampling ([#854][])
414
565
 
415
566
  ### Fixed
416
567
 
417
- - Rails template layout name error (#872) (@djmb)
568
+ - Rails template layout name error ([#872][]) ([@djmb][])
418
569
 
419
570
  ## [0.29.1] - 2019-11-26
420
571
 
@@ -424,7 +575,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.29.0...v0.29.1
424
575
 
425
576
  ### Fixed
426
577
 
427
- - Priority sampling not activating by default (#868)
578
+ - Priority sampling not activating by default ([#868][])
428
579
 
429
580
  ## [0.29.0] - 2019-11-20
430
581
 
@@ -434,25 +585,25 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.28.0...v0.29.0
434
585
 
435
586
  ### Added
436
587
 
437
- - Tracer health metrics (#838, #859)
588
+ - Tracer health metrics ([#838][], [#859][])
438
589
 
439
590
  ### Changed
440
591
 
441
- - Default trace buffer size from 100 to 1000 (#865)
442
- - Rack request start headers to accept more values (#832) (@JamesHarker)
443
- - 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][])
444
595
 
445
596
  ### Fixed
446
597
 
447
- - Synthetics trace context being ignored (#856)
598
+ - Synthetics trace context being ignored ([#856][])
448
599
 
449
600
  ### Refactored
450
601
 
451
- - Tracer buffer constants (#851)
602
+ - Tracer buffer constants ([#851][])
452
603
 
453
604
  ### Removed
454
605
 
455
- - Some old Ruby 1.9 code (#819, #844)
606
+ - Some old Ruby 1.9 code ([#819][], [#844][])
456
607
 
457
608
  ## [0.28.0] - 2019-10-01
458
609
 
@@ -462,13 +613,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.27.0...v0.28.0
462
613
 
463
614
  ### Added
464
615
 
465
- - Support for Rails 6.0 (#814)
466
- - Multiplexing on hostname/port for Dalli (#823)
467
- - 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][])
468
619
 
469
620
  ### Refactored
470
621
 
471
- - Encapsulate span resource name in Faraday integration (#811) (@giancarlocosta)
622
+ - Encapsulate span resource name in Faraday integration ([#811][]) ([@giancarlocosta][])
472
623
 
473
624
  ## [0.27.0] - 2019-09-04
474
625
 
@@ -486,16 +637,16 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
486
637
 
487
638
  ### Added
488
639
 
489
- - Support for Ruby 2.5 & 2.6 (#800, #802)
490
- - Ethon integration (#527, #778) (@al-kudryavtsev)
640
+ - Support for Ruby 2.5 & 2.6 ([#800][], [#802][])
641
+ - Ethon integration ([#527][], [#778][]) ([@al-kudryavtsev][])
491
642
 
492
643
  ### Refactored
493
644
 
494
- - Rails integration into smaller integrations per component (#747, #762, #795)
645
+ - Rails integration into smaller integrations per component ([#747][], [#762][], [#795][])
495
646
 
496
647
  ### Removed
497
648
 
498
- - Support for Ruby 1.9 (#791)
649
+ - Support for Ruby 1.9 ([#791][])
499
650
 
500
651
  ## [0.26.0] - 2019-08-06
501
652
 
@@ -513,15 +664,15 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
513
664
 
514
665
  ### Added
515
666
 
516
- - Container ID tagging for containerized environments (#784)
667
+ - Container ID tagging for containerized environments ([#784][])
517
668
 
518
669
  ### Refactored
519
670
 
520
- - Datadog::Metrics constants (#789)
671
+ - Datadog::Metrics constants ([#789][])
521
672
 
522
673
  ### Removed
523
674
 
524
- - Datadog::HTTPTransport and related components (#782)
675
+ - Datadog::HTTPTransport and related components ([#782][])
525
676
 
526
677
  ## [0.25.1] - 2019-07-16
527
678
 
@@ -531,7 +682,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.25.0...v0.25.1
531
682
 
532
683
  ### Fixed
533
684
 
534
- - Redis integration not quantizing AUTH command (#776)
685
+ - Redis integration not quantizing AUTH command ([#776][])
535
686
 
536
687
  ## [0.25.0] - 2019-06-27
537
688
 
@@ -549,25 +700,25 @@ Version 0.26.x will receive only critical bugfixes for 1 year following the rele
549
700
 
550
701
  ### Added
551
702
 
552
- - Unix socket support for transport layer (#770)
703
+ - Unix socket support for transport layer ([#770][])
553
704
 
554
705
  ### Changed
555
706
 
556
- - Renamed 'ForcedTracing' to 'ManualTracing' (#765)
707
+ - Renamed 'ForcedTracing' to 'ManualTracing' ([#765][])
557
708
 
558
709
  ### Fixed
559
710
 
560
- - HTTP headers for distributed tracing sometimes appearing in duplicate (#768)
711
+ - HTTP headers for distributed tracing sometimes appearing in duplicate ([#768][])
561
712
 
562
713
  ### Refactored
563
714
 
564
- - Transport layer (#628)
715
+ - Transport layer ([#628][])
565
716
 
566
717
  ### Deprecated
567
718
 
568
- - Ruby < 2.0 support (#771)
569
- - Use of `Datadog::HTTPTransport` (#628)
570
- - 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][])
571
722
 
572
723
  ## [0.24.0] - 2019-05-21
573
724
 
@@ -577,9 +728,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.3...v0.24.0
577
728
 
578
729
  ### Added
579
730
 
580
- - B3 header support (#753)
581
- - Hostname tagging option (#760)
582
- - Contribution and development guides (#754)
731
+ - B3 header support ([#753][])
732
+ - Hostname tagging option ([#760][])
733
+ - Contribution and development guides ([#754][])
583
734
 
584
735
  ## [0.23.3] - 2019-05-16
585
736
 
@@ -589,7 +740,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.2...v0.23.3
589
740
 
590
741
  ### Fixed
591
742
 
592
- - Integrations initializing tracer at load time (#756)
743
+ - Integrations initializing tracer at load time ([#756][])
593
744
 
594
745
  ## [0.23.2] - 2019-05-10
595
746
 
@@ -599,9 +750,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.1...v0.23.2
599
750
 
600
751
  ### Fixed
601
752
 
602
- - Span types for HTTP, web, and some datastore integrations (#751)
603
- - AWS integration not patching service-level gems (#707, #752) (@alksl, @tonypinder)
604
- - 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][])
605
756
 
606
757
  ## [0.23.1] - 2019-05-02
607
758
 
@@ -611,7 +762,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.23.0...v0.23.1
611
762
 
612
763
  ### Fixed
613
764
 
614
- - NoMethodError runtime_metrics for SyncWriter (#748)
765
+ - NoMethodError runtime_metrics for SyncWriter ([#748][])
615
766
 
616
767
  ## [0.23.0] - 2019-04-30
617
768
 
@@ -621,16 +772,16 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.22.0...v0.23.0
621
772
 
622
773
  ### Added
623
774
 
624
- - Error status support via tags for OpenTracing (#739)
625
- - Forced sampling support via tags (#720)
775
+ - Error status support via tags for OpenTracing ([#739][])
776
+ - Forced sampling support via tags ([#720][])
626
777
 
627
778
  ### Fixed
628
779
 
629
- - Wrong return values for Rake integration (#742) (@Redapted)
780
+ - Wrong return values for Rake integration ([#742][]) ([@Redapted][])
630
781
 
631
782
  ### Removed
632
783
 
633
- - Obsolete service telemetry (#738)
784
+ - Obsolete service telemetry ([#738][])
634
785
 
635
786
  ## [0.22.0] - 2019-04-15
636
787
 
@@ -642,11 +793,11 @@ In this release we are adding initial support for the **beta** [Runtime metrics
642
793
 
643
794
  ### Changed
644
795
 
645
- - Add warning log if an integration is incompatible (#722) (@ericmustin)
796
+ - Add warning log if an integration is incompatible ([#722][]) ([@ericmustin][])
646
797
 
647
798
  ### Added
648
799
 
649
- - Initial beta support for Runtime metrics collection (#677)
800
+ - Initial beta support for Runtime metrics collection ([#677][])
650
801
 
651
802
  ## [0.21.2] - 2019-04-10
652
803
 
@@ -656,7 +807,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.1...v0.21.2
656
807
 
657
808
  ### Changed
658
809
 
659
- - Support Mongo gem 2.5+ (#729, #731) (@ricbartm)
810
+ - Support Mongo gem 2.5+ ([#729][], [#731][]) ([@ricbartm][])
660
811
 
661
812
  ## [0.21.1] - 2019-03-26
662
813
 
@@ -666,7 +817,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.21.0...v0.21.1
666
817
 
667
818
  ### Changed
668
819
 
669
- - Support `TAG_ENABLED` for custom instrumentation with analytics. (#728)
820
+ - Support `TAG_ENABLED` for custom instrumentation with analytics. ([#728][])
670
821
 
671
822
  ## [0.21.0] - 2019-03-20
672
823
 
@@ -676,17 +827,17 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.20.0...v0.21.0
676
827
 
677
828
  ### Added
678
829
 
679
- - Trace analytics support (#697, #715)
680
- - HTTP after_request span hook (#716, #724)
830
+ - Trace analytics support ([#697][], [#715][])
831
+ - HTTP after_request span hook ([#716][], [#724][])
681
832
 
682
833
  ### Fixed
683
834
 
684
- - Distributed traces with IDs in 2^64 range being dropped (#719)
685
- - 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][])
686
837
 
687
838
  ### Refactored
688
839
 
689
- - Global configuration for tracing into configuration API (#714)
840
+ - Global configuration for tracing into configuration API ([#714][])
690
841
 
691
842
  ## [0.20.0] - 2019-03-07
692
843
 
@@ -699,24 +850,24 @@ These changes are backwards compatible, but all integration configuration should
699
850
 
700
851
  ### Added
701
852
 
702
- - Propagate synthetics origin header (#699)
853
+ - Propagate synthetics origin header ([#699][])
703
854
 
704
855
  ### Changed
705
856
 
706
- - Enable distributed tracing by default (#701)
857
+ - Enable distributed tracing by default ([#701][])
707
858
 
708
859
  ### Fixed
709
860
 
710
- - Fix Rack http_server.queue spans missing from distributed traces (#709)
861
+ - Fix Rack http_server.queue spans missing from distributed traces ([#709][])
711
862
 
712
863
  ### Refactored
713
864
 
714
- - Refactor MongoDB to use instrumentation module (#704)
715
- - Refactor HTTP to use instrumentation module (#703)
716
- - Deprecate GRPC global pin in favor of configuration API (#702)
717
- - Deprecate Grape pin in favor of configuration API (#700)
718
- - Deprecate Faraday pin in favor of configuration API (#696)
719
- - 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][])
720
871
 
721
872
  ## [0.19.1] - 2019-02-07
722
873
 
@@ -726,11 +877,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.19.0...v0.19.1
726
877
 
727
878
  ### Added
728
879
 
729
- - Documentation for Lograge implementation (#683, #687) (@nic-lan)
880
+ - Documentation for Lograge implementation ([#683][], [#687][]) ([@nic-lan][])
730
881
 
731
882
  ### Fixed
732
883
 
733
- - Priority sampling dropping spans (#686)
884
+ - Priority sampling dropping spans ([#686][])
734
885
 
735
886
  ## [0.19.0] - 2019-01-22
736
887
 
@@ -740,12 +891,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.3...v0.19.0
740
891
 
741
892
  ### Added
742
893
 
743
- - Tracer#active_correlation for adding correlation IDs to logs. (#660, #664, #673)
744
- - 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][])
745
896
 
746
897
  ### Changed
747
898
 
748
- - Priority sampling enabled by default. (#654)
899
+ - Priority sampling enabled by default. ([#654][])
749
900
 
750
901
  ## [0.18.3] - 2019-01-17
751
902
 
@@ -755,9 +906,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.2...v0.18.3
755
906
 
756
907
  ### Fixed
757
908
 
758
- - Mongo `NoMethodError` when no span available during `#failed`. (#674, #675) (@Azure7111)
759
- - Rack deprecation warnings firing with some 3rd party libraries present. (#672)
760
- - 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][])
761
912
 
762
913
  ## [0.18.2] - 2019-01-03
763
914
 
@@ -767,8 +918,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.1...v0.18.2
767
918
 
768
919
  ### Fixed
769
920
 
770
- - Unfinished Mongo spans when SASL configured (#658) (@zachmccormick)
771
- - 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][])
772
923
 
773
924
  ## [0.18.1] - 2018-12-20
774
925
 
@@ -778,7 +929,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.18.0...v0.18.1
778
929
 
779
930
  ### Fixed
780
931
 
781
- - 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][])
782
933
 
783
934
  ## [0.18.0] - 2018-12-18
784
935
 
@@ -788,15 +939,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.3...v0.18.0
788
939
 
789
940
  ### Added
790
941
 
791
- - Shoryuken integration (#538, #626, #655) (@steveh, @JustSnow)
792
- - Sidekiq client integration (#602, #650) (@dirk)
793
- - 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][])
794
945
 
795
946
  ### Changed
796
947
 
797
- - Use `DD_AGENT_HOST` and `DD_TRACE_AGENT_PORT` env vars if available (#631)
798
- - Inject `:connection` into `sql.active_record` event (#640, #649, #656) (@guizmaii)
799
- - 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][])
800
951
 
801
952
  ## [0.17.3] - 2018-11-29
802
953
 
@@ -806,9 +957,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.2...v0.17.3
806
957
 
807
958
  ### Fixed
808
959
 
809
- - Bad resource names for Grape::API objects in Grape 1.2.0 (#639)
810
- - RestClient raising NoMethodError when response is `nil` (#636, #642) (@frsantos)
811
- - 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][])
812
963
 
813
964
  ## [0.17.2] - 2018-11-23
814
965
 
@@ -818,7 +969,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.1...v0.17.2
818
969
 
819
970
  ### Fixed
820
971
 
821
- - Resque integration shutting down tracer when forking is disabled (#637)
972
+ - Resque integration shutting down tracer when forking is disabled ([#637][])
822
973
 
823
974
  ## [0.17.1] - 2018-11-07
824
975
 
@@ -828,8 +979,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.17.0...v0.17.1
828
979
 
829
980
  ### Fixed
830
981
 
831
- - RestClient incorrect app type (#583) (@gaborszakacs)
832
- - 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][])
833
984
 
834
985
  ## [0.17.0] - 2018-10-30
835
986
 
@@ -839,18 +990,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.1...v0.17.0
839
990
 
840
991
  ### Added
841
992
 
842
- - [BETA] Span memory `allocations` attribute (#597) (@dasch)
993
+ - [BETA] Span memory `allocations` attribute ([#597][]) ([@dasch][])
843
994
 
844
995
  ### Changed
845
996
 
846
- - Use Rack Env to update resource in Rails (#580) (@dasch)
847
- - Expand support for Sidekiq to 3.5.4+ (#593)
848
- - 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][])
849
1000
 
850
1001
  ### Refactored
851
1002
 
852
- - Upgraded integrations to new API (#544)
853
- - Encoding classes into modules (#598)
1003
+ - Upgraded integrations to new API ([#544][])
1004
+ - Encoding classes into modules ([#598][])
854
1005
 
855
1006
  ## [0.16.1] - 2018-10-17
856
1007
 
@@ -860,8 +1011,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.16.0...v0.16.1
860
1011
 
861
1012
  ### Fixed
862
1013
 
863
- - Priority sampling response being mishandled (#591)
864
- - HTTP open timeout to agent too long (#582)
1014
+ - Priority sampling response being mishandled ([#591][])
1015
+ - HTTP open timeout to agent too long ([#582][])
865
1016
 
866
1017
  ## [0.16.0] - 2018-09-18
867
1018
 
@@ -871,8 +1022,8 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.15.0...v0.16.0
871
1022
 
872
1023
  ### Added
873
1024
 
874
- - OpenTracing support (#517)
875
- - `middleware` option for disabling Rails trace middleware. (#552)
1025
+ - OpenTracing support ([#517][])
1026
+ - `middleware` option for disabling Rails trace middleware. ([#552][])
876
1027
 
877
1028
  ## [0.15.0] - 2018-09-12
878
1029
 
@@ -882,13 +1033,13 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.2...v0.15.0
882
1033
 
883
1034
  ### Added
884
1035
 
885
- - Rails 5.2 support (#535)
886
- - Context propagation support for `Concurrent::Future` (#415, #496)
1036
+ - Rails 5.2 support ([#535][])
1037
+ - Context propagation support for `Concurrent::Future` ([#415][], [#496][])
887
1038
 
888
1039
  ### Fixed
889
1040
 
890
- - Grape uninitialized constant TraceMiddleware (#525, #533) (@dim)
891
- - 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][])
892
1043
 
893
1044
  ## [0.14.2] - 2018-08-23
894
1045
 
@@ -898,7 +1049,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.1...v0.14.2
898
1049
 
899
1050
  ### Fixed
900
1051
 
901
- - Sampling priority from request headers not being used (#521)
1052
+ - Sampling priority from request headers not being used ([#521][])
902
1053
 
903
1054
  ## [0.14.1] - 2018-08-21
904
1055
 
@@ -908,11 +1059,11 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0...v0.14.1
908
1059
 
909
1060
  ### Changed
910
1061
 
911
- - Reduce verbosity of connection errors in log (#515)
1062
+ - Reduce verbosity of connection errors in log ([#515][])
912
1063
 
913
1064
  ### Fixed
914
1065
 
915
- - Sequel 'not a valid integration' error (#514, #516) (@steveh)
1066
+ - Sequel 'not a valid integration' error ([#514][], [#516][]) ([@steveh][])
916
1067
 
917
1068
  ## [0.14.0] - 2018-08-14
918
1069
 
@@ -922,22 +1073,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.2...v0.14.0
922
1073
 
923
1074
  ### Added
924
1075
 
925
- - RestClient integration (#422, #460)
926
- - DelayedJob integration (#393 #444)
927
- - Version information to integrations (#483)
928
- - 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][])
929
1080
 
930
1081
  ### Changed
931
1082
 
932
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
933
- - ActiveRecord to allow configuring multiple databases (#451)
934
- - 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][])
935
1086
 
936
1087
  ### Fixed
937
1088
 
938
- - Context propagation for distributed traces when context is full (#502)
939
- - Rake shutdown tracer after execution (#487) (@kissrobber)
940
- - 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][])
941
1092
 
942
1093
  ## [0.14.0.rc1] - 2018-08-08
943
1094
 
@@ -947,12 +1098,12 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta2...v0.14.0
947
1098
 
948
1099
  ### Added
949
1100
 
950
- - RestClient integration (#422, #460)
951
- - Tracer#active_root_span helper (#503)
1101
+ - RestClient integration ([#422][], [#460][])
1102
+ - Tracer#active_root_span helper ([#503][])
952
1103
 
953
1104
  ### Fixed
954
1105
 
955
- - Context propagation for distributed traces when context is full (#502)
1106
+ - Context propagation for distributed traces when context is full ([#502][])
956
1107
 
957
1108
  ## [0.14.0.beta2] - 2018-07-25
958
1109
 
@@ -962,7 +1113,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.14.0.beta1...v0.14.0
962
1113
 
963
1114
  ### Fixed
964
1115
 
965
- - Rake shutdown tracer after execution (#487) @kissrobber
1116
+ - Rake shutdown tracer after execution ([#487][]) [@kissrobber][]
966
1117
 
967
1118
  ## [0.14.0.beta1] - 2018-07-24
968
1119
 
@@ -972,19 +1123,19 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.14.0.beta1
972
1123
 
973
1124
  ### Changed
974
1125
 
975
- - Resque to flush traces when Job finishes instead of using SyncWriter (#474)
976
- - ActiveRecord to allow configuring multiple databases (#451)
977
- - 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][])
978
1129
 
979
1130
  ### Fixed
980
1131
 
981
- - Ruby warnings during tests (#499)
982
- - 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][])
983
1134
 
984
1135
  ### Added
985
1136
 
986
- - DelayedJob integration (#393 #444)
987
- - Version information to integrations (#483)
1137
+ - DelayedJob integration ([#393][] [#444][])
1138
+ - Version information to integrations ([#483][])
988
1139
 
989
1140
  ## [0.13.2] - 2018-08-07
990
1141
 
@@ -994,7 +1145,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.1...v0.13.2
994
1145
 
995
1146
  ### Fixed
996
1147
 
997
- - Context propagation for distributed traces when context is full (#502)
1148
+ - Context propagation for distributed traces when context is full ([#502][])
998
1149
 
999
1150
  ## [0.13.1] - 2018-07-17
1000
1151
 
@@ -1004,15 +1155,15 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.13.0...v0.13.1
1004
1155
 
1005
1156
  ### Changed
1006
1157
 
1007
- - Configuration class variables don't lazy load (#477)
1008
- - 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][])
1009
1160
 
1010
1161
  ### Fixed
1011
1162
 
1012
- - Workers not shutting down quickly in some short running processes (#475)
1013
- - Missing documentation for mysql2 and Rails (#476, #488)
1014
- - Missing variable in rescue block (#481) (@kitop)
1015
- - 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][])
1016
1167
 
1017
1168
  ## [0.13.0] - 2018-06-20
1018
1169
 
@@ -1022,31 +1173,31 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.1...v0.13.0
1022
1173
 
1023
1174
  ### Added
1024
1175
 
1025
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
1026
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
1027
- - ActiveModelSerializers integration (#340) (@sullimander)
1028
- - Excon integration (#211, #426) (@walterking, @jeffjo)
1029
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
1030
- - Request queuing tracing to Rack (experimental) (#272)
1031
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
1032
- - Request and response header tags to Rack (#389)
1033
- - Request and response header tags to Sinatra (#427, #375)
1034
- - MySQL2 integration (#453) (@jamiehodge)
1035
- - 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][])
1036
1187
 
1037
1188
  ### Fixed
1038
1189
 
1039
- - Elasticsearch quantization of ids (#458)
1040
- - MongoDB to allow quantization of collection name (#463)
1190
+ - Elasticsearch quantization of ids ([#458][])
1191
+ - MongoDB to allow quantization of collection name ([#463][])
1041
1192
 
1042
1193
  ### Refactored
1043
1194
 
1044
- - Hash quantization into core library (#410)
1045
- - MongoDB integration to use Hash quantization library (#463)
1195
+ - Hash quantization into core library ([#410][])
1196
+ - MongoDB integration to use Hash quantization library ([#463][])
1046
1197
 
1047
1198
  ### Changed
1048
1199
 
1049
- - Hash quantization truncates arrays with nested objects (#463)
1200
+ - Hash quantization truncates arrays with nested objects ([#463][])
1050
1201
 
1051
1202
  ## [0.13.0.beta1] - 2018-05-09
1052
1203
 
@@ -1056,18 +1207,18 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.13.0.beta1
1056
1207
 
1057
1208
  ### Added
1058
1209
 
1059
- - Sequel integration (supporting Ruby 2.0+) (#171, #367) (@randy-girard, @twe4ked, @palin)
1060
- - gRPC integration (supporting Ruby 2.2+) (#379, #403) (@Jared-Prime)
1061
- - ActiveModelSerializers integration (#340) (@sullimander)
1062
- - Excon integration (#211) (@walterking)
1063
- - Rake integration (supporting Ruby 2.0+, Rake 12.0+) (#409)
1064
- - Request queuing tracing to Rack (experimental) (#272)
1065
- - ActiveSupport::Notifications::Event helper for event tracing (#400)
1066
- - 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][])
1067
1218
 
1068
1219
  ### Refactored
1069
1220
 
1070
- - Hash quantization into core library (#410)
1221
+ - Hash quantization into core library ([#410][])
1071
1222
 
1072
1223
  ## [0.12.1] - 2018-06-12
1073
1224
 
@@ -1077,22 +1228,22 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0...v0.12.1
1077
1228
 
1078
1229
  ### Changed
1079
1230
 
1080
- - Cache configuration `Proxy` objects (#446)
1081
- - `freeze` more constant strings, to improve memory usage (#446)
1082
- - `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][])
1083
1234
 
1084
1235
  ### Fixed
1085
1236
 
1086
- - Net/HTTP integration not permitting `service_name` to be overridden. (#407, #430) (@undergroundwebdesigns)
1087
- - Block not being passed through Elasticsearch client initialization. (#421) (@shayonj)
1088
- - Devise raising `NoMethodError` when bad login attempts are made. (#419, #420) (@frsantos)
1089
- - AWS spans using wrong resource name (#374, #377) (@jfrancoist)
1090
- - 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][])
1091
1242
 
1092
1243
  ### Refactored
1093
1244
 
1094
- - ActionController patching strategy using modules. (#439)
1095
- - ActionView tracing strategy. (#445, #447)
1245
+ - ActionController patching strategy using modules. ([#439][])
1246
+ - ActionView tracing strategy. ([#445][], [#447][])
1096
1247
 
1097
1248
  ## [0.12.0] - 2018-05-08
1098
1249
 
@@ -1102,34 +1253,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0
1102
1253
 
1103
1254
  ### Added
1104
1255
 
1105
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1106
- - ActiveRecord object instantiation tracing (#311, #334)
1107
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
1108
- - HTTP quantization module (#384)
1109
- - 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][])
1110
1261
 
1111
1262
  ### Changed
1112
1263
 
1113
- - Rack applies URL quantization by default (#371)
1114
- - Elasticsearch applies body quantization by default (#362)
1115
- - Context for a single trace now has hard limit of 100,000 spans (#247)
1116
- - 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][])
1117
1268
 
1118
1269
  ### Fixed
1119
1270
 
1120
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1121
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
1122
- - 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][])
1123
1274
 
1124
1275
  ### Deprecated
1125
1276
 
1126
- - 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][])
1127
1278
 
1128
1279
  ### Refactored
1129
1280
 
1130
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
1131
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
1132
- - 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][])
1133
1284
 
1134
1285
  ## [0.12.0.rc1] - 2018-04-11
1135
1286
 
@@ -1139,34 +1290,34 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.4...v0.12.0.rc1
1139
1290
 
1140
1291
  ### Added
1141
1292
 
1142
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1143
- - ActiveRecord object instantiation tracing (#311, #334)
1144
- - Subscriber module for ActiveSupport::Notifications tracing (#324, #380, #390, #395) (@dasch)
1145
- - HTTP quantization module (#384)
1146
- - 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][])
1147
1298
 
1148
1299
  ### Changed
1149
1300
 
1150
- - Rack applies URL quantization by default (#371)
1151
- - Elasticsearch applies body quantization by default (#362)
1152
- - Context for a single trace now has hard limit of 100,000 spans (#247)
1153
- - 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][])
1154
1305
 
1155
1306
  ### Fixed
1156
1307
 
1157
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1158
- - Some scenarios where `middleware_names` could result in bad resource names (#354)
1159
- - 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][])
1160
1311
 
1161
1312
  ### Deprecated
1162
1313
 
1163
- - 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][])
1164
1315
 
1165
1316
  ### Refactored
1166
1317
 
1167
- - Racecar to use ActiveSupport::Notifications Subscriber module (#381)
1168
- - Rails to use ActiveRecord integration instead of its own implementation (#396)
1169
- - 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][])
1170
1321
 
1171
1322
  ## [0.12.0.beta2] - 2018-02-28
1172
1323
 
@@ -1176,7 +1327,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.12.0.beta1...v0.12.0
1176
1327
 
1177
1328
  ### Fixed
1178
1329
 
1179
- - 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][])
1180
1331
 
1181
1332
  ## [0.12.0.beta1] - 2018-02-09
1182
1333
 
@@ -1186,9 +1337,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.12.0.beta1
1186
1337
 
1187
1338
  ### Added
1188
1339
 
1189
- - GraphQL integration (supporting graphql 1.7.9+) (#295)
1190
- - ActiveRecord object instantiation tracing (#311, #334)
1191
- - `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][])
1192
1343
 
1193
1344
  ## [0.11.4] - 2018-03-29
1194
1345
 
@@ -1198,9 +1349,9 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.3...v0.11.4
1198
1349
 
1199
1350
  ### Fixed
1200
1351
 
1201
- - Transport body parsing when downgrading (#369)
1202
- - Transport incorrectly attempting to apply sampling to service metadata (#370)
1203
- - `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][])
1204
1355
 
1205
1356
  ## [0.11.3] - 2018-03-06
1206
1357
 
@@ -1210,20 +1361,20 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.2...v0.11.3
1210
1361
 
1211
1362
  ### Added
1212
1363
 
1213
- - CHANGELOG.md (#350, #363) (@awendt)
1214
- - `http.request_id` tag to Rack spans (#335)
1215
- - 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][])
1216
1367
 
1217
1368
  ### Fixed
1218
1369
 
1219
- - Extra indentation in README.md (#349) (@ck3g)
1220
- - `http.url` when Rails raises exceptions (#351, #353)
1221
- - Rails from being patched twice (#352)
1222
- - 4XX responses from middleware being marked as errors (#345)
1223
- - Rails exception middleware sometimes not being inserted at correct position (#345)
1224
- - Processing pipeline documentation typo (#355) (@MMartyn)
1225
- - Loading the ddtrace library after Rails has fully initialized can result in load errors. (#357)
1226
- - 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][])
1227
1378
 
1228
1379
  ## [0.11.2] - 2018-02-02
1229
1380
 
@@ -1245,23 +1396,23 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.11.0...v0.11.1
1245
1396
 
1246
1397
  ### Added
1247
1398
 
1248
- - `http.base_url` tag for Rack applications (#301, #327)
1249
- - `distributed_tracing` option to Sinatra (#325)
1250
- - `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][])
1251
1402
 
1252
1403
  ### Changed
1253
1404
 
1254
- - Decoupled Sinatra and ActiveRecord integrations (#328, #330) (@hawknewton)
1255
- - Racecar uses preferred ActiveSupport::Notifications strategy (#323)
1405
+ - Decoupled Sinatra and ActiveRecord integrations ([#328][], [#330][]) ([@hawknewton][])
1406
+ - Racecar uses preferred ActiveSupport::Notifications strategy ([#323][])
1256
1407
 
1257
1408
  ### Removed
1258
1409
 
1259
- - `Datadog::Monkey` in favor of newer configuration API (#322)
1410
+ - `Datadog::Monkey` in favor of newer configuration API ([#322][])
1260
1411
 
1261
1412
  ### Fixed
1262
1413
 
1263
- - Custom resource names from Rails controllers being overridden (#321)
1264
- - 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][])
1265
1416
 
1266
1417
  ## [0.11.0] - 2018-01-17
1267
1418
 
@@ -1395,7 +1546,11 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
1395
1546
 
1396
1547
  Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1397
1548
 
1398
- [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v0.40.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
1552
+ [0.43.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.42.0...v0.43.0
1553
+ [0.41.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.40.0...v0.41.0
1399
1554
  [0.40.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.39.0...v0.40.0
1400
1555
  [0.39.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.38.0...v0.39.0
1401
1556
  [0.38.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.37.0...v0.38.0
@@ -1492,3 +1647,618 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1492
1647
  [0.1.3]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.2...v0.1.3
1493
1648
  [0.1.2]: https://github.com/DataDog/dd-trace-rb/compare/v0.1.1...v0.1.2
1494
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