beaker-hostgenerator 2.3.0 → 2.4.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 20f9997e3ca8e03b42c5a907fd60a5a8ca733b1060f00da41d3166ec5f3340a0
4
- data.tar.gz: a481a3429cac0087c2e711d1b4e42b4b8d1e2e35a0450491da77f7cf8f9130dd
3
+ metadata.gz: 22cf38a373925f63fb310902730bf1532e53a460527a6259233821c93a0db8fe
4
+ data.tar.gz: 14f713eed9df7579c542266b423092fa57a063d6d51c0ac9e2e03a3a82417de2
5
5
  SHA512:
6
- metadata.gz: c14cbabe0de053b0b9005b6ecd4d38b5ef182b03f48dca482a006761a031e14bcb382d2aadbef124961a757ea9a4db491203b0918a565de71f9f3790b5a00949
7
- data.tar.gz: 35ccb6e2e2c5a169da594e075f72f69aad09f8db7b51bfae4e7353caa970a662f45188d10f8b05aa202b27291f5f5a0aa0680360decfa49ac8a2d2449102a690
6
+ metadata.gz: defe372c4dbaf393d101bc7ce7a4e12b59b1bcf040fb7da6b4b449f136cf449cbbefde28397351d8f79e8c50035d180b60c8fb51aaa28d320cfa4e35f7a5d87a
7
+ data.tar.gz: f882b7baf795a40252d243c53d4e987c1e2965a9c5d61caa64b29bf1ccea85f463448cc79893dde483b5a493e1f77d58f42063319a3779aa69a02f7fafd32c6d
@@ -10,7 +10,7 @@ jobs:
10
10
  runs-on: ubuntu-latest
11
11
  if: github.repository_owner == 'voxpupuli'
12
12
  steps:
13
- - uses: actions/checkout@v3
13
+ - uses: actions/checkout@v4
14
14
  - name: Install Ruby 3.0
15
15
  uses: ruby/setup-ruby@v1
16
16
  with:
@@ -12,7 +12,7 @@ jobs:
12
12
  BUNDLE_WITHOUT: release
13
13
  runs-on: ubuntu-latest
14
14
  steps:
15
- - uses: actions/checkout@v3
15
+ - uses: actions/checkout@v4
16
16
  - name: Install Ruby ${{ matrix.ruby }}
17
17
  uses: ruby/setup-ruby@v1
18
18
  with:
@@ -36,7 +36,7 @@ jobs:
36
36
  COVERAGE: ${{ matrix.coverage }}
37
37
  BUNDLE_WITHOUT: release:rubocop
38
38
  steps:
39
- - uses: actions/checkout@v3
39
+ - uses: actions/checkout@v4
40
40
  - name: Install Ruby ${{ matrix.ruby }}
41
41
  uses: ruby/setup-ruby@v1
42
42
  with:
data/CHANGELOG.md CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.4.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.4.0) (2023-09-12)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.3.0...2.4.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - \(RE-15541\) Add debian-12-arm64 support [\#331](https://github.com/voxpupuli/beaker-hostgenerator/pull/331) ([yachub](https://github.com/yachub))
12
+ - Add debian-11-arm64 support [\#330](https://github.com/voxpupuli/beaker-hostgenerator/pull/330) ([yachub](https://github.com/yachub))
13
+ - \(RE-15206\) Add ubuntu-2204-arm64 fixtures [\#328](https://github.com/voxpupuli/beaker-hostgenerator/pull/328) ([yachub](https://github.com/yachub))
14
+ - \(RE-15156\) Add redhat-9-arm64 support [\#327](https://github.com/voxpupuli/beaker-hostgenerator/pull/327) ([yachub](https://github.com/yachub))
15
+
5
16
  ## [2.3.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.3.0) (2023-08-11)
6
17
 
7
18
  [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.2.3...2.3.0)
@@ -185,6 +185,11 @@ module BeakerHostGenerator
185
185
  'box' => 'debian/bullseye64',
186
186
  },
187
187
  },
188
+ 'debian11-AARCH64' => {
189
+ general: {
190
+ 'platform' => 'debian-11-aarch64',
191
+ },
192
+ },
188
193
  'debian12-64' => {
189
194
  general: {
190
195
  'platform' => 'debian-12-amd64',
@@ -193,6 +198,11 @@ module BeakerHostGenerator
193
198
  'box' => 'debian/bookworm64',
194
199
  },
195
200
  },
201
+ 'debian12-AARCH64' => {
202
+ general: {
203
+ 'platform' => 'debian-12-aarch64',
204
+ },
205
+ },
196
206
  'panos61-64' => {
197
207
  general: {
198
208
  'platform' => 'palo-alto-6.1.0-x86_64',
@@ -361,6 +371,17 @@ module BeakerHostGenerator
361
371
  'platform' => 'el-9-x86_64',
362
372
  },
363
373
  },
374
+ 'redhat9-AARCH64' => {
375
+ general: {
376
+ 'platform' => 'el-9-aarch64',
377
+ },
378
+ abs: {
379
+ 'template' => 'redhat-9-arm64',
380
+ },
381
+ vmpooler: {
382
+ 'template' => 'redhat-9-arm64',
383
+ },
384
+ },
364
385
  'sles11-32' => {
365
386
  general: {
366
387
  'platform' => 'sles-11-i386',
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '2.3.0'
3
+ STRING = '2.4.0'
4
4
  end
5
5
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: beaker-hostgenerator
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.3.0
4
+ version: 2.4.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Branan Purvine-Riley
@@ -11,7 +11,7 @@ authors:
11
11
  autorequire:
12
12
  bindir: bin
13
13
  cert_chain: []
14
- date: 2023-08-11 00:00:00.000000000 Z
14
+ date: 2023-09-12 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: fakefs