onceover 5.0.0 → 5.0.2
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 +4 -4
- data/.github/labeler.yml +3 -0
- data/.github/release.yml +40 -0
- data/.github/workflows/labeler.yml +15 -0
- data/.github/workflows/release.yaml +5 -5
- data/.github/workflows/tests.yaml +12 -6
- data/CHANGELOG.md +16 -0
- data/Gemfile +3 -3
- data/onceover.gemspec +3 -3
- metadata +15 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e6c6f4764dd048e23edbe8c95c2335e7abdfbdd7ed69cd207a3327ad71c7bfe5
|
4
|
+
data.tar.gz: c663789c81ca2c547ae3a5d99ae809b1a3fc52c7cb308d4112a2a8b2976eca56
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: e6cb1888dcd95f75636f7f59da63eee6b2035a883aa9186c3646c99b37b615ec155bfb45a4b8008c43b66250cc1d957d21995b15c6fd649cc590df49fcffacc1
|
7
|
+
data.tar.gz: 43a87f8ad68d0d091e41f593eb3af090ce343ad9b44ccb24231b50aea8d20163109d80fdba909b5ba116f31908d2db13da964f5034391856efb069425a88e12c
|
data/.github/labeler.yml
ADDED
data/.github/release.yml
ADDED
@@ -0,0 +1,40 @@
|
|
1
|
+
---
|
2
|
+
# https://docs.github.com/en/repositories/releasing-projects-on-github/automatically-generated-release-notes
|
3
|
+
|
4
|
+
changelog:
|
5
|
+
exclude:
|
6
|
+
labels:
|
7
|
+
- duplicate
|
8
|
+
- invalid
|
9
|
+
- modulesync
|
10
|
+
- question
|
11
|
+
- skip-changelog
|
12
|
+
- wont-fix
|
13
|
+
- wontfix
|
14
|
+
- github_actions
|
15
|
+
|
16
|
+
categories:
|
17
|
+
- title: Breaking Changes 🛠
|
18
|
+
labels:
|
19
|
+
- backwards-incompatible
|
20
|
+
|
21
|
+
- title: New Features 🎉
|
22
|
+
labels:
|
23
|
+
- enhancement
|
24
|
+
|
25
|
+
- title: Bug Fixes 🐛
|
26
|
+
labels:
|
27
|
+
- bug
|
28
|
+
|
29
|
+
- title: Documentation Updates 📚
|
30
|
+
labels:
|
31
|
+
- documentation
|
32
|
+
- docs
|
33
|
+
|
34
|
+
- title: Dependency Updates ⬆️
|
35
|
+
labels:
|
36
|
+
- dependencies
|
37
|
+
|
38
|
+
- title: Other Changes
|
39
|
+
labels:
|
40
|
+
- "*"
|
@@ -15,7 +15,7 @@ jobs:
|
|
15
15
|
name: Build the gem
|
16
16
|
runs-on: ubuntu-24.04
|
17
17
|
steps:
|
18
|
-
- uses: actions/checkout@
|
18
|
+
- uses: actions/checkout@v5
|
19
19
|
- name: Install Ruby
|
20
20
|
uses: ruby/setup-ruby@v1
|
21
21
|
with:
|
@@ -39,7 +39,7 @@ jobs:
|
|
39
39
|
contents: write # clone repo and create release
|
40
40
|
steps:
|
41
41
|
- name: Download gem from GitHub cache
|
42
|
-
uses: actions/download-artifact@
|
42
|
+
uses: actions/download-artifact@v5
|
43
43
|
with:
|
44
44
|
name: gem-artifact
|
45
45
|
- name: Create Release
|
@@ -56,7 +56,7 @@ jobs:
|
|
56
56
|
packages: write # publish to rubygems.pkg.github.com
|
57
57
|
steps:
|
58
58
|
- name: Download gem from GitHub cache
|
59
|
-
uses: actions/download-artifact@
|
59
|
+
uses: actions/download-artifact@v5
|
60
60
|
with:
|
61
61
|
name: gem-artifact
|
62
62
|
- name: Publish gem to GitHub packages
|
@@ -73,7 +73,7 @@ jobs:
|
|
73
73
|
id-token: write # rubygems.org authentication
|
74
74
|
steps:
|
75
75
|
- name: Download gem from GitHub cache
|
76
|
-
uses: actions/download-artifact@
|
76
|
+
uses: actions/download-artifact@v5
|
77
77
|
with:
|
78
78
|
name: gem-artifact
|
79
79
|
- uses: rubygems/configure-rubygems-credentials@v1.0.0
|
@@ -92,7 +92,7 @@ jobs:
|
|
92
92
|
- release-to-rubygems
|
93
93
|
steps:
|
94
94
|
- name: Download gem from GitHub cache
|
95
|
-
uses: actions/download-artifact@
|
95
|
+
uses: actions/download-artifact@v5
|
96
96
|
with:
|
97
97
|
name: gem-artifact
|
98
98
|
- name: Install Ruby
|
@@ -1,3 +1,4 @@
|
|
1
|
+
---
|
1
2
|
name: Tests
|
2
3
|
|
3
4
|
on:
|
@@ -6,13 +7,14 @@ on:
|
|
6
7
|
branches:
|
7
8
|
- master
|
8
9
|
|
10
|
+
permissions:
|
11
|
+
contents: read
|
12
|
+
|
9
13
|
jobs:
|
10
14
|
rubocop:
|
11
|
-
env:
|
12
|
-
BUNDLE_WITHOUT: release
|
13
15
|
runs-on: ubuntu-latest
|
14
16
|
steps:
|
15
|
-
- uses: actions/checkout@
|
17
|
+
- uses: actions/checkout@v5
|
16
18
|
- name: Install Ruby ${{ matrix.ruby }}
|
17
19
|
uses: ruby/setup-ruby@v1
|
18
20
|
with:
|
@@ -37,7 +39,7 @@ jobs:
|
|
37
39
|
|
38
40
|
runs-on: ${{ matrix.os }}
|
39
41
|
steps:
|
40
|
-
- uses: actions/checkout@
|
42
|
+
- uses: actions/checkout@v5
|
41
43
|
- uses: ruby/setup-ruby@v1
|
42
44
|
with:
|
43
45
|
ruby-version: ${{ matrix.ruby }}
|
@@ -52,10 +54,14 @@ jobs:
|
|
52
54
|
run: bundle exec rake full_tests
|
53
55
|
|
54
56
|
tests:
|
57
|
+
if: always()
|
55
58
|
needs:
|
56
59
|
- rubocop
|
57
60
|
- test
|
58
|
-
runs-on: ubuntu-
|
61
|
+
runs-on: ubuntu-24.04
|
59
62
|
name: Test suite
|
60
63
|
steps:
|
61
|
-
-
|
64
|
+
- name: Decide whether the needed jobs succeeded or failed
|
65
|
+
uses: re-actors/alls-green@release/v1
|
66
|
+
with:
|
67
|
+
jobs: ${{ toJSON(needs) }}
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [v5.0.2](https://github.com/voxpupuli/onceover/tree/v5.0.2) (2025-10-10)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v5.0.1...v5.0.2)
|
6
|
+
|
7
|
+
**Merged pull requests:**
|
8
|
+
|
9
|
+
- chore: Require git 4.x [\#367](https://github.com/voxpupuli/onceover/pull/367) ([rwaffen](https://github.com/rwaffen))
|
10
|
+
|
11
|
+
## [v5.0.1](https://github.com/voxpupuli/onceover/tree/v5.0.1) (2025-10-10)
|
12
|
+
|
13
|
+
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v5.0.0...v5.0.1)
|
14
|
+
|
15
|
+
**Merged pull requests:**
|
16
|
+
|
17
|
+
- chore: Require voxpupuli-test 13.x [\#365](https://github.com/voxpupuli/onceover/pull/365) ([rwaffen](https://github.com/rwaffen))
|
18
|
+
|
3
19
|
## [v5.0.0](https://github.com/voxpupuli/onceover/tree/v5.0.0) (2025-06-27)
|
4
20
|
|
5
21
|
[Full Changelog](https://github.com/voxpupuli/onceover/compare/v4.0.0...v5.0.0)
|
data/Gemfile
CHANGED
@@ -29,7 +29,7 @@ if File.exist?(File.join(Dir.home, '.gemfile'))
|
|
29
29
|
eval(File.read(File.join(Dir.home, '.gemfile')), binding)
|
30
30
|
end
|
31
31
|
|
32
|
-
group :release do
|
33
|
-
gem 'faraday-retry', require: false
|
34
|
-
gem 'github_changelog_generator', require: false
|
32
|
+
group :release, optional: true do
|
33
|
+
gem 'faraday-retry', '~> 2.1', require: false
|
34
|
+
gem 'github_changelog_generator', '~> 1.16.4', require: false
|
35
35
|
end
|
data/onceover.gemspec
CHANGED
@@ -4,7 +4,7 @@ $LOAD_PATH.unshift File.expand_path('lib', __dir__)
|
|
4
4
|
|
5
5
|
Gem::Specification.new do |s| # rubocop:disable Gemspec/RequireMFA
|
6
6
|
s.name = "onceover"
|
7
|
-
s.version = "5.0.
|
7
|
+
s.version = "5.0.2"
|
8
8
|
s.authors = ["Dylan Ratcliffe", 'Vox Pupuli']
|
9
9
|
s.email = ["voxpupuli@groups.io"]
|
10
10
|
s.homepage = "https://github.com/voxpupuli/onceover"
|
@@ -24,7 +24,7 @@ Gem::Specification.new do |s| # rubocop:disable Gemspec/RequireMFA
|
|
24
24
|
s.add_dependency 'colored', '~> 1.2'
|
25
25
|
s.add_dependency 'cri', '~> 2.6'
|
26
26
|
s.add_dependency 'deep_merge', '~> 1.0'
|
27
|
-
s.add_dependency 'git', '~>
|
27
|
+
s.add_dependency 'git', '~> 4.0', '>= 4.0.5'
|
28
28
|
s.add_dependency 'logging', '~> 2.0'
|
29
29
|
s.add_dependency 'multi_json', '~> 1.10'
|
30
30
|
s.add_dependency 'openvox', '~> 8.0'
|
@@ -36,5 +36,5 @@ Gem::Specification.new do |s| # rubocop:disable Gemspec/RequireMFA
|
|
36
36
|
s.add_dependency 'rspec-puppet', '~> 5.0'
|
37
37
|
s.add_dependency 'terminal-table', '~> 4.0'
|
38
38
|
s.add_dependency 'versionomy', '~> 0.5'
|
39
|
-
s.add_dependency 'voxpupuli-test', '~>
|
39
|
+
s.add_dependency 'voxpupuli-test', '~> 13.0'
|
40
40
|
end
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: onceover
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 5.0.
|
4
|
+
version: 5.0.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dylan Ratcliffe
|
@@ -72,14 +72,20 @@ dependencies:
|
|
72
72
|
requirements:
|
73
73
|
- - "~>"
|
74
74
|
- !ruby/object:Gem::Version
|
75
|
-
version: '
|
75
|
+
version: '4.0'
|
76
|
+
- - ">="
|
77
|
+
- !ruby/object:Gem::Version
|
78
|
+
version: 4.0.5
|
76
79
|
type: :runtime
|
77
80
|
prerelease: false
|
78
81
|
version_requirements: !ruby/object:Gem::Requirement
|
79
82
|
requirements:
|
80
83
|
- - "~>"
|
81
84
|
- !ruby/object:Gem::Version
|
82
|
-
version: '
|
85
|
+
version: '4.0'
|
86
|
+
- - ">="
|
87
|
+
- !ruby/object:Gem::Version
|
88
|
+
version: 4.0.5
|
83
89
|
- !ruby/object:Gem::Dependency
|
84
90
|
name: logging
|
85
91
|
requirement: !ruby/object:Gem::Requirement
|
@@ -240,14 +246,14 @@ dependencies:
|
|
240
246
|
requirements:
|
241
247
|
- - "~>"
|
242
248
|
- !ruby/object:Gem::Version
|
243
|
-
version: '
|
249
|
+
version: '13.0'
|
244
250
|
type: :runtime
|
245
251
|
prerelease: false
|
246
252
|
version_requirements: !ruby/object:Gem::Requirement
|
247
253
|
requirements:
|
248
254
|
- - "~>"
|
249
255
|
- !ruby/object:Gem::Version
|
250
|
-
version: '
|
256
|
+
version: '13.0'
|
251
257
|
description: Automatically generates tests for your Puppet code
|
252
258
|
email:
|
253
259
|
- voxpupuli@groups.io
|
@@ -259,6 +265,9 @@ files:
|
|
259
265
|
- ".devcontainer/devcontainer.json"
|
260
266
|
- ".gitattributes"
|
261
267
|
- ".github/dependabot.yml"
|
268
|
+
- ".github/labeler.yml"
|
269
|
+
- ".github/release.yml"
|
270
|
+
- ".github/workflows/labeler.yml"
|
262
271
|
- ".github/workflows/release.yaml"
|
263
272
|
- ".github/workflows/tests.yaml"
|
264
273
|
- ".gitignore"
|
@@ -591,7 +600,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
591
600
|
- !ruby/object:Gem::Version
|
592
601
|
version: '0'
|
593
602
|
requirements: []
|
594
|
-
rubygems_version: 3.6.
|
603
|
+
rubygems_version: 3.6.9
|
595
604
|
specification_version: 4
|
596
605
|
summary: Testing tools for Puppet controlrepos
|
597
606
|
test_files: []
|