beaker-hostgenerator 2.13.0 → 2.14.1

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: 680ccebc40050850d136716c311808a743cbe5c8144cd42df30f7077c57e7182
4
- data.tar.gz: 36502f40ac0e6cfca8e7a91d80d7b5d17ef59346e5e4aa3b1a73d4dd1cdd39b5
3
+ metadata.gz: b9e610b743076b686810cd6ccb69d3c89f09583206b72a109222f1e02744dc14
4
+ data.tar.gz: 555ba1cf699c469b86dc5c73cd41b1cdeddf6eb3f5b865f22cc8a6d8d436edde
5
5
  SHA512:
6
- metadata.gz: 78b8ceb1152374e9371a7f95670d100264726f048fbd146a5efdd56c6b5e590983d465257936347e7e59c747424fe2e26385d5eb61e58fff0fdf50a2ff3e9fac
7
- data.tar.gz: c900a82cdceeed131f1054ecf2584e5cdd57fb4cbb7cabad5ab4cfc58f5c66daa02cf667de4ba1f4e61d2cd5cbf2bbece0a31dd376e52f550c05c91d70a9f9b6
6
+ metadata.gz: 67c429ccdcf71c0113814f8ce9c8f1b5a0408ff921386a0b7c96cd6699fb22e510e5b6099865e42a4ec90ac9a652645a44ae47090e642ea57645f3110b666847
7
+ data.tar.gz: 670192f552acae1ca0c80959c520dd18c71b7b49e1ce7f6b985506ce43645bc293f2e68fd9076638a5c8816b8bb3c28c0ff2f711ffae167a03cdccd50a4a2573
data/CHANGELOG.md CHANGED
@@ -2,6 +2,22 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.14.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.14.1) (2024-06-28)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.14.0...2.14.1)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - Use latest CentOS boxes instead of specific dates [\#374](https://github.com/voxpupuli/beaker-hostgenerator/pull/374) ([daberkow](https://github.com/daberkow))
12
+
13
+ ## [2.14.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.14.0) (2024-06-26)
14
+
15
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.13.0...2.14.0)
16
+
17
+ **Implemented enhancements:**
18
+
19
+ - Add Almalinux9 AARCH64 and Rocky9 AARCH64 [\#376](https://github.com/voxpupuli/beaker-hostgenerator/pull/376) ([smahima27](https://github.com/smahima27))
20
+
5
21
  ## [2.13.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.13.0) (2024-06-04)
6
22
 
7
23
  [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.12.2...2.13.0)
@@ -28,7 +28,7 @@ Gem::Specification.new do |s|
28
28
  s.add_development_dependency 'rake', '~> 13.0'
29
29
  s.add_development_dependency 'rspec', '~> 3.0'
30
30
  s.add_development_dependency 'rspec-its', '~> 1.3'
31
- s.add_development_dependency 'voxpupuli-rubocop', '~> 2.7.0'
31
+ s.add_development_dependency 'voxpupuli-rubocop', '~> 2.8.0'
32
32
 
33
33
  # Run time dependencies
34
34
  s.add_runtime_dependency 'deep_merge', '~> 1.0'
@@ -152,7 +152,7 @@ module BeakerHostGenerator
152
152
  },
153
153
  vagrant: {
154
154
  'box' => 'centos/stream8',
155
- 'box_url' => 'https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-Vagrant-8-20230501.0.x86_64.vagrant-libvirt.box',
155
+ 'box_url' => 'https://cloud.centos.org/centos/8-stream/x86_64/images/CentOS-Stream-Vagrant-8-latest.x86_64.vagrant-libvirt.box',
156
156
  },
157
157
  },
158
158
  'centos9-64' => {
@@ -161,7 +161,7 @@ module BeakerHostGenerator
161
161
  },
162
162
  vagrant: {
163
163
  'box' => 'centos/stream9',
164
- 'box_url' => 'https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-Vagrant-9-20230410.0.x86_64.vagrant-libvirt.box',
164
+ 'box_url' => 'https://cloud.centos.org/centos/9-stream/x86_64/images/CentOS-Stream-Vagrant-9-latest.x86_64.vagrant-libvirt.box',
165
165
  },
166
166
  },
167
167
  'debian10-64' => {
@@ -1139,6 +1139,7 @@ module BeakerHostGenerator
1139
1139
  %w[almalinux rocky].each do |os|
1140
1140
  (8..9).each do |release|
1141
1141
  yield ["#{os}#{release}-64", "el-#{release}-x86_64"]
1142
+ yield ["#{os}#{release}-AARCH64", "el-#{release}-aarch64"]
1142
1143
  end
1143
1144
  end
1144
1145
 
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '2.13.0'
3
+ STRING = '2.14.1'
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.13.0
4
+ version: 2.14.1
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: 2024-06-04 00:00:00.000000000 Z
14
+ date: 2024-06-28 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: fakefs
@@ -109,14 +109,14 @@ dependencies:
109
109
  requirements:
110
110
  - - "~>"
111
111
  - !ruby/object:Gem::Version
112
- version: 2.7.0
112
+ version: 2.8.0
113
113
  type: :development
114
114
  prerelease: false
115
115
  version_requirements: !ruby/object:Gem::Requirement
116
116
  requirements:
117
117
  - - "~>"
118
118
  - !ruby/object:Gem::Version
119
- version: 2.7.0
119
+ version: 2.8.0
120
120
  - !ruby/object:Gem::Dependency
121
121
  name: deep_merge
122
122
  requirement: !ruby/object:Gem::Requirement
@@ -195,7 +195,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
195
195
  - !ruby/object:Gem::Version
196
196
  version: '0'
197
197
  requirements: []
198
- rubygems_version: 3.5.9
198
+ rubygems_version: 3.5.11
199
199
  signing_key:
200
200
  specification_version: 4
201
201
  summary: Beaker Host Generator Utility