ddtrace 0.51.0 → 0.51.1

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: fce3db0a7021902cfad28b09efb4781e6a1462c90735532b844366ed5a1dcb95
4
- data.tar.gz: 202ddf5a16aa72777ec7c5cd70affa62229e11e733feb7d79a3cace17cb21ced
3
+ metadata.gz: 86062d096de977021fa4a6d3d94e827f69ca4bdd5432cf52eb805b1cd5a39f9b
4
+ data.tar.gz: 7650141aa7e35974f25cd27f218a0ee0c091e006bedda51c337e31fefb471651
5
5
  SHA512:
6
- metadata.gz: 822cd2d9cbc80bd26964fe284ddc59600cc1fea8b36414a9654d595146a97035a8f929d66305046c10222cb749da63c0a9bf9aae09fa601bc727752a86d99941
7
- data.tar.gz: 3cd593083e32fb0ae0e794cd043e49a80eb22e167833824632a1e809bcf78a014e5d35466e5342232c9a903e43cf0a2a9f38d134ed5148d6d6b8693c5ddbd062
6
+ metadata.gz: 499aef18511017c04bd8f9ad78532ce544fd2a44102f40e7299768a0bdc4435c1028d703a778f148cc8dae82b8dc643767843ab02c8b6497487e34bcbff2a413
7
+ data.tar.gz: 542c6421d263c3b44dcb50e4c4bcd81cf32e3dde3404967cc6d263e6c1fc6c8d315419b6beb3b07d30aee35243c817c97950ba421d21fe5cf73bbcda92728e2e
data/CHANGELOG.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  ## [Unreleased]
4
4
 
5
+ ## [0.51.1] - 2021-07-13
6
+
7
+ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.51.1
8
+
9
+ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.51.0...v0.51.1
10
+
11
+ ### Fixed
12
+
13
+ - AWS-SDK instrumentation without `aws-sdk-s3` ([#1592][])
14
+
5
15
  ## [0.51.0] - 2021-07-12
6
16
 
7
17
  Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.51.0
@@ -1763,6 +1773,7 @@ Release notes: https://github.com/DataDog/dd-trace-rb/releases/tag/v0.3.1
1763
1773
  Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
1764
1774
 
1765
1775
  [Unreleased]: https://github.com/DataDog/dd-trace-rb/compare/v0.48.0...master
1776
+ [0.51.1]: https://github.com/DataDog/dd-trace-rb/compare/v0.51.0...v0.51.1
1766
1777
  [0.51.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.50.0...v0.51.0
1767
1778
  [0.48.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.47.0...v0.48.0
1768
1779
  [0.47.0]: https://github.com/DataDog/dd-trace-rb/compare/v0.46.0...v0.47.0
@@ -2482,6 +2493,7 @@ Git diff: https://github.com/DataDog/dd-trace-rb/compare/v0.3.0...v0.3.1
2482
2493
  [#1576]: https://github.com/DataDog/dd-trace-rb/issues/1576
2483
2494
  [#1586]: https://github.com/DataDog/dd-trace-rb/issues/1586
2484
2495
  [#1587]: https://github.com/DataDog/dd-trace-rb/issues/1587
2496
+ [#1592]: https://github.com/DataDog/dd-trace-rb/issues/1592
2485
2497
  [@AdrianLC]: https://github.com/AdrianLC
2486
2498
  [@Azure7111]: https://github.com/Azure7111
2487
2499
  [@BabyGroot]: https://github.com/BabyGroot
@@ -23,7 +23,7 @@ module Datadog
23
23
 
24
24
  # Special handling for S3 URL Presigning.
25
25
  # @see {Datadog::Contrib::Aws::S3Presigner}
26
- ::Aws::S3::Presigner.prepend S3Presigner
26
+ ::Aws::S3::Presigner.prepend(S3Presigner) if defined?(::Aws::S3::Presigner)
27
27
  end
28
28
 
29
29
  def add_plugin(*targets)
@@ -2,7 +2,7 @@ module Datadog
2
2
  module VERSION
3
3
  MAJOR = 0
4
4
  MINOR = 51
5
- PATCH = 0
5
+ PATCH = 1
6
6
  PRE = nil
7
7
 
8
8
  STRING = [MAJOR, MINOR, PATCH, PRE].compact.join('.')
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ddtrace
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.51.0
4
+ version: 0.51.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Datadog, Inc.
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2021-07-12 00:00:00.000000000 Z
11
+ date: 2021-07-13 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: msgpack