openvox 8.21.0 → 8.22.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 5350747e91f48038164954b5b9a3d243900ce54fb8290454cce3b76cb5ce1198
4
- data.tar.gz: 824f2f3091e878863fb0dd40a5eea4733f0e1d033bc667947a5a3defc028f12d
3
+ metadata.gz: caf78c678db56707d858e1d97c0476530041054e645e1de45ebadcd0ee1affa4
4
+ data.tar.gz: 801f887a1b30867bedbf3eb797187d04f90e85c2a6d949f0b60531eca0f6b874
5
5
  SHA512:
6
- metadata.gz: 8fd89223b530093afa90b6da3b7e11160525893cb76142fe0feae14cf9cfffd2892439c417f98fc3ee4f9484a501a18ea9e656be7093197a8217fdc2e65b6788
7
- data.tar.gz: 875ebeba054f6adeb70baede78f3c41e7b5e6f2d616d083e427617f279714926d4403468a972bb5875a66d87d45e842d7a9bf4cc6e64148cca50e257ccf58c7a
6
+ metadata.gz: cb5cfbebe5aaca65a86ed29a647a4e2041bc59e5097f1fe602219b5a6b585494fef0ac9178198d2f610dde79933a0b52c9c149dd4ba0d74d7c83f5fa3bfde24e
7
+ data.tar.gz: 1570ebc01ac6a7f63ebfb36327380ce2f813e68d7e9369cf99f0fa8129e6485645345ef1733fccc1d38c5aa4787655a32c79631cce779f06d880798b069c7cfc
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.21.1](https://github.com/openvoxproject/openvox/tree/8.21.1) (2025-07-23)
6
+
7
+ [Full Changelog](https://github.com/openvoxproject/openvox/compare/8.21.0...8.21.1)
8
+
9
+ **Fixed bugs:**
10
+
11
+ - Make passing invalid options to install.rb fatal [\#156](https://github.com/OpenVoxProject/openvox/pull/156) ([ekohl](https://github.com/ekohl))
12
+
13
+ **Merged pull requests:**
14
+
15
+ - Revert "Mark some failing 8.3 Windows tests as pending" [\#159](https://github.com/OpenVoxProject/openvox/pull/159) ([ekohl](https://github.com/ekohl))
16
+ - \(maint\) Drop debian-10 from testing matrix [\#152](https://github.com/OpenVoxProject/openvox/pull/152) ([jpartlow](https://github.com/jpartlow))
17
+
5
18
  ## [8.21.0](https://github.com/openvoxproject/openvox/tree/8.21.0) (2025-07-09)
6
19
 
7
20
  [Full Changelog](https://github.com/openvoxproject/openvox/compare/8.20.0...8.21.0)
data/Gemfile CHANGED
@@ -34,7 +34,7 @@ group(:features) do
34
34
  # gem 'ruby-augeas', require: false, platforms: [:ruby]
35
35
  # requires native ldap headers/libs
36
36
  # gem 'ruby-ldap', '~> 0.9', require: false, platforms: [:ruby]
37
- gem 'puppetserver-ca', '~> 2.0', require: false
37
+ gem 'openvoxserver-ca', '~> 3.0', require: false
38
38
  gem 'syslog', '>= 0.1.1', '< 1', require: false, platforms: [:ruby]
39
39
  gem 'CFPropertyList', ['>= 3.0.6', '< 4'], require: false
40
40
  end
@@ -53,7 +53,7 @@ group(:test) do
53
53
  gem 'webrick', '~> 1.7', require: false
54
54
  gem 'yard', require: false
55
55
 
56
- gem 'rubocop', '~> 1.0', require: false, platforms: [:ruby]
56
+ gem 'rubocop', '~> 1.79.0', require: false, platforms: [:ruby]
57
57
  gem 'rubocop-i18n', '~> 3.0', require: false, platforms: [:ruby]
58
58
  gem 'rubocop-performance', '~> 1.0', require: false, platforms: [:ruby]
59
59
  gem 'rubocop-rake', '~> 0.6', require: false, platforms: [:ruby]
data/install.rb CHANGED
@@ -159,6 +159,9 @@ def prepare_installation
159
159
  end
160
160
 
161
161
  opts.parse!
162
+ rescue OptionParser::InvalidOption => e
163
+ $stderr.puts e
164
+ exit 1
162
165
  end
163
166
 
164
167
  # Mac OS X 10.5 and higher declare bindir
@@ -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.21.0'
11
+ PUPPETVERSION = '8.22.0'
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.21.0
4
+ version: 8.22.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - OpenVox Project
@@ -233,7 +233,6 @@ extensions: []
233
233
  extra_rdoc_files: []
234
234
  files:
235
235
  - CHANGELOG.md
236
- - CODEOWNERS
237
236
  - CODE_OF_CONDUCT.md
238
237
  - Gemfile
239
238
  - Guardfile.example
@@ -1357,7 +1356,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
1357
1356
  - !ruby/object:Gem::Version
1358
1357
  version: 1.3.1
1359
1358
  requirements: []
1360
- rubygems_version: 3.6.7
1359
+ rubygems_version: 3.6.9
1361
1360
  specification_version: 4
1362
1361
  summary: OpenVox, a community implementation of Puppet -- an automated configuration
1363
1362
  management tool
data/CODEOWNERS DELETED
@@ -1,11 +0,0 @@
1
- # defaults
2
- * @puppetlabs/phoenix
3
-
4
- # PAL
5
- /lib/puppet/pal @puppetlabs/bolt
6
-
7
- # puppet module
8
- /lib/puppet/application/module.rb @puppetlabs/modules
9
- /lib/puppet/face/module @puppetlabs/modules
10
- /lib/puppet/forge @puppetlabs/modules
11
- /lib/puppet/module_tool @puppetlabs/modules