beaker-abs 1.0.0 → 1.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/.github/workflows/auto_release_prep.yml +12 -0
- data/.github/workflows/dependabot_merge.yml +8 -0
- data/.github/workflows/ensure_label.yml +8 -0
- data/.github/workflows/release.yml +2 -2
- data/.github/workflows/security.yml +2 -2
- data/.github/workflows/testing.yml +1 -1
- data/CHANGELOG.md +15 -0
- data/Gemfile +1 -1
- data/beaker-abs.gemspec +1 -1
- data/lib/beaker-abs/version.rb +1 -1
- data/release-prep +2 -2
- metadata +14 -5
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: db7f2bf4afb44988411438cf873a24f69d45065ff3a2113fc06ce3d3f2642377
|
4
|
+
data.tar.gz: 64d423895137167696e7b7ef56c7c8c7d41d34cae9fcd0a8160b53c0060d42ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 805801c7d805112f89288e09fa3a5589db49f4a828bc307b5e4b918e581e851bbfb8e3068006eb79f62ad289983a9210f5d3136be5f0d6e8e5f510845a88b2b4
|
7
|
+
data.tar.gz: ab8665e8543fcd9fca7847c0883deaa69e038f8b1043505da8b674111ef59d58d1a100f27e2b27bafc6560371fb826a67109e9f4b2a6a65b5a1654782bd324b4
|
@@ -0,0 +1,12 @@
|
|
1
|
+
name: Automated release prep
|
2
|
+
|
3
|
+
on:
|
4
|
+
workflow_dispatch:
|
5
|
+
|
6
|
+
jobs:
|
7
|
+
auto_release_prep:
|
8
|
+
uses: puppetlabs/release-engineering-repo-standards/.github/workflows/auto_release_prep.yml@v1
|
9
|
+
secrets: inherit
|
10
|
+
with:
|
11
|
+
project-type: ruby
|
12
|
+
version-file-path: lib/beaker-abs/version.rb
|
@@ -10,7 +10,7 @@ jobs:
|
|
10
10
|
|
11
11
|
steps:
|
12
12
|
- name: Checkout code
|
13
|
-
uses: actions/checkout@
|
13
|
+
uses: actions/checkout@v4
|
14
14
|
with:
|
15
15
|
ref: ${{ github.ref }}
|
16
16
|
clean: true
|
@@ -24,7 +24,7 @@ jobs:
|
|
24
24
|
echo "Found version $version from lib/beaker-abs/version.rb"
|
25
25
|
|
26
26
|
- name: Get Current Version
|
27
|
-
uses: actions/github-script@
|
27
|
+
uses: actions/github-script@v7
|
28
28
|
id: cv
|
29
29
|
with:
|
30
30
|
script: |
|
@@ -11,7 +11,7 @@ jobs:
|
|
11
11
|
runs-on: ubuntu-latest
|
12
12
|
steps:
|
13
13
|
- name: checkout repo content
|
14
|
-
uses: actions/checkout@
|
14
|
+
uses: actions/checkout@v4
|
15
15
|
with:
|
16
16
|
fetch-depth: 1
|
17
17
|
- name: setup ruby
|
@@ -22,7 +22,7 @@ jobs:
|
|
22
22
|
- name: check lock
|
23
23
|
run: '[ -f "Gemfile.lock" ] && echo "package lock file exists, skipping" || bundle lock'
|
24
24
|
# install java
|
25
|
-
- uses: actions/setup-java@
|
25
|
+
- uses: actions/setup-java@v4
|
26
26
|
with:
|
27
27
|
distribution: 'temurin' # See 'Supported distributions' for available options
|
28
28
|
java-version: '17'
|
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,20 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [1.1.0](https://github.com/puppetlabs/beaker-abs/tree/1.1.0) (2024-05-28)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/puppetlabs/beaker-abs/compare/1.0.0...1.1.0)
|
6
|
+
|
7
|
+
**Fixed bugs:**
|
8
|
+
|
9
|
+
- Fix minitest after 5.19.0 [\#36](https://github.com/puppetlabs/beaker-abs/pull/36) ([yachub](https://github.com/yachub))
|
10
|
+
|
11
|
+
**Merged pull requests:**
|
12
|
+
|
13
|
+
- Add support for Beaker 6 [\#41](https://github.com/puppetlabs/beaker-abs/pull/41) ([mhashizume](https://github.com/mhashizume))
|
14
|
+
- Bump actions/setup-java from 3 to 4 [\#38](https://github.com/puppetlabs/beaker-abs/pull/38) ([dependabot[bot]](https://github.com/apps/dependabot))
|
15
|
+
- Bump actions/github-script from 6 to 7 [\#37](https://github.com/puppetlabs/beaker-abs/pull/37) ([dependabot[bot]](https://github.com/apps/dependabot))
|
16
|
+
- Bump actions/checkout from 3 to 4 [\#35](https://github.com/puppetlabs/beaker-abs/pull/35) ([dependabot[bot]](https://github.com/apps/dependabot))
|
17
|
+
|
3
18
|
## [1.0.0](https://github.com/puppetlabs/beaker-abs/tree/1.0.0) (2023-03-28)
|
4
19
|
|
5
20
|
[Full Changelog](https://github.com/puppetlabs/beaker-abs/compare/0.11.0...1.0.0)
|
data/Gemfile
CHANGED
data/beaker-abs.gemspec
CHANGED
@@ -18,7 +18,7 @@ Gem::Specification.new do |spec|
|
|
18
18
|
spec.executables = spec.files.grep(%r{^exe/}) { |f| File.basename(f) }
|
19
19
|
spec.require_paths = ["lib"]
|
20
20
|
|
21
|
-
spec.add_dependency "beaker", "
|
21
|
+
spec.add_dependency "beaker", ">= 5.0", "< 7"
|
22
22
|
spec.add_dependency "vmfloaty", ">= 1.0", "< 2"
|
23
23
|
# accept more keys, for smallstep integration
|
24
24
|
spec.add_dependency 'ed25519', ">= 1.2", "< 2.0"
|
data/lib/beaker-abs/version.rb
CHANGED
data/release-prep
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
#!/usr/bin/env bash
|
2
2
|
|
3
3
|
# bundle install
|
4
|
-
docker run -
|
4
|
+
docker run -t --rm \
|
5
5
|
-v $(pwd):/app \
|
6
6
|
ruby:3.2-slim-bullseye \
|
7
7
|
/bin/bash -c 'apt-get update -qq && apt-get install -y --no-install-recommends build-essential git make && cd /app && gem install bundler && bundle install --jobs 3; echo "LOCK_FILE_UPDATE_EXIT_CODE=$?"'
|
8
8
|
|
9
9
|
# Update Changelog
|
10
|
-
docker run -
|
10
|
+
docker run -t --rm -e CHANGELOG_GITHUB_TOKEN -v $(pwd):/usr/local/src/your-app \
|
11
11
|
githubchangeloggenerator/github-changelog-generator:1.16.2 \
|
12
12
|
github_changelog_generator --future-release $(grep STRING lib/beaker-abs/version.rb |rev |cut -d "'" -f2 |rev)
|
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: beaker-abs
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Josh Cooper
|
@@ -9,22 +9,28 @@ authors:
|
|
9
9
|
autorequire:
|
10
10
|
bindir: exe
|
11
11
|
cert_chain: []
|
12
|
-
date:
|
12
|
+
date: 2024-05-28 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: beaker
|
16
16
|
requirement: !ruby/object:Gem::Requirement
|
17
17
|
requirements:
|
18
|
-
- - "
|
18
|
+
- - ">="
|
19
19
|
- !ruby/object:Gem::Version
|
20
20
|
version: '5.0'
|
21
|
+
- - "<"
|
22
|
+
- !ruby/object:Gem::Version
|
23
|
+
version: '7'
|
21
24
|
type: :runtime
|
22
25
|
prerelease: false
|
23
26
|
version_requirements: !ruby/object:Gem::Requirement
|
24
27
|
requirements:
|
25
|
-
- - "
|
28
|
+
- - ">="
|
26
29
|
- !ruby/object:Gem::Version
|
27
30
|
version: '5.0'
|
31
|
+
- - "<"
|
32
|
+
- !ruby/object:Gem::Version
|
33
|
+
version: '7'
|
28
34
|
- !ruby/object:Gem::Dependency
|
29
35
|
name: vmfloaty
|
30
36
|
requirement: !ruby/object:Gem::Requirement
|
@@ -137,6 +143,9 @@ extensions: []
|
|
137
143
|
extra_rdoc_files: []
|
138
144
|
files:
|
139
145
|
- ".github/dependabot.yml"
|
146
|
+
- ".github/workflows/auto_release_prep.yml"
|
147
|
+
- ".github/workflows/dependabot_merge.yml"
|
148
|
+
- ".github/workflows/ensure_label.yml"
|
140
149
|
- ".github/workflows/release.yml"
|
141
150
|
- ".github/workflows/security.yml"
|
142
151
|
- ".github/workflows/testing.yml"
|
@@ -173,7 +182,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
173
182
|
- !ruby/object:Gem::Version
|
174
183
|
version: '0'
|
175
184
|
requirements: []
|
176
|
-
rubygems_version: 3.3.
|
185
|
+
rubygems_version: 3.3.27
|
177
186
|
signing_key:
|
178
187
|
specification_version: 4
|
179
188
|
summary: Let's test Puppet, using hosts provisioned by Always Be Scheduling service.
|