beaker-hostgenerator 3.2.0 → 3.2.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: 8eab72d71ce2ed56cf8641c01b7d2208dff64190935581a461d7e6b19c483b2a
4
- data.tar.gz: fd7bbbc4ac821298b679c1728b57a3b075eda6c5cfcffa5b86effe0a13494387
3
+ metadata.gz: 149fb1dfad8a2f2f30b0f4b4afa918759de303e680511525cc95eace33d48b16
4
+ data.tar.gz: b4bd51123b1923aa9391b911a3f7ffa2ace3b87f47ec61255784924e5bf1c01d
5
5
  SHA512:
6
- metadata.gz: 6927f4be6aca076dc222bb8f970f0a1c8f6af60cccad22f6aafd389a77fbd7ce46d25ed385b8f438c93f23d0938886bebdec98e3b00c18cba2c96ca3de09fe8f
7
- data.tar.gz: 2307097f7bd48edce925a4ed8b3e3d3c6487019dd70322f1ec61361c4bf89e38156f8dbefd46e8359849410115dd5f1880e75eb8c441ae46ba7b5f55024c53ea
6
+ metadata.gz: 5fadc6480e5060187ca00c09e68cc9cb61f8f5ad37a1744fbaed5240874017b80caf3223f14928fe72c87cef7f143c695e9890bfaa7c203595285b79c473ce50
7
+ data.tar.gz: 184c5955146eb04f82a19f16d27c49361a1a56d5377ef6eb87701981d568dde316bd8a978679a913fe889fcb6e4b231a766666750ab505bb1742bc1fa420155c
data/CHANGELOG.md CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [3.2.1](https://github.com/voxpupuli/beaker-hostgenerator/tree/3.2.1) (2025-08-15)
6
+
7
+ [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/3.2.0...3.2.1)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - Use non library path for rocky 10 [\#428](https://github.com/voxpupuli/beaker-hostgenerator/pull/428) ([traylenator](https://github.com/traylenator))
12
+
5
13
  ## [3.2.0](https://github.com/voxpupuli/beaker-hostgenerator/tree/3.2.0) (2025-08-15)
6
14
 
7
15
  [Full Changelog](https://github.com/voxpupuli/beaker-hostgenerator/compare/3.1.0...3.2.0)
@@ -42,7 +42,8 @@ module BeakerHostGenerator
42
42
  when /^ubuntu/
43
43
  image.sub!(/(\d{2})/, '\1.')
44
44
  when /^rocky/
45
- image.sub!(/(\w+)/, 'rockylinux')
45
+ version = ostype.delete_prefix('rocky')
46
+ image = "quay.io/rockylinux/rockylinux:#{version}"
46
47
  when /^alma/
47
48
  image.sub!(/(\w+)/, 'almalinux')
48
49
  end
@@ -1,5 +1,5 @@
1
1
  module BeakerHostGenerator
2
2
  module Version
3
- STRING = '3.2.0'
3
+ STRING = '3.2.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: 3.2.0
4
+ version: 3.2.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Branan Purvine-Riley