openvox 8.19.1 → 8.19.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: 393429eb8445bc0e280542c9bd747ce97f7a1b1b16a84ef42140654c3b1710ff
4
- data.tar.gz: 6621208b7dfa7380892bbe7b284767bb4eadff73bd153f0d7b1bc08373b6bcf7
3
+ metadata.gz: aee9652d6d305f148340ca0549075b14115f8ae4fd72d26b08f4f6de52cfaf7f
4
+ data.tar.gz: cebf9cccc4374f6e8b71376e48604658ff79a6ba1f19aa899b945bec05d6f798
5
5
  SHA512:
6
- metadata.gz: 770869516841f47615a37dedb73be8d2f062785bdd50d984c24974d88089e8be6d1f3a0a058044a32dbfcbf02c5df623f7218d6b0de368122fe2a805cd534cf5
7
- data.tar.gz: 281a9f8079cc0c1b815092aa5f254b1b553d2470ecda0b76402e7c96aaf1b71b21fb82a587f427a9cd8b57238d6e4cd8b684a0f6251135f83254eac3201e7bd9
6
+ metadata.gz: ffa447bea4a9a6cc450b901f6b799a36769318621d7f554f301118388ae417673a08fb048808f01a61cc4d0fec23d7fc58cb2cd833230b8a5548070afe61492b
7
+ data.tar.gz: 7435e8c3fdce5f5ca1015f30e13239dadd6caa1c4508ebacbd98a956259dd953c5be6f3b9982ea5460dc806942b43abd602f414c6fd767650bb66cc48baf9ae8
data/CHANGELOG.md CHANGED
@@ -2,6 +2,17 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file.
4
4
 
