Skip to content

Commit c7d3302

Browse files
authored
Merge pull request #644 from mhashizume/maint/main/release-fixes
(maint) Prerelease fixes
2 parents 1737a29 + 882e5ed commit c7d3302

File tree

3 files changed

+63
-3
lines changed

3 files changed

+63
-3
lines changed

.sync.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,8 +27,8 @@ Gemfile:
2727
from_env: BEAKER_PUPPET_VERSION
2828
version: '~> 1.22'
2929
- gem: github_changelog_generator
30-
- gem: beaker-module_install_helper
3130
version: '= 1.16.4'
31+
- gem: beaker-module_install_helper
3232
- gem: concurrent-ruby
3333
version: '= 1.1.10'
3434
- gem: beaker-puppet_install_helper
@@ -60,4 +60,4 @@ spec/default_facts.yml:
6060
spec/spec_helper.rb:
6161
unmanaged: true
6262
Rakefile:
63-
changelog_since_tag: 4.9.0
63+
changelog_since_tag: 'v4.12.1'

HISTORY.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,63 @@
1+
## [v4.12.1] - 2022-07-13
2+
3+
### Summary
4+
5+
Bug fix release.
6+
7+
### Bug Fixes
8+
9+
- Unnest module and class names in Ruby tasks ([#613](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/613))
10+
11+
## [v4.12.0] - 2022-07-13
12+
13+
### Summary
14+
15+
Add support for Ubuntu 22.04, Debian 11, Red Hat Enterprise Linux 9, and Fedora 34. Handle TLS 1.2 on older Windows systems.
16+
### Features
17+
18+
- ([FM-8943](https://tickets.puppetlabs.com/browse/FM-8943)) Add Ubuntu 22.04 support. ([#610](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/610))
19+
- Add support for Debian 11, Red Hat Enterprise Linux 9, and Fedora 34. ([#607](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/607))
20+
21+
### Bug Fixes
22+
23+
- ([MODULES-11334](https://tickets.puppetlabs.com/browse/MODULES-11334)) Handle TLS 1.2 on older Windows systems. ([#611](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/611))
24+
25+
## [v4.11.0] - 2022-05-13
26+
27+
### Summary
28+
29+
Add support for macOS 12. Allow module to function properly if there is a discrepancy between the AIO puppet-agent and Puppet versions.
30+
31+
### Features
32+
33+
- Add additional configuration options for puppet.conf ([#602](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/602))
34+
35+
### Bug Fixes
36+
37+
- ([MODULES-11315](https://tickets.puppetlabs.com/browse/MODULES-11315)) Allow module to function properly if there is a discrepancy between the AIO puppet-agent and Puppet versions. ([#604](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/604))
38+
- ([MODULES-11262](https://tickets.puppetlabs.com/browse/MODULES-11262)) Fix issue with version check on acceptance upgrade tests. ([#599](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/599))
39+
40+
## [v4.10.0] - 2022-01-26
41+
42+
### Summary
43+
44+
Improve AlmaLinux and Rocky Linux support. Converted this module to be PDK-compliant. Other fixes and improvements
45+
46+
### Features
47+
48+
- ([MODULES-11168](https://tickets.puppetlabs.com/browse/MODULES-11168), [MODULES-11192](https://tickets.puppetlabs.com/browse/MODULES-11192)) Add AlmaLinux and Rocky to the puppet-agent module ([#582](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/582), [#583](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/583))
49+
- ([MODULES-11244](https://tickets.puppetlabs.com/browse/MODULES-11244)) Convert puppet_agent module to PDK ([#588](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/588))
50+
- Allow detection of non-AIO Ppuppet ([#581](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/581))
51+
- Add additional configuration options for puppet.conf ([#584](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/584))
52+
53+
### Bug fixes
54+
55+
- ([MODULES-11214](https://tickets.puppetlabs.com/browse/MODULES-11214)) Fix wrong URL generated for macOS 11 ([#586](https://github.com/puppetlabs/puppetlabs-puppet_agent/pull/586))
56+
57+
### Acknowledgements
58+
59+
Thanks to [smortex](https://github.com/smortex) and [Heidistein](https://github.com/Heidistein) who have contributed to this release 🎉!
60+
161
## [4.9.0] - 2021-09-09
262

363
### Summary

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ if Bundler.rubygems.find_name('github_changelog_generator').any?
5050
raise "Set CHANGELOG_GITHUB_TOKEN environment variable eg 'export CHANGELOG_GITHUB_TOKEN=valid_token_here'" if Rake.application.top_level_tasks.include? "changelog" and ENV['CHANGELOG_GITHUB_TOKEN'].nil?
5151
config.user = "#{changelog_user}"
5252
config.project = "#{changelog_project}"
53-
config.since_tag = "4.9.0"
53+
config.since_tag = "v4.12.1"
5454
config.future_release = "#{changelog_future_release}"
5555
config.exclude_labels = ['maintenance']
5656
config.header = "# Change log\n\nAll notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) and this project adheres to [Semantic Versioning](http://semver.org)."

0 commit comments

Comments
 (0)