openvox 7.37.1 → 7.37.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 +17 -0
- data/Gemfile +5 -1
- data/Rakefile +1 -1
- data/lib/puppet/node/server_facts.rb +1 -1
- data/lib/puppet/version.rb +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: 193a632a68e5832fce877d5cdfd943a638d6f997d13a73d4b8cea6b67914a031
|
4
|
+
data.tar.gz: 36714404d1ab011e644b82a9d450a88380a9907ffb7a138c96c20799316d83b6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 2323e9156cf5d12a36c0de1623777c0ca60abda85a4387a2740d8d1a1cbf46578b97487d05999d0a8d2069b290775fe74124349d33df851ce0a1e9874ea8aa28
|
7
|
+
data.tar.gz: 2c6f685d7d75b2cffa5213ee4aa1d72261b6f62aca8b7e34ef17b35138e10067f12832a3c900ddc8d6f341d9a59ac3bcddd60938ff781b4073a7d4cde1c9b7c4
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,23 @@
|
|
2
2
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
4
4
|
|
5
|
+
## [7.37.2](https://github.com/openvoxproject/puppet/tree/7.37.2) (2025-06-06)
|
6
|
+
|
7
|
+
[Full Changelog](https://github.com/openvoxproject/puppet/compare/7.37.1...7.37.2)
|
8
|
+
|
9
|
+
**Fixed bugs:**
|
10
|
+
|
11
|
+
- server\_facts: Switch implementation-\>serverimplementation [\#108](https://github.com/OpenVoxProject/puppet/pull/108) ([bastelfreak](https://github.com/bastelfreak))
|
12
|
+
|
13
|
+
**Merged pull requests:**
|
14
|
+
|
15
|
+
- rubocop: regenerate todo file & exclude vendor dirs [\#114](https://github.com/OpenVoxProject/puppet/pull/114) ([bastelfreak](https://github.com/bastelfreak))
|
16
|
+
- GCG: move it to dedicated gem group [\#111](https://github.com/OpenVoxProject/puppet/pull/111) ([bastelfreak](https://github.com/bastelfreak))
|
17
|
+
|
18
|
+
## [7.37.1](https://github.com/openvoxproject/puppet/tree/7.37.1) (2025-06-03)
|
19
|
+
|
20
|
+
[Full Changelog](https://github.com/openvoxproject/puppet/compare/7.37.0...7.37.1)
|
21
|
+
|
5
22
|
## [7.37.0](https://github.com/openvoxproject/puppet/tree/7.37.0) (2025-06-03)
|
6
23
|
|
7
24
|
[Full Changelog](https://github.com/openvoxproject/puppet/compare/7.36.1...7.37.0)
|
data/Gemfile
CHANGED
@@ -66,7 +66,6 @@ group(:development, optional: true) do
|
|
66
66
|
end
|
67
67
|
|
68
68
|
group(:packaging) do
|
69
|
-
gem 'github_changelog_generator'
|
70
69
|
gem 'packaging', *location_for(ENV['PACKAGING_LOCATION'] || '~> 0.99')
|
71
70
|
end
|
72
71
|
|
@@ -75,6 +74,11 @@ group(:documentation, optional: true) do
|
|
75
74
|
gem 'ronn', '~> 0.7.3', require: false, platforms: [:ruby]
|
76
75
|
end
|
77
76
|
|
77
|
+
group :release, optional: true do
|
78
|
+
gem 'faraday-retry', require: false
|
79
|
+
gem 'github_changelog_generator', require: false
|
80
|
+
end
|
81
|
+
|
78
82
|
if File.exist? "#{__FILE__}.local"
|
79
83
|
eval(File.read("#{__FILE__}.local"), binding)
|
80
84
|
end
|
data/Rakefile
CHANGED
@@ -155,6 +155,6 @@ begin
|
|
155
155
|
end
|
156
156
|
rescue LoadError
|
157
157
|
task :changelog do
|
158
|
-
abort("Run `bundle install --with
|
158
|
+
abort("Run `bundle install --with release` to install the `github_changelog_generator` gem.")
|
159
159
|
end
|
160
160
|
end
|
@@ -5,7 +5,7 @@ class Puppet::Node::ServerFacts
|
|
5
5
|
server_facts = {}
|
6
6
|
|
7
7
|
# Add implementation information
|
8
|
-
server_facts["
|
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'
|
data/lib/puppet/version.rb
CHANGED