beaker-hostgenerator 1.11.1 → 1.12.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/test.yml +1 -0
- data/CHANGELOG.md +13 -4
- data/lib/beaker-hostgenerator/data.rb +8 -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: f3412c7ddfc1b4eb77fa333200a084eb5ac5aaffaff9078a0cb8674b5e2e0386
|
4
|
+
data.tar.gz: 82160b7963d55fe6b2fde9a604f6209ce5a15169cdd81730362a716ba737b02c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d1e6315bb0c4a1a0b4dd82220c05a76eb371e85f686942d91f9db7123d5e608b0e8f16f708458709930cbec2d88fe3c7648eef05a4194ecd3d0a042c0ffc27e7
|
7
|
+
data.tar.gz: 96496f873979a4661d6cfdf4eb8fd7969791ec0a2b957a8a353200ba5864ccabe4efc79d58e66b27a70f71116a19ecda302a2cd84640c428cf17654d24607b43
|
data/.github/workflows/test.yml
CHANGED
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,18 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [1.12.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.12.0) (2022-02-21)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.11.1...1.12.0)
|
8
|
+
|
9
|
+
**Implemented enhancements:**
|
10
|
+
|
11
|
+
- \(IMAGES-1334\) Add support for macOS 12 [\#245](https://github.com/voxpupuli/beaker-hostgenerator/pull/245) ([AriaXLi](https://github.com/AriaXLi))
|
12
|
+
|
13
|
+
**Merged pull requests:**
|
14
|
+
|
15
|
+
- Add Ruby 3.1 to CI matrix [\#246](https://github.com/voxpupuli/beaker-hostgenerator/pull/246) ([bastelfreak](https://github.com/bastelfreak))
|
16
|
+
|
5
17
|
## [1.11.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.11.1) (2022-02-01)
|
6
18
|
|
7
19
|
[Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/1.11.0...1.11.1)
|
@@ -17,11 +29,8 @@ All notable changes to this project will be documented in this file.
|
|
17
29
|
**Implemented enhancements:**
|
18
30
|
|
19
31
|
- Use CentOS Stream 8 instead of CentOS Linux 8 [\#240](https://github.com/voxpupuli/beaker-hostgenerator/pull/240) ([ekohl](https://github.com/ekohl))
|
20
|
-
- Add CentOS 9 support [\#225](https://github.com/voxpupuli/beaker-hostgenerator/pull/225) ([ekohl](https://github.com/ekohl))
|
21
|
-
|
22
|
-
**Merged pull requests:**
|
23
|
-
|
24
32
|
- Drop redundant attributes from generated data [\#239](https://github.com/voxpupuli/beaker-hostgenerator/pull/239) ([ekohl](https://github.com/ekohl))
|
33
|
+
- Add CentOS 9 support [\#225](https://github.com/voxpupuli/beaker-hostgenerator/pull/225) ([ekohl](https://github.com/ekohl))
|
25
34
|
|
26
35
|
## [1.10.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/1.10.0) (2021-12-10)
|
27
36
|
|
@@ -884,6 +884,14 @@ module BeakerHostGenerator
|
|
884
884
|
'template' => 'macos-112-x86_64'
|
885
885
|
}
|
886
886
|
},
|
887
|
+
'osx12-64' => {
|
888
|
+
:general => {
|
889
|
+
'platform' => 'osx-12-x86_64'
|
890
|
+
},
|
891
|
+
:vmpooler => {
|
892
|
+
'template' => 'macos-12-x86_64'
|
893
|
+
}
|
894
|
+
},
|
887
895
|
'redhat4-32' => {
|
888
896
|
:general => {
|
889
897
|
'platform' => 'el-4-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: 1.
|
4
|
+
version: 1.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Branan Purvine-Riley
|
@@ -10,7 +10,7 @@ authors:
|
|
10
10
|
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-02-
|
13
|
+
date: 2022-02-21 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: minitest
|