openvox 8.24.1 → 8.24.2

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.
Files changed (5) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +13 -0
  3. data/Gemfile +2 -1
  4. data/lib/puppet/version.rb +1 -1
  5. metadata +13 -7
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 4a4efa818181c2400e4fce9f18c24c8f56c8b8611afcd63e7deebdc5e2b12430
4
- data.tar.gz: ca94e391ff44b635d0be585703b10f065504f897dc6ec9b7e2d98e1d7ee45d35
3
+ metadata.gz: 0ace6b9eac410df9504cca392bc9c7bef7f60c88953bad3aa7f6acc616cb7400
4
+ data.tar.gz: 7abb95382a4bdb5741bef75292f3c6f81d47ed91686dd9edae69e9b0f1c0730c
5
5
  SHA512:
6
- metadata.gz: '09409cdb2fe81c2d7ff9b8088d1cbb7fa5948b9e05575dab9148d08fb0ea70d89e29d08eed03fe404360eb741ff418b464a1f4e2994545336515f75844718cc4'
7
- data.tar.gz: 13da8348149da0fb19c03a692754c022f452c6be9fb41bef418a58c2516687b10f12c83352ac34f0b1e750451d44bc1e69f7aa763aa828771903eab062bfaae6
6
+ metadata.gz: bc4f45909bbf4a1e4b81919ee86235e452928421d2e507fd15f2ad6a8afc753147d4505cbf4f90aca7e7fc7ff3bba089c025fd4cd31bdedf640142e95f9cb62e
7
+ data.tar.gz: 1791b417f28f3ce982828d487d67462071d97452906241761941b174c89d9548e835bca02ffefb9b9e12ea72cab3aa376e51b88ca14947a745cd069e2bc322fc
data/CHANGELOG.md CHANGED
@@ -2,6 +2,19 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [8.24.2](https://github.com/openvoxproject/openvox/tree/8.24.2) (2025-12-15)
6
+
7
+ [Full Changelog](https://github.com/openvoxproject/openvox/compare/8.24.1...8.24.2)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - \[Bug\]: Version 8.24.0 fails with Error: Could not find a suitable provider for augeas [\#262](https://github.com/OpenVoxProject/openvox/issues/262)
12
+
13
+ **Merged pull requests:**
14
+
15
+ - Promote openfact 5.2.1 [\#277](https://github.com/OpenVoxProject/openvox/pull/277) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
16
+ - Relax version requirements for some default gems [\#275](https://github.com/OpenVoxProject/openvox/pull/275) ([nmburgan](https://github.com/nmburgan))
17
+
5
18
  ## [8.24.1](https://github.com/openvoxproject/openvox/tree/8.24.1) (2025-12-05)
6
19
 
7
20
  [Full Changelog](https://github.com/openvoxproject/openvox/compare/8.24.0...8.24.1)
data/Gemfile CHANGED
@@ -22,7 +22,8 @@ gem "puppet-resource_api", *location_for(ENV['RESOURCE_API_LOCATION'] || ["~> 2.
22
22
  # Need to update the openssl gem on MacOS to avoid SSL errors. Doesn't hurt to have the newest
23
23
  # for all platforms.
24
24
  # https://www.rubyonmac.dev/certificate-verify-failed-unable-to-get-certificate-crl-openssl-ssl-sslerror
25
- gem 'openssl' unless `uname -o`.chomp == 'Cygwin'
25
+ # openssl 4 raises some errors that need to be investigated
26
+ gem 'openssl', '~> 3' unless `uname -o`.chomp == 'Cygwin'
26
27
 
27
28
  group(:features) do
28
29
  gem 'diff-lcs', '~> 1.3', require: false
@@ -8,7 +8,7 @@
8
8
  # Raketasks and such to set the version based on the output of `git describe`
9
9
 
10
10
  module Puppet
11
- PUPPETVERSION = '8.24.1'
11
+ PUPPETVERSION = '8.24.2'
12
12
  IMPLEMENTATION = 'openvox'
13
13
 
14
14
  ##
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: openvox
3
3
  version: !ruby/object:Gem::Version
4
- version: 8.24.1
4
+ version: 8.24.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenVox Project
@@ -35,7 +35,7 @@ dependencies:
35
35
  requirements:
36
36
  - - ">="
37
37
  - !ruby/object:Gem::Version
38
- version: '0.3'
38
+ version: '0.2'
39
39
  - - "<"
40
40
  - !ruby/object:Gem::Version
41
41
  version: '0.6'
@@ -45,7 +45,7 @@ dependencies:
45
45
  requirements:
46
46
  - - ">="
47
47
  - !ruby/object:Gem::Version
48
- version: '0.3'
48
+ version: '0.2'
49
49
  - - "<"
50
50
  - !ruby/object:Gem::Version
51
51
  version: '0.6'
@@ -157,16 +157,22 @@ dependencies:
157
157
  name: ostruct
158
158
  requirement: !ruby/object:Gem::Requirement
159
159
  requirements:
160
- - - "~>"
160
+ - - ">="
161
+ - !ruby/object:Gem::Version
162
+ version: 0.5.5
163
+ - - "<"
161
164
  - !ruby/object:Gem::Version
162
- version: 0.6.0
165
+ version: '0.7'
163
166
  type: :runtime
164
167
  prerelease: false
165
168
  version_requirements: !ruby/object:Gem::Requirement
166
169
  requirements:
167
- - - "~>"
170
+ - - ">="
171
+ - !ruby/object:Gem::Version
172
+ version: 0.5.5
173
+ - - "<"
168
174
  - !ruby/object:Gem::Version
169
- version: 0.6.0
175
+ version: '0.7'
170
176
  - !ruby/object:Gem::Dependency
171
177
  name: puppet-resource_api
172
178
  requirement: !ruby/object:Gem::Requirement