openvox 8.24.2 → 8.25.0
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 +4 -4
- data/CHANGELOG.md +29 -0
- data/lib/puppet/util/json.rb +10 -46
- data/lib/puppet/util/monkey_patches.rb +1 -20
- data/lib/puppet/version.rb +1 -1
- metadata +2 -16
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ea7920147264533ca3a9d0999ab864433f49dc39921288ccd6208a97434ad7d5
|
|
4
|
+
data.tar.gz: 37cc470528c245977e29d2312c2c2636a2ae500995d59789bc9e2c13232c48e6
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 2083c76d72fd039be07dc02110e33c2dafb663d48b9045d3c5a753c2c807585ecfdec21d75804b4239a279aa8292e42db85e0515182c665fe1fa794a46f69449
|
|
7
|
+
data.tar.gz: dbc8342fd12a07243d1c5937585c2c61c1e1ce3e01e270fbd114ca0813ca7e993202e26443c095ce8cd85a25dbf83e8d92844baa753c6fcb26863509dee0f85d
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,35 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [8.25.0](https://github.com/openvoxproject/openvox/tree/8.25.0) (2026-02-16)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/openvoxproject/openvox/compare/8.24.2...8.25.0)
|
|
8
|
+
|
|
9
|
+
**Implemented enhancements:**
|
|
10
|
+
|
|
11
|
+
- Add Ubuntu 26.04 support [\#315](https://github.com/OpenVoxProject/openvox/pull/315) ([bastelfreak](https://github.com/bastelfreak))
|
|
12
|
+
- Reduce OpenSSL monkey patch to only calling set\_params [\#308](https://github.com/OpenVoxProject/openvox/pull/308) ([ekohl](https://github.com/ekohl))
|
|
13
|
+
- Remove monkey patch to remove daemonize [\#307](https://github.com/OpenVoxProject/openvox/pull/307) ([ekohl](https://github.com/ekohl))
|
|
14
|
+
- Add SLES 16 ARM64 support [\#306](https://github.com/OpenVoxProject/openvox/pull/306) ([bastelfreak](https://github.com/bastelfreak))
|
|
15
|
+
- Add SLES16 [\#302](https://github.com/OpenVoxProject/openvox/pull/302) ([sbernhard](https://github.com/sbernhard))
|
|
16
|
+
- Drop multi\_json support [\#293](https://github.com/OpenVoxProject/openvox/pull/293) ([ekohl](https://github.com/ekohl))
|
|
17
|
+
- Do not explicitly disable SSLv3 [\#287](https://github.com/OpenVoxProject/openvox/pull/287) ([smortex](https://github.com/smortex))
|
|
18
|
+
- feat: add `{debian13,ubuntu24.04,ubuntu25.04}-armhf` platform configs [\#286](https://github.com/OpenVoxProject/openvox/pull/286) ([Gitii](https://github.com/Gitii))
|
|
19
|
+
|
|
20
|
+
**Fixed bugs:**
|
|
21
|
+
|
|
22
|
+
- \[Bug\]: OpenVox Agent fails/gets deactivated after update with theforeman-puppet [\#279](https://github.com/OpenVoxProject/openvox/issues/279)
|
|
23
|
+
- Include missing EC2 stub request [\#272](https://github.com/OpenVoxProject/openvox/pull/272) ([eciii](https://github.com/eciii))
|
|
24
|
+
|
|
25
|
+
**Merged pull requests:**
|
|
26
|
+
|
|
27
|
+
- Promote puppet-runtime 2026.02.16.1 [\#324](https://github.com/OpenVoxProject/openvox/pull/324) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
|
|
28
|
+
- Promote openfact 5.4.0 [\#322](https://github.com/OpenVoxProject/openvox/pull/322) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
|
|
29
|
+
- Promote puppet-runtime 2026.02.06.1 [\#313](https://github.com/OpenVoxProject/openvox/pull/313) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
|
|
30
|
+
- puppet-runtime: Update 2025.12.05.1-\>2026.01.30.1 [\#305](https://github.com/OpenVoxProject/openvox/pull/305) ([bastelfreak](https://github.com/bastelfreak))
|
|
31
|
+
- Promote openssl-fips 2025.12.17.1 [\#284](https://github.com/OpenVoxProject/openvox/pull/284) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
|
|
32
|
+
- Update promotion action [\#283](https://github.com/OpenVoxProject/openvox/pull/283) ([nmburgan](https://github.com/nmburgan))
|
|
33
|
+
|
|
5
34
|
## [8.24.2](https://github.com/openvoxproject/openvox/tree/8.24.2) (2025-12-15)
|
|
6
35
|
|
|
7
36
|
[Full Changelog](https://github.com/openvoxproject/openvox/compare/8.24.1...8.24.2)
|
data/lib/puppet/util/json.rb
CHANGED
|
@@ -16,17 +16,7 @@ module Puppet::Util
|
|
|
16
16
|
end
|
|
17
17
|
end
|
|
18
18
|
|
|
19
|
-
|
|
20
|
-
require 'multi_json'
|
|
21
|
-
# Force backend detection before attempting to use the library
|
|
22
|
-
# or load any other JSON libraries
|
|
23
|
-
MultiJson.default_adapter
|
|
24
|
-
|
|
25
|
-
# Preserve core type monkey-patching done by the built-in JSON gem
|
|
26
|
-
require 'json'
|
|
27
|
-
rescue LoadError
|
|
28
|
-
require 'json'
|
|
29
|
-
end
|
|
19
|
+
require 'json'
|
|
30
20
|
|
|
31
21
|
# Load the content from a file as JSON if
|
|
32
22
|
# contents are in valid format. This method does not
|
|
@@ -49,46 +39,20 @@ module Puppet::Util
|
|
|
49
39
|
# when using the built-in JSON backend, to ensure consistent behavior
|
|
50
40
|
# whether or not MultiJson can be loaded.
|
|
51
41
|
def self.load(string, options = {})
|
|
52
|
-
if
|
|
53
|
-
begin
|
|
54
|
-
# This ensures that JrJackson and Oj will parse very large or very small
|
|
55
|
-
# numbers as floats rather than BigDecimals, which are serialized as
|
|
56
|
-
# strings by the built-in JSON gem and therefore can cause schema errors,
|
|
57
|
-
# for example, when we are rendering reports to JSON using `to_pson` in
|
|
58
|
-
# PuppetDB.
|
|
59
|
-
case MultiJson.adapter.name
|
|
60
|
-
when "MultiJson::Adapters::JrJackson"
|
|
61
|
-
options[:use_bigdecimal] = false
|
|
62
|
-
when "MultiJson::Adapters::Oj"
|
|
63
|
-
options[:bigdecimal_load] = :float
|
|
64
|
-
end
|
|
42
|
+
string = string.read if string.respond_to?(:read)
|
|
65
43
|
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
else
|
|
71
|
-
begin
|
|
72
|
-
string = string.read if string.respond_to?(:read)
|
|
73
|
-
|
|
74
|
-
options[:symbolize_names] = true if options.delete(:symbolize_keys)
|
|
75
|
-
::JSON.parse(string, options)
|
|
76
|
-
rescue JSON::ParserError => e
|
|
77
|
-
raise Puppet::Util::Json::ParseError.build(e, string)
|
|
78
|
-
end
|
|
79
|
-
end
|
|
44
|
+
options[:symbolize_names] = true if options.delete(:symbolize_keys)
|
|
45
|
+
::JSON.parse(string, options)
|
|
46
|
+
rescue JSON::ParserError => e
|
|
47
|
+
raise Puppet::Util::Json::ParseError.build(e, string)
|
|
80
48
|
end
|
|
81
49
|
|
|
82
50
|
def self.dump(object, options = {})
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
# we're being called recursively
|
|
87
|
-
object.to_json(options)
|
|
88
|
-
else
|
|
89
|
-
options.merge!(::JSON::PRETTY_STATE_PROTOTYPE.to_h) if options.delete(:pretty)
|
|
90
|
-
object.to_json(options)
|
|
51
|
+
# Options is a state when we're being called recursively
|
|
52
|
+
if !options.is_a?(JSON::State) && options.delete(:pretty)
|
|
53
|
+
options.merge!(::JSON::PRETTY_STATE_PROTOTYPE.to_h)
|
|
91
54
|
end
|
|
55
|
+
object.to_json(options)
|
|
92
56
|
end
|
|
93
57
|
end
|
|
94
58
|
end
|
|
@@ -22,15 +22,6 @@ module RDoc
|
|
|
22
22
|
end
|
|
23
23
|
end
|
|
24
24
|
|
|
25
|
-
class Object
|
|
26
|
-
# ActiveSupport 2.3.x mixes in a dangerous method
|
|
27
|
-
# that can cause rspec to fork bomb
|
|
28
|
-
# and other strange things like that.
|
|
29
|
-
def daemonize
|
|
30
|
-
raise NotImplementedError, "Kernel.daemonize is too dangerous, please don't try to use it."
|
|
31
|
-
end
|
|
32
|
-
end
|
|
33
|
-
|
|
34
25
|
unless Dir.singleton_methods.include?(:exists?)
|
|
35
26
|
class Dir
|
|
36
27
|
def self.exists?(file_name)
|
|
@@ -52,22 +43,12 @@ end
|
|
|
52
43
|
require_relative '../../puppet/ssl/openssl_loader'
|
|
53
44
|
unless Puppet::Util::Platform.jruby_fips?
|
|
54
45
|
class OpenSSL::SSL::SSLContext
|
|
55
|
-
if DEFAULT_PARAMS[:options]
|
|
56
|
-
DEFAULT_PARAMS[:options] |= OpenSSL::SSL::OP_NO_SSLv3
|
|
57
|
-
else
|
|
58
|
-
DEFAULT_PARAMS[:options] = OpenSSL::SSL::OP_NO_SSLv3
|
|
59
|
-
end
|
|
60
|
-
|
|
61
46
|
alias __original_initialize initialize
|
|
62
47
|
private :__original_initialize
|
|
63
48
|
|
|
64
49
|
def initialize(*args)
|
|
65
50
|
__original_initialize(*args)
|
|
66
|
-
|
|
67
|
-
:options => DEFAULT_PARAMS[:options],
|
|
68
|
-
:ciphers => DEFAULT_PARAMS[:ciphers],
|
|
69
|
-
}
|
|
70
|
-
set_params(params)
|
|
51
|
+
set_params
|
|
71
52
|
end
|
|
72
53
|
end
|
|
73
54
|
end
|
data/lib/puppet/version.rb
CHANGED
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.
|
|
4
|
+
version: 8.25.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- OpenVox Project
|
|
@@ -125,20 +125,6 @@ dependencies:
|
|
|
125
125
|
- - "~>"
|
|
126
126
|
- !ruby/object:Gem::Version
|
|
127
127
|
version: '2.1'
|
|
128
|
-
- !ruby/object:Gem::Dependency
|
|
129
|
-
name: multi_json
|
|
130
|
-
requirement: !ruby/object:Gem::Requirement
|
|
131
|
-
requirements:
|
|
132
|
-
- - "~>"
|
|
133
|
-
- !ruby/object:Gem::Version
|
|
134
|
-
version: '1.13'
|
|
135
|
-
type: :runtime
|
|
136
|
-
prerelease: false
|
|
137
|
-
version_requirements: !ruby/object:Gem::Requirement
|
|
138
|
-
requirements:
|
|
139
|
-
- - "~>"
|
|
140
|
-
- !ruby/object:Gem::Version
|
|
141
|
-
version: '1.13'
|
|
142
128
|
- !ruby/object:Gem::Dependency
|
|
143
129
|
name: openfact
|
|
144
130
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -1366,7 +1352,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
1366
1352
|
- !ruby/object:Gem::Version
|
|
1367
1353
|
version: 1.3.1
|
|
1368
1354
|
requirements: []
|
|
1369
|
-
rubygems_version:
|
|
1355
|
+
rubygems_version: 4.0.3
|
|
1370
1356
|
specification_version: 4
|
|
1371
1357
|
summary: OpenVox, a community implementation of Puppet -- an automated configuration
|
|
1372
1358
|
management tool
|