openvox 8.26.0 → 8.26.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 +4 -4
- data/CHANGELOG.md +27 -0
- data/lib/puppet/util/plist.rb +1 -1
- data/lib/puppet/version.rb +1 -1
- data/tasks/build.rake +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 34829f1a93ec3f4f5e3fa8de6b246129e6cc7004b9153c914a1c7e8c70e77f3b
|
|
4
|
+
data.tar.gz: 02c8dde7b3751636cb990d852f559046ccad72de2fde6335af2b81aaf8dd9642
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: cc4905eda993082dbb9f877e21df9b0bba752f9e61976720cce5710e07a699ad20d9f7f4522fcb18cd8d76cd7e2b52519ec441f0734e92e6ebe13dc3b076cad5
|
|
7
|
+
data.tar.gz: 053f784ccf8edda849a156abd007b02c97f96f4e54161c3a0506d40eb952d0f515823b66a21eeb2899d7923bfdf79bf93b5b42255a11247ee7aec555530b023a
|
data/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,33 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
|
|
5
|
+
## [8.26.2](https://github.com/openvoxproject/openvox/tree/8.26.2) (2026-04-17)
|
|
6
|
+
|
|
7
|
+
[Full Changelog](https://github.com/openvoxproject/openvox/compare/8.26.1...8.26.2)
|
|
8
|
+
|
|
9
|
+
**Fixed bugs:**
|
|
10
|
+
|
|
11
|
+
- \[Bug\]: `provides puppet-agent` uses bare major version, breaking `>= x.y.z` dependency constraints \(e.g. foreman-installer\) [\#406](https://github.com/OpenVoxProject/openvox/issues/406)
|
|
12
|
+
- Revert "Add syslog as a runtime dependency" [\#410](https://github.com/OpenVoxProject/openvox/pull/410) ([nmburgan](https://github.com/nmburgan))
|
|
13
|
+
- \(\#406\) packaging: Set Maj.Min.Patch version as `provides` instead of major one [\#407](https://github.com/OpenVoxProject/openvox/pull/407) ([bastelfreak](https://github.com/bastelfreak))
|
|
14
|
+
|
|
15
|
+
**Merged pull requests:**
|
|
16
|
+
|
|
17
|
+
- Promote puppet-runtime 2026.04.17.1 [\#411](https://github.com/OpenVoxProject/openvox/pull/411) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
|
|
18
|
+
- .gitignore: Ignore /acceptance/.vendor [\#408](https://github.com/OpenVoxProject/openvox/pull/408) ([bastelfreak](https://github.com/bastelfreak))
|
|
19
|
+
|
|
20
|
+
## [8.26.1](https://github.com/openvoxproject/openvox/tree/8.26.1) (2026-04-15)
|
|
21
|
+
|
|
22
|
+
[Full Changelog](https://github.com/openvoxproject/openvox/compare/8.26.0...8.26.1)
|
|
23
|
+
|
|
24
|
+
**Merged pull requests:**
|
|
25
|
+
|
|
26
|
+
- Promote puppet-runtime 2026.04.15.1 [\#404](https://github.com/OpenVoxProject/openvox/pull/404) ([OpenVoxProjectBot](https://github.com/OpenVoxProjectBot))
|
|
27
|
+
- Add signoff to promote action [\#402](https://github.com/OpenVoxProject/openvox/pull/402) ([nmburgan](https://github.com/nmburgan))
|
|
28
|
+
- Add syslog as a runtime dependency [\#400](https://github.com/OpenVoxProject/openvox/pull/400) ([nmburgan](https://github.com/nmburgan))
|
|
29
|
+
- acceptance: add hiera-eyaml v5 backend test [\#399](https://github.com/OpenVoxProject/openvox/pull/399) ([nmburgan](https://github.com/nmburgan))
|
|
30
|
+
- avoid command injection risk [\#398](https://github.com/OpenVoxProject/openvox/pull/398) ([corporate-gadfly](https://github.com/corporate-gadfly))
|
|
31
|
+
|
|
5
32
|
## [8.26.0](https://github.com/openvoxproject/openvox/tree/8.26.0) (2026-04-14)
|
|
6
33
|
|
|
7
34
|
[Full Changelog](https://github.com/openvoxproject/openvox/compare/8.25.0...8.26.0)
|
data/lib/puppet/util/plist.rb
CHANGED
data/lib/puppet/version.rb
CHANGED
data/tasks/build.rake
CHANGED
|
@@ -17,7 +17,7 @@ namespace :vox do
|
|
|
17
17
|
end
|
|
18
18
|
|
|
19
19
|
engine = platform =~ /^(macos|windows)-/ ? 'local' : 'docker'
|
|
20
|
-
cmd = "bundle exec build #{project} #{platform} --engine #{engine}"
|
|
20
|
+
cmd = "bundle exec vanagon build #{project} #{platform} --engine #{engine}"
|
|
21
21
|
|
|
22
22
|
Dir.chdir('packaging') do
|
|
23
23
|
run_command(cmd, silent: false, print_command: true, report_status: true)
|