openvox 8.21.0 → 8.21.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: 5350747e91f48038164954b5b9a3d243900ce54fb8290454cce3b76cb5ce1198
4
- data.tar.gz: 824f2f3091e878863fb0dd40a5eea4733f0e1d033bc667947a5a3defc028f12d
3
+ metadata.gz: 04bd323be3adbae07a5a9046cc34cab16c323ed853e1ae2eaed00527208ec0a8
4
+ data.tar.gz: 32bdcaea98c09c1e4801b8e4ae790f2daab740a454ec1c32e91c2c5afc69bb23
5
5
  SHA512:
6
- metadata.gz: 8fd89223b530093afa90b6da3b7e11160525893cb76142fe0feae14cf9cfffd2892439c417f98fc3ee4f9484a501a18ea9e656be7093197a8217fdc2e65b6788
7
- data.tar.gz: 875ebeba054f6adeb70baede78f3c41e7b5e6f2d616d083e427617f279714926d4403468a972bb5875a66d87d45e842d7a9bf4cc6e64148cca50e257ccf58c7a
6
+ metadata.gz: 56aae8da2844a411834c22630ac3abd7c2e54cb9b6150a9b9c5f75431569a3b606af07359de93ce9cab423d8c4691fb12fb3b7b5af725b221f64deac9b79753f
7
+ data.tar.gz: ad2652c113f401b5f035546e6b0e0c732e2af7cae5ded4d70efc024e46f003da240e9fa7c7168c2961fcf4f05b7c9e33c247c9befb1db449feed175ce7907269
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/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.21.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.21.0
4
+ version: 8.21.1
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