beaker-hostgenerator 2.0.0 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +9 -0
- data/lib/beaker-hostgenerator/data.rb +9 -0
- data/lib/beaker-hostgenerator/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 72f9222b632cfabb956e8b4cc434605c8945d8043565d36b2717d391fa2809e0
|
4
|
+
data.tar.gz: 3a2bf2f7be2fc028a604d208e8a2e2630594bbe2bfe60598561d343012b0acf0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0262df8eab9cb823af45245fb094d7365030200942d6befd1bc54cc26351bca6375780e85c0873d0b242ec3f3422afbcf7c5367ab54bc3900abd06f82588f43c
|
7
|
+
data.tar.gz: 76925a686fe5a629c92a588053cb22b9bba986b2978a3d13fb7963430b62730842813502e748f3e52bbf498965f6225c0e326fa24f1a5a76170830c09b9d3b72
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,15 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [2.1.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.1.0) (2023-05-02)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.0.0...2.1.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- \(RE-15060\) Add macos-13-arm64 support [\#304](https://github.com/voxpupuli/beaker-hostgenerator/pull/304) ([yachub](https://github.com/yachub))
|
12
|
+
- use centos stream 8 box from cloud.centos.org [\#303](https://github.com/voxpupuli/beaker-hostgenerator/pull/303) ([evgeni](https://github.com/evgeni))
|
13
|
+
|
5
14
|
## [2.0.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.0.0) (2023-04-28)
|
6
15
|
|
7
16
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.18.1...2.0.0)
|
@@ -239,6 +239,7 @@ module BeakerHostGenerator
|
|
239
239
|
},
|
240
240
|
:vagrant => {
|
241
241
|
'box' => 'centos/stream8',
|
242
|
+
'box_url' => 'https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-Vagrant-8-20230501.0.x86_64.vagrant-libvirt.box',
|
242
243
|
},
|
243
244
|
:docker => {
|
244
245
|
'image' => 'quay.io/centos/centos:stream8',
|
@@ -467,6 +468,14 @@ module BeakerHostGenerator
|
|
467
468
|
'template' => 'macos-13-x86_64',
|
468
469
|
},
|
469
470
|
},
|
471
|
+
'osx13-ARM64' => {
|
472
|
+
:general => {
|
473
|
+
'platform' => 'osx-13-arm64',
|
474
|
+
},
|
475
|
+
:vmpooler => {
|
476
|
+
'template' => 'macos-13-arm64',
|
477
|
+
},
|
478
|
+
},
|
470
479
|
'redhat6-32' => {
|
471
480
|
:general => {
|
472
481
|
'platform' => 'el-6-i386',
|
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.
|
4
|
+
version: 2.1.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-
|
14
|
+
date: 2023-05-02 00:00:00.000000000 Z
|
15
15
|
dependencies:
|
16
16
|
- !ruby/object:Gem::Dependency
|
17
17
|
name: fakefs
|