5
+ ## [8.19.2](https://github.com/openvoxproject/puppet/tree/8.19.2) (2025-06-06)
6
+
7
+ [Full Changelog](https://github.com/openvoxproject/puppet/compare/8.19.1...8.19.2)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - server\_facts: Switch implementation-\>serverimplementation [\#107](https://github.com/OpenVoxProject/puppet/pull/107) ([binford2k](https://github.com/binford2k))
12
+ - Reflect Ruby 3.4 stack trace changes [\#100](https://github.com/OpenVoxProject/puppet/pull/100) ([ekohl](https://github.com/ekohl))
13
+ - Add base64 as gem dependencies for Ruby 3.4 [\#98](https://github.com/OpenVoxProject/puppet/pull/98) ([ekohl](https://github.com/ekohl))
14
+ - Add racc gem dependency [\#89](https://github.com/OpenVoxProject/puppet/pull/89) ([ekohl](https://github.com/ekohl))
15
+
5
16
  ## [8.19.1](https://github.com/openvoxproject/puppet/tree/8.19.1) (2025-06-03)
6
17
 
7
18
  [Full Changelog](https://github.com/openvoxproject/puppet/compare/8.19.0...8.19.1)
data/Gemfile CHANGED
@@ -43,7 +43,6 @@ group(:test) do
43
43
  # 1.16.0 - 1.16.2 are broken on Windows
44
44
  gem 'ffi', '>= 1.15.5', '< 1.17.0', '!= 1.16.0', '!= 1.16.1', '!= 1.16.2', require: false
45
45
  gem "json-schema", '>= 2', '< 6', require: false
46
- gem "racc", "1.5.2", require: false
47
46
  gem "rake", *location_for(ENV['RAKE_LOCATION'] || '~> 13.0')
48
47
  gem "rspec", "~> 3.1", require: false
49
48
  gem "rspec-expectations", ["~> 3.9", "!= 3.9.3"]
@@ -69,7 +68,6 @@ group(:development, optional: true) do
69
68
  end
70
69
 
71
70
  group(:packaging) do
72
- gem 'github_changelog_generator'
73
71
  gem 'packaging', *location_for(ENV['PACKAGING_LOCATION'] || '~> 0.99')
74
72
  end
75
73
 
@@ -80,6 +78,11 @@ group(:documentation, optional: true) do
80
78
  gem 'pandoc-ruby', require: false, platforms: [:ruby]
81
79
  end
82
80
 
81
+ group :release, optional: true do
82
+ gem 'faraday-retry', require: false
83
+ gem 'github_changelog_generator', require: false
84
+ end
85
+
83
86
  if File.exist? "#{__FILE__}.local"
84
87
  eval(File.read("#{__FILE__}.local"), binding)
85
88
  end
data/Rakefile CHANGED
@@ -162,9 +162,10 @@ begin
162
162
  config.exclude_labels = %w[dependencies duplicate question invalid wontfix wont-fix modulesync skip-changelog]
163
163
  config.since_tag = "8.18.1"
164
164
  config.future_release = Puppet::PUPPETVERSION
165
+ config.exclude_tags_regex = /\A7\./
165
166
  end
166
167
  rescue LoadError
167
168
  task :changelog do
168
- abort("Run `bundle install --with packaging` to install the `github_changelog_generator` gem.")
169
+ abort("Run `bundle install --with release` to install the `github_changelog_generator` gem.")
169
170
  end
170
171
  end
@@ -58,7 +58,7 @@ Puppet.features.add(:manages_symlinks) do
58
58
  require 'ffi'
59
59
  extend FFI::Library
60
60
 
61
- def self.is_implemented # rubocop:disable Naming/PredicateName
61
+ def self.is_implemented # rubocop:disable Naming/PredicatePrefix
62
62
  ffi_lib :kernel32
63
63
  attach_function :CreateSymbolicLinkW, [:lpwstr, :lpwstr, :dword], :boolean
64
64
 
@@ -107,7 +107,7 @@ Puppet::Functions.create_function(:defined, Puppet::Functions::InternalFunction)
107
107
  required_repeated_param 'Variant[String, Type[CatalogEntry], Type[Type[CatalogEntry]]]', :vals
108
108
  end
109
109
 
110
- def is_defined(scope, *vals) # rubocop:disable Naming/PredicateName
110
+ def is_defined(scope, *vals) # rubocop:disable Naming/PredicatePrefix
111
111
  vals.any? do |val|
112
112
  case val
113
113
  when String
@@ -5,7 +5,7 @@ class Puppet::Node::ServerFacts
5
5
  server_facts = {}
6
6
 
7
7
  # Add implementation information
8
- server_facts["implementation"] = Puppet.implementation
8
+ server_facts["serverimplementation"] = Puppet.implementation
9
9
 
10
10
  # Add our server Puppet Enterprise version, if available.
11
11
  pe_version_file = '/opt/puppetlabs/server/pe_version'
@@ -93,7 +93,7 @@ class Puppet::Parameter
93
93
  end
94
94
  end
95
95
 
96
- # rubocop:disable Naming/PredicateName
96
+ # rubocop:disable Naming/PredicatePrefix
97
97
  def sensitive(value = nil, &block)
98
98
  if block
99
99
  define_method(:is_sensitive, &block)
@@ -101,7 +101,7 @@ class Puppet::Parameter
101
101
  define_method(:is_sensitive) do value end
102
102
  end
103
103
  end
104
- # rubocop:enable Naming/PredicateName
104
+ # rubocop:enable Naming/PredicatePrefix
105
105
 
106
106
  # Produces a documentation string.
107
107
  # If an enumeration of _valid values_ has been defined, it is appended to the documentation
@@ -34,7 +34,7 @@ module Puppet
34
34
  hash_to_key_value_s(should_value)
35
35
  end
36
36
 
37
- def is_to_s(current_value) # rubocop:disable Naming/PredicateName
37
+ def is_to_s(current_value) # rubocop:disable Naming/PredicatePrefix
38
38
  hash_to_key_value_s(current_value)
39
39
  end
40
40
 
@@ -8,7 +8,7 @@ module Puppet
8
8
  # For an ordered list see {Puppet::Property::OrderedList}.
9
9
  #
10
10
  class List < Property
11
- def is_to_s(currentvalue) # rubocop:disable Naming/PredicateName
11
+ def is_to_s(currentvalue) # rubocop:disable Naming/PredicatePrefix
12
12
  currentvalue == :absent ? super(currentvalue) : currentvalue.join(delimiter)
13
13
  end
14
14
 
@@ -403,7 +403,7 @@ class Puppet::Property < Puppet::Parameter
403
403
  # are not already in suitable form.
404
404
  # @param value [Object] the value to format as a string
405
405
  # @return [String] a pretty printing string
406
- def is_to_s(value) # rubocop:disable Naming/PredicateName
406
+ def is_to_s(value) # rubocop:disable Naming/PredicatePrefix
407
407
  self.class.format_value_for_display(value)
408
408
  end
409
409
 
@@ -199,7 +199,7 @@ class Puppet::Provider
199
199
  # @note the name ´has_command´ looks odd in an API context, but makes more sense when seen in the internal
200
200
  # DSL context where a Provider is declaratively defined.
201
201
  # @api public
202
- # rubocop:disable Naming/PredicateName
202
+ # rubocop:disable Naming/PredicatePrefix
203
203
  def self.has_command(name, path, &block)
204
204
  name = name.intern
205
205
  command = CommandDefiner.define(name, path, self, &block)
@@ -211,7 +211,7 @@ class Puppet::Provider
211
211
  return command.execute(*args)
212
212
  end
213
213
  end
214
- # rubocop:enable Naming/PredicateName
214
+ # rubocop:enable Naming/PredicatePrefix
215
215
 
216
216
  # Internal helper class when creating commands - undocumented.
217
217
  # @api private
@@ -232,7 +232,7 @@ class Puppet::Provider
232
232
  @custom_environment = {}
233
233
  end
234
234
 
235
- def is_optional # rubocop:disable Naming/PredicateName
235
+ def is_optional # rubocop:disable Naming/PredicatePrefix
236
236
  @optional = true
237
237
  end
238
238
 
@@ -39,7 +39,7 @@ module Puppet
39
39
  end
40
40
 
41
41
  # We want to print names, not numbers
42
- def is_to_s(currentvalue) # rubocop:disable Naming/PredicateName
42
+ def is_to_s(currentvalue) # rubocop:disable Naming/PredicatePrefix
43
43
  super(provider.gid2name(currentvalue) || currentvalue)
44
44
  end
45
45
 
@@ -179,7 +179,7 @@ module Puppet
179
179
  "'#{should_value.rjust(4, '0')}'"
180
180
  end
181
181
 
182
- def is_to_s(currentvalue) # rubocop:disable Naming/PredicateName
182
+ def is_to_s(currentvalue) # rubocop:disable Naming/PredicatePrefix
183
183
  if currentvalue == :absent
184
184
  # This can occur during audits---if a file is transitioning from
185
185
  # present to absent the mode will have a value of `:absent`.
@@ -41,7 +41,7 @@ module Puppet
41
41
  end
42
42
 
43
43
  # We want to print names, not numbers
44
- def is_to_s(currentvalue) # rubocop:disable Naming/PredicateName
44
+ def is_to_s(currentvalue) # rubocop:disable Naming/PredicatePrefix
45
45
  super(provider.uid2name(currentvalue) || currentvalue)
46
46
  end
47
47
 
@@ -102,7 +102,7 @@ module Puppet
102
102
  super(current)
103
103
  end
104
104
 
105
- def is_to_s(currentvalue) # rubocop:disable Naming/PredicateName
105
+ def is_to_s(currentvalue) # rubocop:disable Naming/PredicatePrefix
106
106
  if provider.respond_to?(:members_to_s)
107
107
  currentvalue = '' if currentvalue.nil?
108
108
  currentvalue = currentvalue.is_a?(Array) ? currentvalue : currentvalue.split(',')
@@ -396,7 +396,7 @@ module Puppet
396
396
  end
397
397
  end
398
398
 
399
- def is_to_s(currentvalue) # rubocop:disable Naming/PredicateName
399
+ def is_to_s(currentvalue) # rubocop:disable Naming/PredicatePrefix
400
400
  if provider.respond_to?(:package_settings_is_to_s)
401
401
  provider.package_settings_is_to_s(should, currentvalue)
402
402
  else
data/lib/puppet/util.rb CHANGED
@@ -523,7 +523,11 @@ module Util
523
523
 
524
524
  module_function :thinmark
525
525
 
526
- PUPPET_STACK_INSERTION_FRAME = /.*puppet_stack\.rb.*in.*`stack'/
526
+ PUPPET_STACK_INSERTION_FRAME = if RUBY_VERSION >= '3.4'
527
+ /.*puppet_stack\.rb.*in.*'Puppet::Pops::PuppetStack\.stack'/
528
+ else
529
+ /.*puppet_stack\.rb.*in.*`stack'/
530
+ end
527
531
 
528
532
  # utility method to get the current call stack and format it to a human-readable string (which some IDEs/editors
529
533
  # will recognize as links to the line numbers in the trace)
@@ -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.19.1'
11
+ PUPPETVERSION = '8.19.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.19.1
4
+ version: 8.19.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli
@@ -9,6 +9,46 @@ bindir: bin
9
9
  cert_chain: []
10
10
  date: 2012-08-17 00:00:00.000000000 Z
11
11
  dependencies:
12
+ - !ruby/object:Gem::Dependency
13
+ name: base64
14
+ requirement: !ruby/object:Gem::Requirement
15
+ requirements:
16
+ - - ">="
17
+ - !ruby/object:Gem::Version
18
+ version: '0.1'
19
+ - - "<"
20
+ - !ruby/object:Gem::Version
21
+ version: '0.3'
22
+ type: :runtime
23
+ prerelease: false
24
+ version_requirements: !ruby/object:Gem::Requirement
25
+ requirements:
26
+ - - ">="
27
+ - !ruby/object:Gem::Version
28
+ version: '0.1'
29
+ - - "<"
30
+ - !ruby/object:Gem::Version
31
+ version: '0.3'
32
+ - !ruby/object:Gem::Dependency
33
+ name: benchmark
34
+ requirement: !ruby/object:Gem::Requirement
35
+ requirements:
36
+ - - ">="
37
+ - !ruby/object:Gem::Version
38
+ version: '0.3'
39
+ - - "<"
40
+ - !ruby/object:Gem::Version
41
+ version: '0.5'
42
+ type: :runtime
43
+ prerelease: false
44
+ version_requirements: !ruby/object:Gem::Requirement
45
+ requirements:
46
+ - - ">="
47
+ - !ruby/object:Gem::Version
48
+ version: '0.3'
49
+ - - "<"
50
+ - !ruby/object:Gem::Version
51
+ version: '0.5'
12
52
  - !ruby/object:Gem::Dependency
13
53
  name: concurrent-ruby
14
54
  requirement: !ruby/object:Gem::Requirement
@@ -120,81 +160,75 @@ dependencies:
120
160
  - !ruby/object:Gem::Version
121
161
  version: '1.13'
122
162
  - !ruby/object:Gem::Dependency
123
- name: puppet-resource_api
163
+ name: ostruct
124
164
  requirement: !ruby/object:Gem::Requirement
125
165
  requirements:
126
166
  - - "~>"
127
167
  - !ruby/object:Gem::Version
128
- version: '1.5'
168
+ version: 0.6.0
129
169
  type: :runtime
130
170
  prerelease: false
131
171
  version_requirements: !ruby/object:Gem::Requirement
132
172
  requirements:
133
173
  - - "~>"
134
174
  - !ruby/object:Gem::Version
135
- version: '1.5'
175
+ version: 0.6.0
136
176
  - !ruby/object:Gem::Dependency
137
- name: scanf
177
+ name: puppet-resource_api
138
178
  requirement: !ruby/object:Gem::Requirement
139
179
  requirements:
140
180
  - - "~>"
141
181
  - !ruby/object:Gem::Version
142
- version: '1.0'
182
+ version: '1.5'
143
183
  type: :runtime
144
184
  prerelease: false
145
185
  version_requirements: !ruby/object:Gem::Requirement
146
186
  requirements:
147
187
  - - "~>"
148
188
  - !ruby/object:Gem::Version
149
- version: '1.0'
189
+ version: '1.5'
150
190
  - !ruby/object:Gem::Dependency
151
- name: semantic_puppet
191
+ name: racc
152
192
  requirement: !ruby/object:Gem::Requirement
153
193
  requirements:
154
194
  - - "~>"
155
195
  - !ruby/object:Gem::Version
156
- version: '1.0'
196
+ version: '1.5'
157
197
  type: :runtime
158
198
  prerelease: false
159
199
  version_requirements: !ruby/object:Gem::Requirement
160
200
  requirements:
161
201
  - - "~>"
162
202
  - !ruby/object:Gem::Version
163
- version: '1.0'
203
+ version: '1.5'
164
204
  - !ruby/object:Gem::Dependency
165
- name: ostruct
205
+ name: scanf
166
206
  requirement: !ruby/object:Gem::Requirement
167
207
  requirements:
168
208
  - - "~>"
169
209
  - !ruby/object:Gem::Version
170
- version: 0.6.0
210
+ version: '1.0'
171
211
  type: :runtime
172
212
  prerelease: false
173
213
  version_requirements: !ruby/object:Gem::Requirement
174
214
  requirements:
175
215
  - - "~>"
176
216
  - !ruby/object:Gem::Version
177
- version: 0.6.0
217
+ version: '1.0'
178
218
  - !ruby/object:Gem::Dependency
179
- name: benchmark
219
+ name: semantic_puppet
180
220
  requirement: !ruby/object:Gem::Requirement
181
221
  requirements:
182
- - - ">="
183
- - !ruby/object:Gem::Version
184
- version: '0.3'
185
- - - "<"
222
+ - - "~>"
186
223
  - !ruby/object:Gem::Version
187
- version: '0.5'
224
+ version: '1.0'
188
225
  type: :runtime
189
226
  prerelease: false
190
227
  version_requirements: !ruby/object:Gem::Requirement
191
228
  requirements:
192
- - - ">="
193
- - !ruby/object:Gem::Version
194
- version: '0.3'
195
- - - "<"
229
+ - - "~>"
196
230
  - !ruby/object:Gem::Version
197
- version: '0.5'
231
+ version: '1.0'
198
232
  description: |
199
233
  OpenVox is a community implementation of Puppet, an automated administrative engine for your Linux, Unix, and Windows systems, performs administrative tasks
200
234
  (such as adding users, installing packages, and updating server configurations) based on a centralized specification.