ddtrace 0.42.0 → 0.47.0

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