Skip to content

Release 8.19.2 #117

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Jun 6, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,17 @@

All notable changes to this project will be documented in this file.

## [8.19.2](https://github.com/openvoxproject/puppet/tree/8.19.2) (2025-06-06)

[Full Changelog](https://github.com/openvoxproject/puppet/compare/8.19.1...8.19.2)

**Fixed bugs:**

- server\_facts: Switch implementation-\>serverimplementation [\#107](https://github.com/OpenVoxProject/puppet/pull/107) ([binford2k](https://github.com/binford2k))
- Reflect Ruby 3.4 stack trace changes [\#100](https://github.com/OpenVoxProject/puppet/pull/100) ([ekohl](https://github.com/ekohl))
- Add base64 as gem dependencies for Ruby 3.4 [\#98](https://github.com/OpenVoxProject/puppet/pull/98) ([ekohl](https://github.com/ekohl))
- Add racc gem dependency [\#89](https://github.com/OpenVoxProject/puppet/pull/89) ([ekohl](https://github.com/ekohl))

## [8.19.1](https://github.com/openvoxproject/puppet/tree/8.19.1) (2025-06-03)

[Full Changelog](https://github.com/openvoxproject/puppet/compare/8.19.0...8.19.1)
Expand Down
1 change: 1 addition & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ begin
config.exclude_labels = %w[dependencies duplicate question invalid wontfix wont-fix modulesync skip-changelog]
config.since_tag = "8.18.1"
config.future_release = Puppet::PUPPETVERSION
config.exclude_tags_regex = /\A7\./
end
rescue LoadError
task :changelog do
Expand Down
2 changes: 1 addition & 1 deletion lib/puppet/version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
# Raketasks and such to set the version based on the output of `git describe`

module Puppet
PUPPETVERSION = '8.19.1'
PUPPETVERSION = '8.19.2'
IMPLEMENTATION = 'openvox'

##
Expand Down
2 changes: 1 addition & 1 deletion puppet.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |spec|
spec.name = "openvox"
spec.version = "8.19.1"
spec.version = "8.19.2"
spec.licenses = ['Apache-2.0']

spec.required_rubygems_version = Gem::Requirement.new("> 1.3.1")
Expand Down
Loading