From ad11690b0b0307f4ac5591bbaa94bec706d60554 Mon Sep 17 00:00:00 2001 From: Tobi Lehman Date: Tue, 20 Aug 2024 11:44:49 -0700 Subject: [PATCH] (PE-39083) Upgrade module versions to latest !no-release-note --- CHANGELOG.md | 10 +++++++++- Puppetfile | 8 ++++---- lib/bolt/version.rb | 2 +- 3 files changed, 14 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6d8d297b9..c81409048 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## Bolt 3.31.0 (2024-08-20) + +Upgrade module versions to latest: +- puppetlabs-puppet_agent (4.20.1) +- puppetlabs-facts (1.6.0) +- puppetlabs-zfs_core (1.6.1) +- puppetlabs-bash_task_helper (2.1.1) + ## Bolt 3.30.0 (2024-05-22) ### New features @@ -5067,4 +5075,4 @@ their containing plan** ([#1167](https://github.com/puppetlabs/bolt/issues/1167) * **`C:\Program Files\Puppet Labs\Bolt\bin\bolt.bat` is non-functional** - When moving to Ruby 2.5, the .bat scripts in Bolt packaging reverted to hard-coded paths that were not accurate. As a result Bolt would be unusable outside of PowerShell. The .bat scripts have been fixed so they work from cmd.exe as well. ([BOLT-886](https://tickets.puppet.com/browse/BOLT-886)) \ No newline at end of file + When moving to Ruby 2.5, the .bat scripts in Bolt packaging reverted to hard-coded paths that were not accurate. As a result Bolt would be unusable outside of PowerShell. The .bat scripts have been fixed so they work from cmd.exe as well. ([BOLT-886](https://tickets.puppet.com/browse/BOLT-886)) diff --git a/Puppetfile b/Puppetfile index d541ada66..88861ac77 100644 --- a/Puppetfile +++ b/Puppetfile @@ -6,15 +6,15 @@ moduledir File.join(File.dirname(__FILE__), 'modules') # Core modules used by 'apply' mod 'puppetlabs-service', '3.0.0' -mod 'puppetlabs-puppet_agent', '4.19.0' -mod 'puppetlabs-facts', '1.4.0' +mod 'puppetlabs-puppet_agent', '4.20.1' +mod 'puppetlabs-facts', '1.6.0' # Core types and providers for Puppet 6 mod 'puppetlabs-augeas_core', '1.5.0' mod 'puppetlabs-host_core', '1.3.0' mod 'puppetlabs-scheduled_task', '4.0.0' mod 'puppetlabs-sshkeys_core', '2.5.0' -mod 'puppetlabs-zfs_core', '1.5.0' +mod 'puppetlabs-zfs_core', '1.6.1' mod 'puppetlabs-cron_core', '1.3.0' mod 'puppetlabs-mount_core', '1.3.0' mod 'puppetlabs-selinux_core', '1.4.0' @@ -32,7 +32,7 @@ mod 'puppetlabs-powershell_task_helper', '0.1.0' mod 'puppetlabs-ruby_task_helper', '0.6.1' mod 'puppetlabs-ruby_plugin_helper', '0.2.0' mod 'puppetlabs-python_task_helper', '0.5.0' -mod 'puppetlabs-bash_task_helper', '2.0.0' +mod 'puppetlabs-bash_task_helper', '2.1.1' # Plugin modules mod 'puppetlabs-aws_inventory', '0.7.0' diff --git a/lib/bolt/version.rb b/lib/bolt/version.rb index 5d3cd9806..1a69a14ff 100644 --- a/lib/bolt/version.rb +++ b/lib/bolt/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Bolt - VERSION = '3.30.0' + VERSION = '3.31.0' end