ddtrace 0.41.0 → 0.46.0

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