beaker_puppet_helpers 2.3.0 → 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 +4 -4
- data/.github/workflows/release.yml +4 -4
- data/.rubocop.yml +3 -0
- data/CHANGELOG.md +16 -0
- data/Gemfile +0 -4
- data/Rakefile +1 -1
- data/beaker_puppet_helpers.gemspec +5 -3
- data/lib/beaker_puppet_helpers/dsl.rb +2 -2
- metadata +19 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: beb12f94905d8996a9533136b2ba29bd4c70956f2b7914357c943ca111e39869
|
4
|
+
data.tar.gz: 36cfcfa787c4e2ff2b9e20bad58e535c062d88682143a8cc1985f4aa53219bde
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ce9c0050e80fe4db7d2bfc9fad822456c0740cde672473531c9934b1e6b6bc205cab5305cdf32c2cc842c8b460bd0052bb9d18bad139fd95c3a09a0efb41ceba
|
7
|
+
data.tar.gz: 23b5c9cf10e4aed595a91d017ecf2928b2a2c92be2a1339597fd33edcb02c331527d249cd3d119c33ad1d8bb30d4462af85f2e65ce47377e583351785a204172
|
@@ -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
|
data/.rubocop.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,22 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [3.0.0](https://github.com/voxpupuli/beaker_puppet_helpers/tree/3.0.0) (2025-08-07)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker_puppet_helpers/compare/2.3.0...3.0.0)
|
8
|
+
|
9
|
+
**Breaking changes:**
|
10
|
+
|
11
|
+
- Require Ruby 3.2 or newer [\#73](https://github.com/voxpupuli/beaker_puppet_helpers/pull/73) ([bastelfreak](https://github.com/bastelfreak))
|
12
|
+
|
13
|
+
**Implemented enhancements:**
|
14
|
+
|
15
|
+
- beaker: Allow 7.x [\#72](https://github.com/voxpupuli/beaker_puppet_helpers/pull/72) ([bastelfreak](https://github.com/bastelfreak))
|
16
|
+
|
17
|
+
**Merged pull requests:**
|
18
|
+
|
19
|
+
- CI: Dont test on Debian 10 [\#71](https://github.com/voxpupuli/beaker_puppet_helpers/pull/71) ([bastelfreak](https://github.com/bastelfreak))
|
20
|
+
|
5
21
|
## [2.3.0](https://github.com/voxpupuli/beaker_puppet_helpers/tree/2.3.0) (2025-06-15)
|
6
22
|
|
7
23
|
[Full Changelog](https://github.com/voxpupuli/beaker_puppet_helpers/compare/2.2.0...2.3.0)
|
data/Gemfile
CHANGED
data/Rakefile
CHANGED
@@ -35,7 +35,7 @@ DESC
|
|
35
35
|
task :acceptance do
|
36
36
|
hosts = {
|
37
37
|
aio: %w[centos9 debian11 debian12],
|
38
|
-
foss: %w[
|
38
|
+
foss: %w[debian11 debian12 fedora37 fedora38],
|
39
39
|
}
|
40
40
|
default_hosts = hosts.map { |type, h| h.map { |host| "#{host}-64{type=#{type}}" }.join('-') }.join('-')
|
41
41
|
hosts = ENV['BEAKER_HOSTS'] || default_hosts
|
@@ -2,7 +2,7 @@
|
|
2
2
|
|
3
3
|
Gem::Specification.new do |s|
|
4
4
|
s.name = 'beaker_puppet_helpers'
|
5
|
-
s.version = '
|
5
|
+
s.version = '3.0.0'
|
6
6
|
s.authors = ['Vox Pupuli']
|
7
7
|
s.email = ['voxpupuli@groups.io']
|
8
8
|
s.homepage = 'https://github.com/voxpupuli/beaker_puppet_helpers'
|
@@ -10,12 +10,14 @@ Gem::Specification.new do |s|
|
|
10
10
|
s.description = 'For use for the Beaker acceptance testing tool'
|
11
11
|
s.license = 'Apache-2.0'
|
12
12
|
|
13
|
-
s.required_ruby_version = '>= 2
|
13
|
+
s.required_ruby_version = '>= 3.2', '< 4'
|
14
14
|
|
15
15
|
s.files = `git ls-files`.split("\n")
|
16
16
|
s.require_paths = ['lib']
|
17
17
|
|
18
18
|
# Run time dependencies
|
19
|
-
s.add_dependency 'beaker', '>= 5.8.1', '<
|
19
|
+
s.add_dependency 'beaker', '>= 5.8.1', '< 8'
|
20
20
|
s.add_dependency 'puppet-modulebuilder', '>= 0.3', '< 3'
|
21
|
+
|
22
|
+
s.add_development_dependency 'voxpupuli-rubocop', '~> 4.1.0'
|
21
23
|
end
|
@@ -189,8 +189,8 @@ module BeakerPuppetHelpers
|
|
189
189
|
# @return [Array<Result>, Result, nil] An array of results, a result
|
190
190
|
# object, or nil. Check {Beaker::Shared::HostManager#run_block_on} for
|
191
191
|
# more details on this.
|
192
|
-
def apply_manifest(manifest, opts = {}, &
|
193
|
-
apply_manifest_on(default, manifest, opts, &
|
192
|
+
def apply_manifest(manifest, opts = {}, &)
|
193
|
+
apply_manifest_on(default, manifest, opts, &)
|
194
194
|
end
|
195
195
|
|
196
196
|
# Get a facter fact from a provided host
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker_puppet_helpers
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version:
|
4
|
+
version: 3.0.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Vox Pupuli
|
@@ -18,7 +18,7 @@ dependencies:
|
|
18
18
|
version: 5.8.1
|
19
19
|
- - "<"
|
20
20
|
- !ruby/object:Gem::Version
|
21
|
-
version: '
|
21
|
+
version: '8'
|
22
22
|
type: :runtime
|
23
23
|
prerelease: false
|
24
24
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -28,7 +28,7 @@ dependencies:
|
|
28
28
|
version: 5.8.1
|
29
29
|
- - "<"
|
30
30
|
- !ruby/object:Gem::Version
|
31
|
-
version: '
|
31
|
+
version: '8'
|
32
32
|
- !ruby/object:Gem::Dependency
|
33
33
|
name: puppet-modulebuilder
|
34
34
|
requirement: !ruby/object:Gem::Requirement
|
@@ -49,6 +49,20 @@ dependencies:
|
|
49
49
|
- - "<"
|
50
50
|
- !ruby/object:Gem::Version
|
51
51
|
version: '3'
|
52
|
+
- !ruby/object:Gem::Dependency
|
53
|
+
name: voxpupuli-rubocop
|
54
|
+
requirement: !ruby/object:Gem::Requirement
|
55
|
+
requirements:
|
56
|
+
- - "~>"
|
57
|
+
- !ruby/object:Gem::Version
|
58
|
+
version: 4.1.0
|
59
|
+
type: :development
|
60
|
+
prerelease: false
|
61
|
+
version_requirements: !ruby/object:Gem::Requirement
|
62
|
+
requirements:
|
63
|
+
- - "~>"
|
64
|
+
- !ruby/object:Gem::Version
|
65
|
+
version: 4.1.0
|
52
66
|
description: For use for the Beaker acceptance testing tool
|
53
67
|
email:
|
54
68
|
- voxpupuli@groups.io
|
@@ -92,7 +106,7 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
92
106
|
requirements:
|
93
107
|
- - ">="
|
94
108
|
- !ruby/object:Gem::Version
|
95
|
-
version: '2
|
109
|
+
version: '3.2'
|
96
110
|
- - "<"
|
97
111
|
- !ruby/object:Gem::Version
|
98
112
|
version: '4'
|
@@ -102,7 +116,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
102
116
|
- !ruby/object:Gem::Version
|
103
117
|
version: '0'
|
104
118
|
requirements: []
|
105
|
-
rubygems_version: 3.6.
|
119
|
+
rubygems_version: 3.6.9
|
106
120
|
specification_version: 4
|
107
121
|
summary: Beaker's Puppet DSL Extension Helpers
|
108
122
|
test_files: []
|