opentelemetry-instrumentation-ethon 0.7.0 → 0.12.0

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: 03daf0fd830a610223afad9365d593c897c7ed131c301c5a5ad5d115ce97e519
4
- data.tar.gz: 075e588ac402ac54e57b466467cb3632e0a6afed2ad34f2b7882641e0fb65b64
3
+ metadata.gz: f9f260106bd701723be16b304577e945a77d2426748dc6718a9df7e558d94a15
4
+ data.tar.gz: f82913161643702a611ba676c085aef9df3ce295acd95165119d6e5b2c37a4f4
5
5
  SHA512:
6
- metadata.gz: d0052a59d72b29787a252190fd28862b4d0220dd783a5cd5c7008d3e7bac987ca2c3bba13da8debac19be2ed031daa10467b570637b561aad6d6c3a1a14c927d
7
- data.tar.gz: 00e05594964f1acd786605fdc4680032ccb859282d77bea21164aff7219fea77c32a2b86ac740be26842696a2c875915e859bb3fbf3d9d092480c3fe99af7ded
6
+ metadata.gz: a0d03b04d4ece0d5e57871efb26891c4e6af87c107a9722bfd4943b44cb5b63f8844d83204712fce3a852f33361afc3dac1cc710428b52f4fa5b538d1c76a1fc
7
+ data.tar.gz: 023a7ccd0f27fc32ed7a0af671017b09ba08a70f5b5614a2af9e9c2edad0cb52a5390a938702921846a6ff56e65e951658c4c3276c300aadd1a5c7c72c316531
@@ -1,5 +1,31 @@
1
1
  # Release History: opentelemetry-instrumentation-ethon
2
2
 
3
+ ### v0.12.0 / 2020-12-24
4
+
5
+ * (No significant changes)
6
+
7
+ ### v0.11.0 / 2020-12-11
8
+
9
+ * FIXED: Copyright comments to not reference year
10
+
11
+ ### v0.10.0 / 2020-12-03
12
+
13
+ * (No significant changes)
14
+
15
+ ### v0.9.0 / 2020-11-27
16
+
17
+ * BREAKING CHANGE: Add timeout for force_flush and shutdown
18
+
19
+ * ADDED: Add timeout for force_flush and shutdown
20
+
21
+ ### v0.8.0 / 2020-10-27
22
+
23
+ * BREAKING CHANGE: Move context/span methods to Trace module
24
+ * BREAKING CHANGE: Remove 'canonical' from status codes
25
+
26
+ * FIXED: Move context/span methods to Trace module
27
+ * FIXED: Remove 'canonical' from status codes
28
+
3
29
  ### v0.7.0 / 2020-10-07
4
30
 
5
31
  * DOCS: Add README for Ethon
data/LICENSE CHANGED
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2020 OpenTelemetry Authors
189
+ Copyright The OpenTelemetry Authors
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright 2020 OpenTelemetry Authors
3
+ # Copyright The OpenTelemetry Authors
4
4
  #
5
5
  # SPDX-License-Identifier: Apache-2.0
6
6
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright 2020 OpenTelemetry Authors
3
+ # Copyright The OpenTelemetry Authors
4
4
  #
5
5
  # SPDX-License-Identifier: Apache-2.0
6
6
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright 2020 OpenTelemetry Authors
3
+ # Copyright The OpenTelemetry Authors
4
4
  #
5
5
  # SPDX-License-Identifier: Apache-2.0
6
6
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright 2020 OpenTelemetry Authors
3
+ # Copyright The OpenTelemetry Authors
4
4
  #
5
5
  # SPDX-License-Identifier: Apache-2.0
6
6
 
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright 2020 OpenTelemetry Authors
3
+ # Copyright The OpenTelemetry Authors
4
4
  #
5
5
  # SPDX-License-Identifier: Apache-2.0
6
6
 
@@ -78,7 +78,7 @@ module OpenTelemetry
78
78
  )
79
79
 
80
80
  @otel_original_headers ||= {}
81
- tracer.with_span(@otel_span) do
81
+ OpenTelemetry::Trace.with_span(@otel_span) do
82
82
  OpenTelemetry.propagation.http.inject(@otel_original_headers)
83
83
  end
84
84
  self.headers = @otel_original_headers
@@ -1,6 +1,6 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright 2020 OpenTelemetry Authors
3
+ # Copyright The OpenTelemetry Authors
4
4
  #
5
5
  # SPDX-License-Identifier: Apache-2.0
6
6
 
@@ -1,13 +1,13 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- # Copyright 2020 OpenTelemetry Authors
3
+ # Copyright The OpenTelemetry Authors
4
4
  #
5
5
  # SPDX-License-Identifier: Apache-2.0
6
6
 
7
7
  module OpenTelemetry
8
8
  module Instrumentation
9
9
  module Ethon
10
- VERSION = '0.7.0'
10
+ VERSION = '0.12.0'
11
11
  end
12
12
  end
13
13
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opentelemetry-instrumentation-ethon
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.7.0
4
+ version: 0.12.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenTelemetry Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-10-08 00:00:00.000000000 Z
11
+ date: 2020-12-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: opentelemetry-api
@@ -16,14 +16,14 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 0.7.0
19
+ version: 0.12.0
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 0.7.0
26
+ version: 0.12.0
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: appraisal
29
29
  requirement: !ruby/object:Gem::Requirement
@@ -171,7 +171,11 @@ files:
171
171
  homepage: https://github.com/open-telemetry/opentelemetry-ruby
172
172
  licenses:
173
173
  - Apache-2.0
174
- metadata: {}
174
+ metadata:
175
+ changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-ethon/v0.12.0/file.CHANGELOG.html
176
+ source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/master/instrumentation/ethon
177
+ bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby/issues
178
+ documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-instrumentation-ethon/v0.12.0
175
179
  post_install_message:
176
180
  rdoc_options: []
177
181
  require_paths: