beaker-hostgenerator 2.4.0 → 2.6.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 22cf38a373925f63fb310902730bf1532e53a460527a6259233821c93a0db8fe
4
- data.tar.gz: 14f713eed9df7579c542266b423092fa57a063d6d51c0ac9e2e03a3a82417de2
3
+ metadata.gz: fd0ed1e0d0e0f83f0abbb56f6d19c5a69e08f0ea86bae3893984caaf35217a0b
4
+ data.tar.gz: 4a3d67415444077f6f8e8ba9278825651528d7394a830c327bdb76790d4a0a50
5
5
  SHA512:
6
- metadata.gz: defe372c4dbaf393d101bc7ce7a4e12b59b1bcf040fb7da6b4b449f136cf449cbbefde28397351d8f79e8c50035d180b60c8fb51aaa28d320cfa4e35f7a5d87a
7
- data.tar.gz: f882b7baf795a40252d243c53d4e987c1e2965a9c5d61caa64b29bf1ccea85f463448cc79893dde483b5a493e1f77d58f42063319a3779aa69a02f7fafd32c6d
6
+ metadata.gz: 29c89c19aa97f550cbfb8495a42ed6c3d8bb8bee788dc88f1d38167a38d2dad10ee23c46be6509fd068ec74adbfc4b34b9f77443107b1396b67157892cc28323
7
+ data.tar.gz: ca56c59aa586176c41e0c89a86632b8a32e09d0b6cd016e93fb399300c9441a06e901eced39a8abf022027b1b9865a6bf9f4864e4a91e9ac1d7fd233240c3a4c
data/CHANGELOG.md CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [2.6.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.6.0) (2023-10-02)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.5.0...2.6.0)
8
+
9
+ **Implemented enhancements:**
10
+
11
+ - Add amazon2023-AARCH64 [\#335](https://github.com/voxpupuli/beaker-hostgenerator/pull/335) ([yachub](https://github.com/yachub))
12
+
13
+ ## [2.5.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.5.0) (2023-09-25)
14
+
15
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.4.0...2.5.0)
16
+
17
+ **Implemented enhancements:**
18
+
19
+ - Add amazon-2023-x86\_64 [\#333](https://github.com/voxpupuli/beaker-hostgenerator/pull/333) ([yachub](https://github.com/yachub))
20
+ - Add fedora-37-x86\_64 and fedora-38-x86\_64 [\#332](https://github.com/voxpupuli/beaker-hostgenerator/pull/332) ([yachub](https://github.com/yachub))
21
+
5
22
  ## [2.4.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/2.4.0) (2023-09-12)
6
23
 
7
24
  [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/2.3.0...2.4.0)
@@ -1067,7 +1067,7 @@ module BeakerHostGenerator
1067
1067
  # @api private
1068
1068
  def generate_osinfo
1069
1069
  # Fedora
1070
- (19..36).each do |release|
1070
+ (19..38).each do |release|
1071
1071
  # 32 bit support was dropped in Fedora 31
1072
1072
  yield ["fedora#{release}-32", "fedora-#{release}-i386"] if release < 31
1073
1073
 
@@ -1098,6 +1098,10 @@ module BeakerHostGenerator
1098
1098
  yield ["freebsd#{release}-64", "freebsd-#{release}-amd64"]
1099
1099
  end
1100
1100
 
1101
+ # Amazon Linux
1102
+ yield %w[amazon2023-64 amazon-2023-x86_64]
1103
+ yield %w[amazon2023-AARCH64 amazon-2023-arm64]
1104
+
1101
1105
  # AlmaLinux and Rocky
1102
1106
  %w[almalinux rocky].each do |os|
1103
1107
  (8..9).each do |release|
@@ -25,7 +25,7 @@ module BeakerHostGenerator
25
25
  case node_info['ostype']
26
26
  when /^(almalinux|centos|oracle|redhat|rocky|scientific)/
27
27
  base_config['template'] ||= base_config['platform'].gsub(/^el/, ::Regexp.last_match(1))
28
- when /^fedora/, /^opensuse/, /^panos/
28
+ when /^amazon/, /^fedora/, /^opensuse/, /^panos/
29
29
  base_config['template'] ||= base_config['platform']
30
30
  when /^(debian|ubuntu)/
31
31
  os = Regexp.last_match(1)
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '2.4.0'
3
+ STRING = '2.6.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.4.0
4
+ version: 2.6.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-09-12 00:00:00.000000000 Z
14
+ date: 2023-10-02 00:00:00.000000000 Z
15
15
  dependencies:
16
16
  - !ruby/object:Gem::Dependency
17
17
  name: fakefs