certificate-checker 2.0.1 → 3.0.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: '07800d1fd5d5d8647f983e7cc26569a06bcdab0fb183bfca4f24fab13a57f235'
4
- data.tar.gz: 1825883d8a7360acc7af907f9db6bae703db19c403e0a208e0ea6c4607a0df68
3
+ metadata.gz: 52617e1d9e976468c5b43b9a52d94e9b100c99edf47e3fc62e2604a8da5be9f7
4
+ data.tar.gz: ba6ba0f91dcda43cabc94a0374b23a03729a64542a39562c346138aef512a420
5
5
  SHA512:
6
- metadata.gz: edea8b4b029b0a76e02a62e66caed0443cd106798268801795d79847142caca70e47d9a96d69e0deac828ad252fdb8c427138eb4e462056a95baf42cd031f63b
7
- data.tar.gz: 8268100ce7bd3d79d9142282e8a44adbb5ee380850238ff1bb606f8f48bead12b2ff8ff35006ff60fc518e018327a24ec1d42f077b81c89d2a3b1eaf8b503ef5
6
+ metadata.gz: 1b8b143502107f5d67e770609e6a319efb9119f0c5e1b2ce425c01593f6e61ed915e2d5aede9d4adfd8e18c95ba1942cb14dd4d36eb5b722c881dfb7f63a349f
7
+ data.tar.gz: 8357921d86bd372eba4b3612b97917c5c3dee716a9ad9bdbcc4fd4386d2bca369d3d11457cd88ff42df15e9793aa81b263ac23df8032f9263d0b6c9c500ba007
@@ -0,0 +1,18 @@
1
+ # To get started with Dependabot version updates, you'll need to specify which
2
+ # package ecosystems to update and where the package manifests are located.
3
+ # Please see the documentation for all configuration options:
4
+ # https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5
+
6
+ version: 2
7
+ updates:
8
+ # Open PR for gem updates
9
+ - package-ecosystem: "bundler" # See documentation for possible values
10
+ directory: "/" # Location of package manifests
11
+ schedule:
12
+ interval: "daily"
13
+
14
+ # Open PR for GitHub Actions updates
15
+ - package-ecosystem: "github-actions"
16
+ directory: "/"
17
+ schedule:
18
+ interval: "daily"
@@ -7,14 +7,12 @@ 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:
15
13
  runs-on: ubuntu-latest
16
14
  steps:
17
- - uses: actions/checkout@v2
15
+ - uses: actions/checkout@v5
18
16
  - name: Setup ruby
19
17
  uses: ruby/setup-ruby@v1
20
18
  with:
@@ -28,13 +26,13 @@ jobs:
28
26
  strategy:
29
27
  matrix:
30
28
  ruby:
31
- - "2.6"
32
- - "2.7"
33
- - "3.0"
34
29
  - "3.1"
30
+ - "3.2"
31
+ - "3.3"
32
+ - "3.4"
35
33
  name: Ruby ${{ matrix.ruby }}
36
34
  steps:
37
- - uses: actions/checkout@v2
35
+ - uses: actions/checkout@v5
38
36
  - name: Setup ruby
39
37
  uses: ruby/setup-ruby@v1
40
38
  with:
@@ -45,7 +43,7 @@ jobs:
45
43
  run: bundle exec rake
46
44
  - name: Run tests and upload coverage to Code Climate
47
45
  if: ${{ matrix.ruby == '3.0' }}
48
- uses: paambaati/codeclimate-action@v3.0.0
46
+ uses: paambaati/codeclimate-action@v9.0.0
49
47
  env:
50
48
  CC_TEST_REPORTER_ID: ${{ secrets.CODECLIMATE_TOKEN }}
51
49
  with:
data/.rubocop.yml CHANGED
@@ -1,7 +1,7 @@
1
1
  AllCops:
2
2
  AllowSymlinksInCacheRootDirectory: true
3
3
 
4
- require:
4
+ plugins:
5
5
  - rubocop-rake
6
6
  - rubocop-rspec
7
7
 
@@ -9,7 +9,7 @@ Layout/HashAlignment:
9
9
  EnforcedColonStyle: table
10
10
  EnforcedHashRocketStyle: table
11
11
 
12
- Metrics/LineLength:
12
+ Layout/LineLength:
13
13
  Max: 160
14
14
 
15
15
  Style/Documentation:
