rspec-puppet-facts 6.0.0 → 6.1.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 +4 -4
- data/.github/workflows/release.yml +6 -11
- data/.github/workflows/test.yml +3 -3
- data/.rubocop.yml +0 -3
- data/CHANGELOG.md +8 -0
- data/lib/rspec-puppet-facts/version.rb +1 -1
- data/rspec-puppet-facts.gemspec +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 3201861d1f1794841b140d088f99b654f641e4f69ce02b811473aaca66f33212
|
|
4
|
+
data.tar.gz: e39aaed2ad04a5fff83bf9452b794d6da915d763e54a115a49d7711110ec1b91
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: bb23236febe298355a2c28f307d30c7bc54b9ed756f876c4fad6caf5a11fabb449396d7aef20d5ec526a00c7142a67b1612f6e1e92279889a2abbedbe5358aa6
|
|
7
|
+
data.tar.gz: c0c4adaee237952fc17c9d298772ba77a5c2dfa023e0e1faff9dfcc93951bd45674f848c9dc525298c3489dbbc48c906143b33c6c3b508b4bb92faa12e85bcb0
|
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
permissions:
|
|
16
16
|
contents: write # clone repo and create release
|
|
17
17
|
steps:
|
|
18
|
-
- uses: actions/checkout@
|
|
18
|
+
- uses: actions/checkout@v6
|
|
19
19
|
- name: Install Ruby
|
|
20
20
|
uses: ruby/setup-ruby@v1
|
|
21
21
|
with:
|
|
@@ -24,7 +24,7 @@ jobs:
|
|
|
24
24
|
shell: bash
|
|
25
25
|
run: gem build --verbose *.gemspec
|
|
26
26
|
- name: Upload gem to GitHub cache
|
|
27
|
-
uses: actions/upload-artifact@
|
|
27
|
+
uses: actions/upload-artifact@v6
|
|
28
28
|
with:
|
|
29
29
|
name: gem-artifact
|
|
30
30
|
path: '*.gem'
|
|
@@ -34,12 +34,7 @@ jobs:
|
|
|
34
34
|
shell: bash
|
|
35
35
|
env:
|
|
36
36
|
GH_TOKEN: ${{ github.token }}
|
|
37
|
-
run: gh release create ${{ github.ref_name }} --generate-notes
|
|
38
|
-
- name: Attach gem to GitHub Release
|
|
39
|
-
shell: bash
|
|
40
|
-
env:
|
|
41
|
-
GH_TOKEN: ${{ github.token }}
|
|
42
|
-
run: gh release upload ${{ github.ref_name }} *.gem
|
|
37
|
+
run: gh release create ${{ github.ref_name }} *.gem --generate-notes
|
|
43
38
|
|
|
44
39
|
release-to-github:
|
|
45
40
|
needs: build-release
|
|
@@ -49,7 +44,7 @@ jobs:
|
|
|
49
44
|
packages: write # publish to rubygems.pkg.github.com
|
|
50
45
|
steps:
|
|
51
46
|
- name: Download gem from GitHub cache
|
|
52
|
-
uses: actions/download-artifact@
|
|
47
|
+
uses: actions/download-artifact@v7
|
|
53
48
|
with:
|
|
54
49
|
name: gem-artifact
|
|
55
50
|
- name: Publish gem to GitHub packages
|
|
@@ -64,7 +59,7 @@ jobs:
|
|
|
64
59
|
id-token: write # rubygems.org authentication
|
|
65
60
|
steps:
|
|
66
61
|
- name: Download gem from GitHub cache
|
|
67
|
-
uses: actions/download-artifact@
|
|
62
|
+
uses: actions/download-artifact@v7
|
|
68
63
|
with:
|
|
69
64
|
name: gem-artifact
|
|
70
65
|
- uses: rubygems/configure-rubygems-credentials@v1.0.0
|
|
@@ -82,7 +77,7 @@ jobs:
|
|
|
82
77
|
- release-to-rubygems
|
|
83
78
|
steps:
|
|
84
79
|
- name: Download gem from GitHub cache
|
|
85
|
-
uses: actions/download-artifact@
|
|
80
|
+
uses: actions/download-artifact@v7
|
|
86
81
|
with:
|
|
87
82
|
name: gem-artifact
|
|
88
83
|
- name: Install Ruby
|
data/.github/workflows/test.yml
CHANGED
|
@@ -19,7 +19,7 @@ jobs:
|
|
|
19
19
|
outputs:
|
|
20
20
|
ruby: ${{ steps.ruby.outputs.versions }}
|
|
21
21
|
steps:
|
|
22
|
-
- uses: actions/checkout@
|
|
22
|
+
- uses: actions/checkout@v6
|
|
23
23
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
24
24
|
uses: ruby/setup-ruby@v1
|
|
25
25
|
with:
|
|
@@ -28,7 +28,7 @@ jobs:
|
|
|
28
28
|
- name: Run Rubocop
|
|
29
29
|
run: bundle exec rake rubocop
|
|
30
30
|
- id: ruby
|
|
31
|
-
uses: voxpupuli/ruby-version@
|
|
31
|
+
uses: voxpupuli/ruby-version@v2
|
|
32
32
|
|
|
33
33
|
test:
|
|
34
34
|
needs: rubocop_and_matrix
|
|
@@ -39,7 +39,7 @@ jobs:
|
|
|
39
39
|
matrix:
|
|
40
40
|
ruby: ${{ fromJSON(needs.rubocop_and_matrix.outputs.ruby) }}
|
|
41
41
|
steps:
|
|
42
|
-
- uses: actions/checkout@
|
|
42
|
+
- uses: actions/checkout@v6
|
|
43
43
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
44
44
|
uses: ruby/setup-ruby@v1
|
|
45
45
|
with:
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [6.1.0](https://github.com/voxpupuli/rspec-puppet-facts/tree/6.1.0) (2026-02-19)
|
|
4
|
+
|
|
5
|
+
[Full Changelog](https://github.com/voxpupuli/rspec-puppet-facts/compare/6.0.0...6.1.0)
|
|
6
|
+
|
|
7
|
+
**Implemented enhancements:**
|
|
8
|
+
|
|
9
|
+
- Add Ruby 4.0 support [\#237](https://github.com/voxpupuli/rspec-puppet-facts/pull/237) ([dependabot[bot]](https://github.com/apps/dependabot))
|
|
10
|
+
|
|
3
11
|
## [6.0.0](https://github.com/voxpupuli/rspec-puppet-facts/tree/6.0.0) (2025-09-27)
|
|
4
12
|
|
|
5
13
|
[Full Changelog](https://github.com/voxpupuli/rspec-puppet-facts/compare/5.4.0...6.0.0)
|
data/rspec-puppet-facts.gemspec
CHANGED
|
@@ -23,7 +23,7 @@ Gem::Specification.new do |s|
|
|
|
23
23
|
s.add_development_dependency 'rspec', '~> 3.12'
|
|
24
24
|
s.add_development_dependency 'yard', '~> 0.9.34'
|
|
25
25
|
|
|
26
|
-
s.add_development_dependency 'voxpupuli-rubocop', '~>
|
|
26
|
+
s.add_development_dependency 'voxpupuli-rubocop', '~> 5.1.0'
|
|
27
27
|
|
|
28
28
|
s.add_dependency 'deep_merge', '~> 1.2'
|
|
29
29
|
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: rspec-puppet-facts
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 6.
|
|
4
|
+
version: 6.1.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Vox Pupuli
|
|
@@ -77,14 +77,14 @@ dependencies:
|
|
|
77
77
|
requirements:
|
|
78
78
|
- - "~>"
|
|
79
79
|
- !ruby/object:Gem::Version
|
|
80
|
-
version:
|
|
80
|
+
version: 5.1.0
|
|
81
81
|
type: :development
|
|
82
82
|
prerelease: false
|
|
83
83
|
version_requirements: !ruby/object:Gem::Requirement
|
|
84
84
|
requirements:
|
|
85
85
|
- - "~>"
|
|
86
86
|
- !ruby/object:Gem::Version
|
|
87
|
-
version:
|
|
87
|
+
version: 5.1.0
|
|
88
88
|
- !ruby/object:Gem::Dependency
|
|
89
89
|
name: deep_merge
|
|
90
90
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -180,7 +180,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
180
180
|
- !ruby/object:Gem::Version
|
|
181
181
|
version: '0'
|
|
182
182
|
requirements: []
|
|
183
|
-
rubygems_version:
|
|
183
|
+
rubygems_version: 4.0.3
|
|
184
184
|
specification_version: 4
|
|
185
185
|
summary: Standard facts fixtures for Puppet
|
|
186
186
|
test_files: []
|