net_http_timeout_errors 1.1.0 → 1.2.0

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: 8007ea2979dcea48b4c9599b684e2f233a3b74030c4d0aa47622790fc3acf3c0
4
- data.tar.gz: c5368ae016ec50854a88abc440592c42a66f6cda80a499ce85081c22db697982
3
+ metadata.gz: e496cf050cca83432b24cb8f5f309e37994e3164f74a42a2a07418c499e77217
4
+ data.tar.gz: 3a72cacc820f57a8b3d44c86942327516459bca363be8a20e22e560f8b30a613
5
5
  SHA512:
6
- metadata.gz: dec44ce98a9a190563ea909e4e97c55c02701062b98651e6a5fbb42097f2183db4b7ca8509b6ab34926ffeebdcc234685b6403c5fa575250ba51282637d3a314
7
- data.tar.gz: dc38da7108fb3370703825648b7566da297173bb4e5d45395271cef4f68abdeddd4cb8428b1e14d114e4ce39919bfa0d8c040904e3ab25a1654d724154b90893
6
+ metadata.gz: 36e510620076389119b993bcac89a5bd75cc42dc9fbc1380b76940dd1f496fc646923969cf8eaa1d40f77cd1629a47ccde57ece5d90164eb6be7c3563554839c
7
+ data.tar.gz: 962f4156ab132dc913d67bb5a13b951892066c36ac84ff7113e81a2e88f8d953dfb450192b0302d869f6cae65ab703e81a2e72cd62d20242f3c1f4dd908bc12d
@@ -0,0 +1,6 @@
1
+ version: 2
2
+ updates:
3
+ - package-ecosystem: "github-actions"
4
+ directory: "/"
5
+ schedule:
6
+ interval: "weekly"
@@ -19,7 +19,7 @@ jobs:
19
19
  - 2.7
20
20
 
21
21
  steps:
22
- - uses: actions/checkout@v3
22
+ - uses: actions/checkout@v5
23
23
  - name: Set up Ruby ${{ matrix.ruby-version }}
24
24
  uses: ruby/setup-ruby@v1
25
25
  with:
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ # 1.2.0
4
+
5
+ - Added `Errno::ENOPROTOOPT`.
6
+
3
7
  # 1.1.0
4
8
 
5
9
  * Added `Errno::ENOTSOCK`.
@@ -1,3 +1,3 @@
1
1
  class NetHttpTimeoutErrors
2
- VERSION = "1.1.0"
2
+ VERSION = "1.2.0"
3
3
  end
@@ -11,7 +11,7 @@ end
11
11
 
12
12
  class NetHttpTimeoutErrors
13
13
  def self.all
14
- # Based on the errors listed in https://ruby-doc.org/stdlib-2.7.1/libdoc/net/http/rdoc/Net/HTTP.html#method-i-max_retries-3D.
14
+ # Based on but not limited to the errors listed in https://ruby-doc.org/stdlib-2.7.1/libdoc/net/http/rdoc/Net/HTTP.html#method-i-max_retries-3D.
15
15
  [
16
16
  EOFError,
17
17
  Errno::ECONNABORTED,
@@ -20,6 +20,7 @@ class NetHttpTimeoutErrors
20
20
  Errno::EHOSTUNREACH,
21
21
  Errno::EINVAL,
22
22
  Errno::ENETUNREACH,
23
+ Errno::ENOPROTOOPT,
23
24
  Errno::ENOTSOCK,
24
25
  Errno::EPIPE,
25
26
  Errno::ETIMEDOUT,
metadata CHANGED
@@ -1,22 +1,21 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: net_http_timeout_errors
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Henrik Nyh
8
- autorequire:
9
8
  bindir: bin
10
9
  cert_chain: []
11
- date: 2023-07-04 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies: []
13
- description:
14
12
  email:
15
13
  - henrik@nyh.se
16
14
  executables: []
17
15
  extensions: []
18
16
  extra_rdoc_files: []
19
17
  files:
18
+ - ".github/dependabot.yml"
20
19
  - ".github/workflows/ci.yml"
21
20
  - ".gitignore"
22
21
  - ".rubocop.yml"
@@ -34,7 +33,6 @@ licenses:
34
33
  - MIT
35
34
  metadata:
36
35
  rubygems_mfa_required: 'true'
37
- post_install_message:
38
36
  rdoc_options: []
39
37
  require_paths:
40
38
  - lib
@@ -49,8 +47,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
49
47
  - !ruby/object:Gem::Version
50
48
  version: '0'
51
49
  requirements: []
52
- rubygems_version: 3.4.12
53
- signing_key:
50
+ rubygems_version: 3.6.9
54
51
  specification_version: 4
55
52
  summary: Provides a list of Net::HTTP timeout errors.
56
53
  test_files: []