data/CHANGELOG.md CHANGED
@@ -5,6 +5,25 @@ 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
+ ## [v3.0.0](https://github.com/smortex/certificate-checker/tree/v3.0.0) (2025-10-07)
9
+
10
+ [Full Changelog](https://github.com/smortex/certificate-checker/compare/v2.0.1...v3.0.0)
11
+
12
+ **Breaking changes:**
13
+
14
+ - Switch to internet\_security\_event 4.x [\#15](https://github.com/smortex/certificate-checker/pull/15) ([smortex](https://github.com/smortex))
15
+
16
+ **Implemented enhancements:**
17
+
18
+ - Run CI on Ruby 3.4 [\#16](https://github.com/smortex/certificate-checker/pull/16) ([smortex](https://github.com/smortex))
19
+
20
+ **Merged pull requests:**
21
+
22
+ - Bump actions/checkout from 4 to 5 [\#14](https://github.com/smortex/certificate-checker/pull/14) ([dependabot[bot]](https://github.com/apps/dependabot))
23
+ - Bump paambaati/codeclimate-action from 6.0.0 to 9.0.0 [\#13](https://github.com/smortex/certificate-checker/pull/13) ([dependabot[bot]](https://github.com/apps/dependabot))
24
+ - Bump paambaati/codeclimate-action from 5.0.0 to 6.0.0 [\#11](https://github.com/smortex/certificate-checker/pull/11) ([dependabot[bot]](https://github.com/apps/dependabot))
25
+ - Bump paambaati/codeclimate-action from 3.0.0 to 5.0.0 [\#9](https://github.com/smortex/certificate-checker/pull/9) ([dependabot[bot]](https://github.com/apps/dependabot))
26
+
8
27
  ## [v2.0.1](https://github.com/smortex/certificate-checker/tree/v2.0.1) (2022-07-16)
9
28
 
10
29
  [Full Changelog](https://github.com/smortex/certificate-checker/compare/v2.0.0...v2.0.1)
@@ -13,7 +13,7 @@ Gem::Specification.new do |spec|
13
13
  spec.summary = 'Report expired/about to expires certificates in a directory tree.'
14
14
  spec.homepage = 'https://github.com/smortex/certificate-checker'
15
15
  spec.license = 'MIT'
16
- spec.required_ruby_version = Gem::Requirement.new('>= 2.6.0')
16
+ spec.required_ruby_version = Gem::Requirement.new('>= 3.1.0')
17
17
 
18
18
  # Specify which files should be added to the gem when it is released.
19
19
  # The `git ls-files -z` loads the files in the RubyGem that have been added into git.
@@ -24,7 +24,7 @@ Gem::Specification.new do |spec|
24
24
  spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
25
25
  spec.require_paths = ['lib']
26
26
 
27
- spec.add_dependency 'internet_security_event', '~> 2.0'
27
+ spec.add_dependency 'internet_security_event', '~> 4.0'
28
28
 
29
29
  spec.add_development_dependency 'bundler'
30
30
  spec.add_development_dependency 'github_changelog_generator'
@@ -1,5 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
3
  module CertificateChecker
4
- VERSION = '2.0.1'
4
+ VERSION = '3.0.0'
5
5
  end
metadata CHANGED
@@ -1,14 +1,13 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: certificate-checker
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 3.0.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Romain Tartière
8
- autorequire:
9
8
  bindir: exe
10
9
  cert_chain: []
11
- date: 2022-07-16 00:00:00.000000000 Z
10
+ date: 1980-01-02 00:00:00.000000000 Z
12
11
  dependencies:
13
12
  - !ruby/object:Gem::Dependency
14
13
  name: internet_security_event
@@ -16,14 +15,14 @@ dependencies:
16
15
  requirements:
17
16
  - - "~>"
18
17
  - !ruby/object:Gem::Version
19
- version: '2.0'
18
+ version: '4.0'
20
19
  type: :runtime
21
20
  prerelease: false
22
21
  version_requirements: !ruby/object:Gem::Requirement
23
22
  requirements:
24
23
  - - "~>"
25
24
  - !ruby/object:Gem::Version
26
- version: '2.0'
25
+ version: '4.0'
27
26
  - !ruby/object:Gem::Dependency
28
27
  name: bundler
29
28
  requirement: !ruby/object:Gem::Requirement
@@ -136,7 +135,6 @@ dependencies:
136
135
  - - ">="
137
136
  - !ruby/object:Gem::Version
138
137
  version: '0'
139
- description:
140
138
  email:
141
139
  - romain@blogreen.org
142
140
  executables:
@@ -144,6 +142,7 @@ executables:
144
142
  extensions: []
145
143
  extra_rdoc_files: []
146
144
  files:
145
+ - ".github/dependabot.yml"
147
146
  - ".github/workflows/ci.yml"
148
147
  - ".gitignore"
149
148
  - ".rspec"
@@ -170,7 +169,6 @@ homepage: https://github.com/smortex/certificate-checker
170
169
  licenses:
171
170
  - MIT
172
171
  metadata: {}
173
- post_install_message:
174
172
  rdoc_options: []
175
173
  require_paths:
176
174
  - lib
@@ -178,15 +176,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
178
176
  requirements:
179
177
  - - ">="
180
178
  - !ruby/object:Gem::Version
181
- version: 2.6.0
179
+ version: 3.1.0
182
180
  required_rubygems_version: !ruby/object:Gem::Requirement
183
181
  requirements:
184
182
  - - ">="
185
183
  - !ruby/object:Gem::Version
186
184
  version: '0'
187
185
  requirements: []
188
- rubygems_version: 3.3.17
189
- signing_key:
186
+ rubygems_version: 3.7.1
190
187
  specification_version: 4
191
188
  summary: Report expired/about to expires certificates in a directory tree.
192
189
  test_files: []