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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 01fbc2fdf8ac3b55d5dc55277bdae9ea52b40ddf0408e1f28567b26898298bb3
4
- data.tar.gz: 0d520c4674e67f33821cf4ed8776bf98c6582e1b415d1959e08e3df45e1686d2
3
+ metadata.gz: 193a632a68e5832fce877d5cdfd943a638d6f997d13a73d4b8cea6b67914a031
4
+ data.tar.gz: 36714404d1ab011e644b82a9d450a88380a9907ffb7a138c96c20799316d83b6
5
5
  SHA512:
6
- metadata.gz: bd24070977f71d1d9983a9f8cd087c468ffd8d87d10b0a4592461080fab60c9ea3ce1e5c428852c1364ccb9882c768c763ae19a02763e8ffbf8e873fe6273fcb
7
- data.tar.gz: 2bbfdf42ec1c3490c0869125a104bc9ba3a1d9cc81c30466bdf85eb3b95876e55de5bb00c0eb490a3604960f275afbee4cd6ecb88f172a6bc1b08615d1510e42
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 packaging` to install the `github_changelog_generator` gem.")
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["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'
@@ -6,7 +6,7 @@
6
6
  # Raketasks and such to set the version based on the output of `git describe`
7
7
 
8
8
  module Puppet
9
- PUPPETVERSION = '7.37.1'
9
+ PUPPETVERSION = '7.37.2'
10
10
  IMPLEMENTATION = 'openvox'
11
11
 
12
12
  ##
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: 7.37.1
4
+ version: 7.37.2
5
5
  platform: ruby
6
6
  authors:
7
7
  - Vox Pupuli