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