beaker 7.2.1 → 7.2.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/workflows/release.yml +6 -6
- data/.github/workflows/test.yml +2 -2
- data/CHANGELOG.md +11 -1
- data/Gemfile +2 -2
- data/Rakefile +3 -5
- data/beaker.gemspec +1 -1
- data/lib/beaker/version.rb +1 -1
- metadata +9 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dca3fb90db4e3194bdfa41f3a445f855c392ec3cd132244f871626edd3b2dd87
|
|
4
|
+
data.tar.gz: 14ddd5155906b74ee138228b6dc3dfb70ff0118835eaedb90b9bc1f49a09080c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 28053a4ec06806e583e812aca81e284ec840f366d262fce57f612964a9c5e506ee479c5e75c8e4818994ce9dc9c6fb287c1bf97665b72270437b653b554650a8
|
|
7
|
+
data.tar.gz: d70f5e46253a31a7b5228d66c20d539da33b220f5b1c673066f9c6ac382deca36b68fff307192c5f973c1fadf3c56bf1ffa0f434fd454053db9d9069b3ef05be
|
|
@@ -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@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'
|
|
@@ -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@v7
|
|
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@v7
|
|
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@v7
|
|
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@v7
|
|
96
96
|
with:
|
|
97
97
|
name: gem-artifact
|
|
98
98
|
- name: Install Ruby
|
data/.github/workflows/test.yml
CHANGED
|
@@ -16,7 +16,7 @@ jobs:
|
|
|
16
16
|
outputs:
|
|
17
17
|
ruby: ${{ steps.ruby.outputs.versions }}
|
|
18
18
|
steps:
|
|
19
|
-
- uses: actions/checkout@
|
|
19
|
+
- uses: actions/checkout@v6
|
|
20
20
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
21
21
|
uses: ruby/setup-ruby@v1
|
|
22
22
|
with:
|
|
@@ -38,7 +38,7 @@ jobs:
|
|
|
38
38
|
env:
|
|
39
39
|
BEAKER_HYPERVISOR: docker
|
|
40
40
|
steps:
|
|
41
|
-
- uses: actions/checkout@
|
|
41
|
+
- uses: actions/checkout@v6
|
|
42
42
|
- name: Install Ruby ${{ matrix.ruby }}
|
|
43
43
|
uses: ruby/setup-ruby@v1
|
|
44
44
|
with:
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,16 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
## [7.2.2](https://github.com/voxpupuli/beaker/tree/7.2.2) (2025-12-19)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker/compare/7.2.1...7.2.2)
|
|
8
|
+
|
|
9
|
+
**Merged pull requests:**
|
|
10
|
+
|
|
11
|
+
- allow minitest 6.x [\#1974](https://github.com/voxpupuli/beaker/pull/1974) ([rwaffen](https://github.com/rwaffen))
|
|
12
|
+
|
|
13
|
+
## [7.2.1](https://github.com/voxpupuli/beaker/tree/7.2.1) (2025-10-25)
|
|
4
14
|
|
|
5
15
|
[Full Changelog](https://github.com/voxpupuli/beaker/compare/7.2.0...7.2.1)
|
|
6
16
|
|
data/Gemfile
CHANGED
|
@@ -10,6 +10,6 @@ end
|
|
|
10
10
|
group :release, optional: true do
|
|
11
11
|
gem 'faraday-retry', '~> 2.1', require: false
|
|
12
12
|
# fix from smortex to properly process commits that exist in multiple branches
|
|
13
|
-
|
|
14
|
-
gem 'github_changelog_generator', '~> 1.16.4', require: false
|
|
13
|
+
gem 'github_changelog_generator', github: 'smortex/github-changelog-generator', branch: 'avoid-processing-a-single-commit-multiple-time', require: false
|
|
14
|
+
# gem 'github_changelog_generator', '~> 1.16.4', require: false
|
|
15
15
|
end
|
data/Rakefile
CHANGED
|
@@ -184,16 +184,14 @@ namespace :test do
|
|
|
184
184
|
end
|
|
185
185
|
|
|
186
186
|
begin
|
|
187
|
-
require 'rubygems'
|
|
188
187
|
require 'github_changelog_generator/task'
|
|
189
188
|
|
|
190
189
|
GitHubChangelogGenerator::RakeTask.new :changelog do |config|
|
|
191
|
-
config.
|
|
190
|
+
config.header = "# Changelog\n\nAll notable changes to this project will be documented in this file."
|
|
191
|
+
config.exclude_labels = %w[duplicate question invalid wontfix wont-fix skip-changelog github_actions]
|
|
192
192
|
config.user = 'voxpupuli'
|
|
193
193
|
config.project = 'beaker'
|
|
194
|
-
|
|
195
|
-
config.future_release = gem_version
|
|
196
|
-
config.release_branch = 'master'
|
|
194
|
+
config.future_release = Gem::Specification.load("#{config.project}.gemspec").version
|
|
197
195
|
config.exclude_tags_regex = /\A4\./
|
|
198
196
|
config.since_tag = '5.7.0'
|
|
199
197
|
end
|
data/beaker.gemspec
CHANGED
|
@@ -30,7 +30,7 @@ Gem::Specification.new do |s|
|
|
|
30
30
|
s.add_dependency 'benchmark', '>= 0.3', '< 0.6'
|
|
31
31
|
# we cannot require 1.0.2 because that requires Ruby 3.1
|
|
32
32
|
s.add_dependency 'minitar', '>= 0.12', '< 2'
|
|
33
|
-
s.add_dependency 'minitest', '
|
|
33
|
+
s.add_dependency 'minitest', '>= 5.4', '< 7'
|
|
34
34
|
s.add_dependency 'rexml', '~> 3.2', '>= 3.2.5'
|
|
35
35
|
|
|
36
36
|
# net-ssh compatibility with ed25519 keys
|
data/lib/beaker/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: beaker
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 7.2.
|
|
4
|
+
version: 7.2.2
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Puppet
|
|
@@ -136,16 +136,22 @@ dependencies:
|
|
|
136
136
|
name: minitest
|
|
137
137
|
requirement: !ruby/object:Gem::Requirement
|
|
138
138
|
requirements:
|
|
139
|
-
- - "
|
|
139
|
+
- - ">="
|
|
140
140
|
- !ruby/object:Gem::Version
|
|
141
141
|
version: '5.4'
|
|
142
|
+
- - "<"
|
|
143
|
+
- !ruby/object:Gem::Version
|
|
144
|
+
version: '7'
|
|
142
145
|
type: :runtime
|
|
143
146
|
prerelease: false
|
|
144
147
|
version_requirements: !ruby/object:Gem::Requirement
|
|
145
148
|
requirements:
|
|
146
|
-
- - "
|
|
149
|
+
- - ">="
|
|
147
150
|
- !ruby/object:Gem::Version
|
|
148
151
|
version: '5.4'
|
|
152
|
+
- - "<"
|
|
153
|
+
- !ruby/object:Gem::Version
|
|
154
|
+
version: '7'
|
|
149
155
|
- !ruby/object:Gem::Dependency
|
|
150
156
|
name: rexml
|
|
151
157
|
requirement: !ruby/object:Gem::Requirement
|