onceover 5.0.0 → 5.0.1
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/Gemfile +3 -3
- data/onceover.gemspec +2 -2
- metadata +7 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 52bdefeb55c5f417658f8eb8913065bac9315351ef1d935d0f889a3475422387
|
4
|
+
data.tar.gz: 608d3b638a32d937645469890638c7afd1308c3b4ba086d215bd4e77503def35
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d5036bab68f59756b43bca6d8606e9f4a67c05ff1fb6101d8e7fbbfa1220aac3a4ddc904d41094c9f698aa1d75d3712b343a5248b006f493a9d19a631178e22a
|
7
|
+
data.tar.gz: da6e5f217fe6d7656ae114872f4195f688fad622e6d6d9b2e06bec867e1f77d71773f93173ccbd873dc1234daac0544673e839938c06f18e79c899d0d10aa78f
|
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/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.1"
|
8
8
|
s.authors = ["Dylan Ratcliffe", 'Vox Pupuli']
|
9
9
|
s.email = ["voxpupuli@groups.io"]
|
10
10
|
s.homepage = "https://github.com/voxpupuli/onceover"
|
@@ -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.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Dylan Ratcliffe
|
@@ -240,14 +240,14 @@ dependencies:
|
|
240
240
|
requirements:
|
241
241
|
- - "~>"
|
242
242
|
- !ruby/object:Gem::Version
|
243
|
-
version: '
|
243
|
+
version: '13.0'
|
244
244
|
type: :runtime
|
245
245
|
prerelease: false
|
246
246
|
version_requirements: !ruby/object:Gem::Requirement
|
247
247
|
requirements:
|
248
248
|
- - "~>"
|
249
249
|
- !ruby/object:Gem::Version
|
250
|
-
version: '
|
250
|
+
version: '13.0'
|
251
251
|
description: Automatically generates tests for your Puppet code
|
252
252
|
email:
|
253
253
|
- voxpupuli@groups.io
|
@@ -259,6 +259,9 @@ files:
|
|
259
259
|
- ".devcontainer/devcontainer.json"
|
260
260
|
- ".gitattributes"
|
261
261
|
- ".github/dependabot.yml"
|
262
|
+
- ".github/labeler.yml"
|
263
|
+
- ".github/release.yml"
|
264
|
+
- ".github/workflows/labeler.yml"
|
262
265
|
- ".github/workflows/release.yaml"
|
263
266
|
- ".github/workflows/tests.yaml"
|
264
267
|
- ".gitignore"
|
@@ -591,7 +594,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
591
594
|
- !ruby/object:Gem::Version
|
592
595
|
version: '0'
|
593
596
|
requirements: []
|
594
|
-
rubygems_version: 3.6.
|
597
|
+
rubygems_version: 3.6.9
|
595
598
|
specification_version: 4
|
596
599
|
summary: Testing tools for Puppet controlrepos
|
597
600
|
test_files: []
|