tls-checker 2.0.2 → 2.0.3

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: 63f8e90c286a45c2730f14ade581112be72ebccf4e57e1b8af49984f07ff167b
4
- data.tar.gz: 1774fb8e68a0185ef0a025fdd26705b42bb18a039682b593fb08ef557cd9a422
3
+ metadata.gz: d85cde38ef591725fdcba35e0e8d1900c3865e20988deb60bf4721bd0ffac249
4
+ data.tar.gz: 8b2df252fa8df6ed06676b23ae383670b4a5a3e120109195bd285f03a649d50f
5
5
  SHA512:
6
- metadata.gz: ae1a3db39aba9a9063744dca7b97d73f0f245c1ff856c973264ddaf3a70ee97fd71103e6d50ea5b65b296c4de0998f7f6c885ee2dc80577cb6df031781a4c9b5
7
- data.tar.gz: 324351d536a45b289000ca23b3555029a87f6d1c0846539a7e832b296414de1c5011a71d77aead234c33dbf82fd94c137d732d6596e9e1a178080ccf0ef1a924
6
+ metadata.gz: 789614f3072d58dbc404f7ad7b94f883f17e7842ab84408f27210bfd26e3af95ceb09f4bd874e7b727e4194ac8feb3f14969cb6f4eadbf93484178068d3df573
7
+ data.tar.gz: cf789bdc0d26f6975b2e4439573c0a1f429073448c4a6d2872218c27a079cc8af2d408fb220c3812b468495a37028085fe4af03162b3f3c342cd5a6934bc837b
@@ -7,8 +7,6 @@ on:
7
7
  pull_request:
8
8
  branches:
9
9
  - main
10
- schedule:
11
- - cron: "0 17 * * *"
12
10
 
13
11
  jobs:
14
12
  rubocop:
@@ -32,6 +30,8 @@ jobs:
32
30
  - "2.7"
33
31
  - "3.0"
34
32
  - "3.1"
33
+ - "3.2"
34
+ - "3.3"
35
35
  name: Ruby ${{ matrix.ruby }}
36
36
  steps:
37
37
  - uses: actions/checkout@v2
data/.rubocop.yml CHANGED
@@ -1,5 +1,6 @@
1
1
  AllCops:
2
2
  AllowSymlinksInCacheRootDirectory: true
3
+ TargetRubyVersion: 2.6
3
4
 
4
5
  require:
5
6
  - rubocop-rake
data/CHANGELOG.md CHANGED
@@ -5,6 +5,14 @@ All notable changes to this project will be documented in this file.
5
5
  The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/)
6
6
  and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
7
7
 
8
+ ## [v2.0.3](https://github.com/smortex/tls-checker/tree/v2.0.3) (2024-01-01)
9
+
10
+ [Full Changelog](https://github.com/smortex/tls-checker/compare/v2.0.2...v2.0.3)
11
+
12
+ **Fixed bugs:**
13
+
14
+ - Fix support for Ruby 3.2 [\#8](https://github.com/smortex/tls-checker/pull/8) ([smortex](https://github.com/smortex))
15
+
8
16
  ## [v2.0.2](https://github.com/smortex/tls-checker/tree/v2.0.2) (2022-07-16)
9
17
 
10
18
  [Full Changelog](https://github.com/smortex/tls-checker/compare/v2.0.1...v2.0.2)
@@ -55,8 +55,8 @@ module TLSChecker
55
55
  @certificate_failure = 'No peer certificate (TLS handshake failed?)'
56
56
  @certificate = false
57
57
  end
58
- rescue Errno::ECONNREFUSED, Errno::EHOSTUNREACH, Errno::ETIMEDOUT, SocketRecvTimeout => e
59
- @certificate_failure = e.message
58
+ rescue Errno::ECONNREFUSED, Errno::EHOSTUNREACH, Errno::ETIMEDOUT, SocketRecvTimeout, IO::TimeoutError => e
59
+ @certificate_failure = "#{e.class.name}: #{e.message}"
60
60
  @certificate = false
61
61
  end
62
62
 
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module TLSChecker
4
- VERSION = '2.0.2'
4
+ VERSION = '2.0.3'
5
5
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tls-checker
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.2
4
+ version: 2.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Romain Tartière
8
8
  autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2022-07-16 00:00:00.000000000 Z
11
+ date: 2024-01-01 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: internet_security_event
@@ -199,7 +199,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
199
199
  - !ruby/object:Gem::Version
200
200
  version: '0'
201
201
  requirements: []
202
- rubygems_version: 3.3.17
202
+ rubygems_version: 3.4.20
203
203
  signing_key:
204
204
  specification_version: 4
205
205
  summary: Report expired/about to expires certificates used in TLS connexions