openvox 8.26.0 → 8.26.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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 1c5a3cca4402aa0cc4a7878c7b240f32cf76f6d7711f62eb335689b95d59f26b
4
- data.tar.gz: 715d1cabc9ab1b3b9b0bf928066500e2c5ae7c07a13e89e57af9a3d962559567
3
+ metadata.gz: 34829f1a93ec3f4f5e3fa8de6b246129e6cc7004b9153c914a1c7e8c70e77f3b
4
+ data.tar.gz: 02c8dde7b3751636cb990d852f559046ccad72de2fde6335af2b81aaf8dd9642
5
5
  SHA512:
6
- metadata.gz: 1ba0c6d016eba599d49c419c24561e2cc54fc50b6591193992820a7dfa9a99362c919aa63f66d5e0cb241c36b2cc59f1b3b62007ed249e16d6cf5e3547441f39
7
- data.tar.gz: b199727c5ee128e6ab7b22a93a5610efc6b626850223a53b8f4b858a76402ad9134d38dfb920450a5ded5f087cd26173f8bb4b88f211a955cf3dc75512e8ba29
6
+ metadata.gz: cc4905eda993082dbb9f877e21df9b0bba752f9e61976720cce5710e07a699ad20d9f7f4522fcb18cd8d76cd7e2b52519ec441f0734e92e6ebe13dc3b076cad5
7
+ data.tar.gz: 053f784ccf8edda849a156abd007b02c97f96f4e54161c3a0506d40eb952d0f515823b66a21eeb2899d7923bfdf79bf93b5b42255a11247ee7aec555530b023a
data/CHANGELOG.md CHANGED
@@ -2,6 +2,33 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [8.26.2](https://github.com/openvoxproject/openvox/tree/8.26.2) (2026-04-17)
6
+
7
+ [Full Changelog](https://github.com/openvoxproject/openvox/compare/8.26.1...8.26.2)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - \[Bug\]: `provides puppet-agent` uses bare major version, breaking `>= x.y.z` dependency constraints \(e.g. foreman-installer\) [\#406](https://github.com/OpenVoxProject/openvox/issues/406)
12
+ - Revert "Add syslog as a runtime dependency" [\#410](https://github.com/OpenVoxProject/openvox/pull/410) ([nmburgan](https://github.com/nmburgan))
13
+ - \(\#406\) packaging: Set Maj.Min.Patch version as `provides` instead of major one [\#407](https://github.com/OpenVoxProject/openvox/pull/407) ([bastelfreak](https://github.com/bastelfreak))
14
+
15
+ **Merged pull requests:**
16
+
17
+ - Promote puppet-runtime 2026.04.17.1 [\#411](https://github.com/OpenVoxProject/openvox/pull/411) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
18
+ - .gitignore: Ignore /acceptance/.vendor [\#408](https://github.com/OpenVoxProject/openvox/pull/408) ([bastelfreak](https://github.com/bastelfreak))
19
+
20
+ ## [8.26.1](https://github.com/openvoxproject/openvox/tree/8.26.1) (2026-04-15)
21
+
22
+ [Full Changelog](https://github.com/openvoxproject/openvox/compare/8.26.0...8.26.1)
23
+
24
+ **Merged pull requests:**
25
+
26
+ - Promote puppet-runtime 2026.04.15.1 [\#404](https://github.com/OpenVoxProject/openvox/pull/404) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
27
+ - Add signoff to promote action [\#402](https://github.com/OpenVoxProject/openvox/pull/402) ([nmburgan](https://github.com/nmburgan))
28
+ - Add syslog as a runtime dependency [\#400](https://github.com/OpenVoxProject/openvox/pull/400) ([nmburgan](https://github.com/nmburgan))
29
+ - acceptance: add hiera-eyaml v5 backend test [\#399](https://github.com/OpenVoxProject/openvox/pull/399) ([nmburgan](https://github.com/nmburgan))
30
+ - avoid command injection risk [\#398](https://github.com/OpenVoxProject/openvox/pull/398) ([corporate-gadfly](https://github.com/corporate-gadfly))
31
+
5
32
  ## [8.26.0](https://github.com/openvoxproject/openvox/tree/8.26.0) (2026-04-14)
6
33
 
7
34
  [Full Changelog](https://github.com/openvoxproject/openvox/compare/8.25.0...8.26.0)
@@ -126,7 +126,7 @@ module Puppet::Util::Plist
126
126
  #
127
127
  # @api private
128
128
  def read_file_with_offset(file_path, offset)
129
- IO.read(file_path, offset)
129
+ File.open(file_path, 'rb') { |f| f.read(offset) }
130
130
  end
131
131
 
132
132
  def to_format(format)
@@ -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.26.0'
11
+ PUPPETVERSION = '8.26.2'
12
12
  IMPLEMENTATION = 'openvox'
13
13
 
14
14
  ##
data/tasks/build.rake CHANGED
@@ -17,7 +17,7 @@ namespace :vox do
17
17
  end
18
18
 
19
19
  engine = platform =~ /^(macos|windows)-/ ? 'local' : 'docker'
20
- cmd = "bundle exec build #{project} #{platform} --engine #{engine}"
20
+ cmd = "bundle exec vanagon build #{project} #{platform} --engine #{engine}"
21
21
 
22
22
  Dir.chdir('packaging') do
23
23
  run_command(cmd, silent: false, print_command: true, report_status: true)
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.26.0
4
+ version: 8.26.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenVox Project