excon 1.2.6 → 1.2.8

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 21ddff7fd5d4ff5c67479b875a41ceda46e2148d31048e1c50d42a6501fe6f32
4
- data.tar.gz: d878e73d1bc3b978de085a1853c9bd5b24066f9c7392c0ac17506a95fd087adf
3
+ metadata.gz: 7daa92e89d287e467d1ed621a55087ea390f6f86af2f9059eda73a6a3a4fa25b
4
+ data.tar.gz: 3d5f5a71317a5c8e492253056abcb8fa93ebf031e4783ab19f53a4b8eb9e777d
5
5
  SHA512:
6
- metadata.gz: 5faff9101fccad1dff59260c93f75f00c43f3422115e54a13d9c3183977972d051495b297ae310e85cbd8de0f168ef02d6a659cd52ef70d54c95f7a892f8a1ee
7
- data.tar.gz: a69ae24ffe83a5f63186e6aa53d6d74b9f3a28f55ab0bb92193b6853a9caafb639511f8f8e3fe76869735ca3b8683b66070fc95897a16aa125667f259121d7bf
6
+ metadata.gz: 44ae375b4814994b4169debc41b9ffe32a3a6f490c89425c41e52a3056f46073c93a5666f40d5c0936fa465ab3e5f5df8a136955a321b39bb7886fb278078ad0
7
+ data.tar.gz: d5a8776eecb60c3d0b614db08ca002e8e398202ac4bbc7e87a8969c3f671ce68e1980376894ae4e0545eec426adcc7fc26f362401ff871f1a1fe9a528b3bc524
data/data/cacert.pem CHANGED
@@ -1,7 +1,7 @@
1
1
  ##
2
2
  ## Bundle of CA Root Certificates
3
3
  ##
4
- ## Certificate data from Mozilla as of: Tue May 20 03:12:02 2025 GMT
4
+ ## Certificate data from Mozilla as of: Tue Jul 15 03:12:01 2025 GMT
5
5
  ##
6
6
  ## Find updated versions here: https://curl.se/docs/caextract.html
7
7
  ##
@@ -16,7 +16,7 @@
16
16
  ## Just configure this file as the SSLCACertificateFile.
17
17
  ##
18
18
  ## Conversion done with mk-ca-bundle.pl version 1.29.
19
- ## SHA256: 8944ec6b572b577daee4fc681a425881f841ec2660e4cb5f0eee727f84620697
19
+ ## SHA256: 579f336ace2e5717b8ecc06002ce0cce96f70623d188e1999c34b0f77696d3e9
20
20
  ##
21
21
 
22
22
 
@@ -39,6 +39,7 @@ module Excon
39
39
 
40
40
  VERSIONS = "#{USER_AGENT} (#{RUBY_PLATFORM}) ruby/#{RUBY_VERSION}".freeze
41
41
 
42
+ # FIXME: should be frozen, but with a way to change them, similar to defaults
42
43
  VALID_REQUEST_KEYS = %i[
43
44
  allow_unstubbed_requests
44
45
  body
@@ -65,8 +66,9 @@ module Excon
65
66
  user
66
67
  versions
67
68
  write_timeout
68
- ].freeze
69
+ ]
69
70
 
71
+ # FIXME: should be frozen, but with a way to change them, similar to defaults
70
72
  VALID_CONNECTION_KEYS = (VALID_REQUEST_KEYS + %i[
71
73
  ciphers
72
74
  client_key
@@ -111,7 +113,7 @@ module Excon
111
113
  tcp_nodelay
112
114
  thread_safe_sockets
113
115
  uri_parser
114
- ]).freeze
116
+ ])
115
117
 
116
118
  DEPRECATED_VALID_REQUEST_KEYS = {
117
119
  captures: 'Mock',
@@ -160,7 +162,7 @@ module Excon
160
162
  Excon::Middleware::Idempotent,
161
163
  Excon::Middleware::Instrumentor,
162
164
  Excon::Middleware::Mock
163
- ].freeze,
165
+ ],
164
166
  mock: false,
165
167
  include_default_port: false,
166
168
  nonblock: true,
data/lib/excon/version.rb CHANGED
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module Excon
4
- VERSION = '1.2.6'
4
+ VERSION = '1.2.8'
5
5
  end
data/lib/excon.rb CHANGED
@@ -48,7 +48,7 @@ module Excon
48
48
  class << self
49
49
  # @return [Hash] defaults for Excon connections
50
50
  def defaults
51
- @defaults ||= DEFAULTS
51
+ @defaults ||= DEFAULTS.dup
52
52
  end
53
53
 
54
54
  # Change defaults for Excon connections
metadata CHANGED
@@ -1,16 +1,15 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: excon
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.6
4
+ version: 1.2.8
5
5
  platform: ruby
6
6
  authors:
7
7
  - dpiddy (Dan Peterson)
8
8
  - geemus (Wesley Beary)
9
9
  - nextmat (Matt Sanders)
10
- autorequire:
11
10
  bindir: bin
12
11
  cert_chain: []
13
- date: 2025-05-27 00:00:00.000000000 Z
12
+ date: 1980-01-02 00:00:00.000000000 Z
14
13
  dependencies:
15
14
  - !ruby/object:Gem::Dependency
16
15
  name: logger
@@ -213,9 +212,9 @@ email: geemus@gmail.com
213
212
  executables: []
214
213
  extensions: []
215
214
  extra_rdoc_files:
216
- - README.md
217
- - CONTRIBUTORS.md
218
215
  - CONTRIBUTING.md
216
+ - CONTRIBUTORS.md
217
+ - README.md
219
218
  files:
220
219
  - CONTRIBUTING.md
221
220
  - CONTRIBUTORS.md
@@ -264,7 +263,6 @@ metadata:
264
263
  homepage_uri: https://github.com/excon/excon
265
264
  source_code_uri: https://github.com/excon/excon
266
265
  wiki_uri: https://github.com/excon/excon/wiki
267
- post_install_message:
268
266
  rdoc_options:
269
267
  - "--charset=UTF-8"
270
268
  require_paths:
@@ -280,8 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
280
278
  - !ruby/object:Gem::Version
281
279
  version: '0'
282
280
  requirements: []
283
- rubygems_version: 3.5.18
284
- signing_key:
281
+ rubygems_version: 3.6.9
285
282
  specification_version: 4
286
283
  summary: speed, persistence, http(s)
287
284
  test_files: []