openvox 8.26.0 → 8.26.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: 1c5a3cca4402aa0cc4a7878c7b240f32cf76f6d7711f62eb335689b95d59f26b
4
- data.tar.gz: 715d1cabc9ab1b3b9b0bf928066500e2c5ae7c07a13e89e57af9a3d962559567
3
+ metadata.gz: aa6d4a7491b2e4e75046a4f5f816f7b00cce9fd509eb0c61751db018869b9a38
4
+ data.tar.gz: 596de736cd77eff46d5a0a50e3fe266ce67b66042d4c4e205f95c96050e3bf9f
5
5
  SHA512:
6
- metadata.gz: 1ba0c6d016eba599d49c419c24561e2cc54fc50b6591193992820a7dfa9a99362c919aa63f66d5e0cb241c36b2cc59f1b3b62007ed249e16d6cf5e3547441f39
7
- data.tar.gz: b199727c5ee128e6ab7b22a93a5610efc6b626850223a53b8f4b858a76402ad9134d38dfb920450a5ded5f087cd26173f8bb4b88f211a955cf3dc75512e8ba29
6
+ metadata.gz: '0292292934d4f6f531fa4f1165acedfe5d2ead2b6f1a465ae4de487360734f968c9fd69709b0587b142838339f316260fe5a543a796b5b6d84f94270b6aeb857'
7
+ data.tar.gz: 072d0d1a9acf00401967d607d6008ef9cda3fdaf154d3fdfd8876006a93385146edc2b9a801c1e3f1bd04db02ce0c74c7a9e5ff240bff6fd30565316f217e81e
data/CHANGELOG.md CHANGED
@@ -2,6 +2,18 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [8.26.1](https://github.com/openvoxproject/openvox/tree/8.26.1) (2026-04-15)
6
+
7
+ [Full Changelog](https://github.com/openvoxproject/openvox/compare/8.26.0...8.26.1)
8
+
9
+ **Merged pull requests:**
10
+
11
+ - Promote puppet-runtime 2026.04.15.1 [\#404](https://github.com/OpenVoxProject/openvox/pull/404) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
12
+ - Add signoff to promote action [\#402](https://github.com/OpenVoxProject/openvox/pull/402) ([nmburgan](https://github.com/nmburgan))
13
+ - Add syslog as a runtime dependency [\#400](https://github.com/OpenVoxProject/openvox/pull/400) ([nmburgan](https://github.com/nmburgan))
14
+ - acceptance: add hiera-eyaml v5 backend test [\#399](https://github.com/OpenVoxProject/openvox/pull/399) ([nmburgan](https://github.com/nmburgan))
15
+ - avoid command injection risk [\#398](https://github.com/OpenVoxProject/openvox/pull/398) ([corporate-gadfly](https://github.com/corporate-gadfly))
16
+
5
17
  ## [8.26.0](https://github.com/openvoxproject/openvox/tree/8.26.0) (2026-04-14)
6
18
 
7
19
  [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.1'
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.26.0
4
+ version: 8.26.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenVox Project
@@ -229,6 +229,20 @@ dependencies:
229
229
  - - "~>"
230
230
  - !ruby/object:Gem::Version
231
231
  version: '1.0'
232
+ - !ruby/object:Gem::Dependency
233
+ name: syslog
234
+ requirement: !ruby/object:Gem::Requirement
235
+ requirements:
236
+ - - "~>"
237
+ - !ruby/object:Gem::Version
238
+ version: '0.1'
239
+ type: :runtime
240
+ prerelease: false
241
+ version_requirements: !ruby/object:Gem::Requirement
242
+ requirements:
243
+ - - "~>"
244
+ - !ruby/object:Gem::Version
245
+ version: '0.1'
232
246
  description: |
233
247
  OpenVox is a community implementation of Puppet, an automated administrative engine for your Linux, Unix, and Windows systems, performs administrative tasks
234
248
  (such as adding users, installing packages, and updating server configurations) based on a centralized specification.