opentelemetry-exporter-otlp 0.29.0 → 0.29.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: 32c56e204bfb604ef2808828160131ffc959afea396439f6618ca53008844eed
4
- data.tar.gz: 6e472ba246caff69859e059f40af190a360abecefeee1a177b83b7d7781a3688
3
+ metadata.gz: b920e9035eacd3b8ad78cdf84ab162787777f048283005a7d0e31a8d5ac92ddc
4
+ data.tar.gz: 6bca5054f99ffa9ce07483e7e41df0041da91a7ebce13ee82afc0eaa7cecc56b
5
5
  SHA512:
6
- metadata.gz: 52fbc4098a8130ccc4544f6cd42beb6458d016ab9cdca053a832ae12008306de832f478c9c5eca6d13dfb5f92c037112311fdb45e6566d34c650d1e3e60fcca7
7
- data.tar.gz: ce8a97c3a58f1d353203e0bcba363338ab12bd961bafe8b27c69900a6a3490964f6c036193f6491a21f1bc704bfc8e02bf05e0575802809b7a0e7780b5211889
6
+ metadata.gz: 8f5640e1d7bf493d5c27ae4a3aa513497d626d93351c1b5ee6c078f6bd04b3ebd619b121024791633c49f8c12701e3893d2ca441ced1886e6a4b1194072ef680
7
+ data.tar.gz: 6e80591be22d7d783f86c52b37614823233c8245c51e43ef245ae9ca2950335537c9fe6d5413373ae25f35d434d71f9e00545dfd0033c5cf1db3c4dc9930a1d3
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Release History: opentelemetry-exporter-otlp
2
2
 
3
+ ### v0.29.1 / 2024-12-04
4
+
5
+ * FIXED: Remove WRITE_TIMEOUT_SUPPORTED
6
+
3
7
  ### v0.29.0 / 2024-08-27
4
8
 
5
9
  * ADDED: Add support for mutual TLS.
@@ -28,8 +28,7 @@ module OpenTelemetry
28
28
  # Default timeouts in seconds.
29
29
  KEEP_ALIVE_TIMEOUT = 30
30
30
  RETRY_COUNT = 5
31
- WRITE_TIMEOUT_SUPPORTED = Gem::Version.new(RUBY_VERSION) >= Gem::Version.new('2.6')
32
- private_constant(:KEEP_ALIVE_TIMEOUT, :RETRY_COUNT, :WRITE_TIMEOUT_SUPPORTED)
31
+ private_constant(:KEEP_ALIVE_TIMEOUT, :RETRY_COUNT)
33
32
 
34
33
  ERROR_MESSAGE_INVALID_HEADERS = 'headers must be a String with comma-separated URL Encoded UTF-8 k=v pairs or a Hash'
35
34
  private_constant(:ERROR_MESSAGE_INVALID_HEADERS)
@@ -153,7 +152,7 @@ module OpenTelemetry
153
152
 
154
153
  @http.open_timeout = remaining_timeout
155
154
  @http.read_timeout = remaining_timeout
156
- @http.write_timeout = remaining_timeout if WRITE_TIMEOUT_SUPPORTED
155
+ @http.write_timeout = remaining_timeout
157
156
  @http.start unless @http.started?
158
157
  response = measure_request_duration { @http.request(request) }
159
158
 
@@ -213,7 +212,7 @@ module OpenTelemetry
213
212
  # Reset timeouts to defaults for the next call.
214
213
  @http.open_timeout = @timeout
215
214
  @http.read_timeout = @timeout
216
- @http.write_timeout = @timeout if WRITE_TIMEOUT_SUPPORTED
215
+ @http.write_timeout = @timeout
217
216
  end
218
217
 
219
218
  def handle_redirect(location)
@@ -8,7 +8,7 @@ module OpenTelemetry
8
8
  module Exporter
9
9
  module OTLP
10
10
  ## Current OpenTelemetry OTLP exporter version
11
- VERSION = '0.29.0'
11
+ VERSION = '0.29.1'
12
12
  end
13
13
  end
14
14
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: opentelemetry-exporter-otlp
3
3
  version: !ruby/object:Gem::Version
4
- version: 0.29.0
4
+ version: 0.29.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenTelemetry Authors
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-08-28 00:00:00.000000000 Z
11
+ date: 2024-12-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: googleapis-common-protos-types
@@ -289,10 +289,10 @@ homepage: https://github.com/open-telemetry/opentelemetry-ruby
289
289
  licenses:
290
290
  - Apache-2.0
291
291
  metadata:
292
- changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-exporter-otlp/v0.29.0/file.CHANGELOG.html
292
+ changelog_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-exporter-otlp/v0.29.1/file.CHANGELOG.html
293
293
  source_code_uri: https://github.com/open-telemetry/opentelemetry-ruby/tree/main/exporter/otlp
294
294
  bug_tracker_uri: https://github.com/open-telemetry/opentelemetry-ruby/issues
295
- documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-exporter-otlp/v0.29.0
295
+ documentation_uri: https://open-telemetry.github.io/opentelemetry-ruby/opentelemetry-exporter-otlp/v0.29.1
296
296
  post_install_message:
297
297
  rdoc_options: []
298
298
  require_paths: