Skip to content

Commit eae9a9a

Browse files
authored
Merge pull request #1200 from puppetlabs/MAINT-release_prep
(MAINT) Release prep for v2.6.1
2 parents 7f2b0d7 + 7684d62 commit eae9a9a

File tree

4 files changed

+38
-2
lines changed

4 files changed

+38
-2
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file.
55

66
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).
77

8+
## [v2.6.1](https://github.com/puppetlabs/pdk/tree/v2.6.1) - 2023-01-25
9+
10+
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.6.0...v2.6.1)
11+
812
## [v2.6.0](https://github.com/puppetlabs/pdk/tree/v2.6.0) - 2023-01-17
913

1014
[Full Changelog](https://github.com/puppetlabs/pdk/compare/v2.5.0...v2.6.0)

docs/pdk_known_issues.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
# PDK known issues
22

3-
Known issues in the PDK 1.x release series.
3+
## PDK 2.6.1
4+
5+
When using selecting Puppet versions PDK, you may encounter an `uninitialized constant` error if the target version is below 6.29 for Puppet 6 or 7.22 for Puppet 7.
6+
7+
This is caused by an incompatible version of concurrent-ruby that is downloaded when PDK processes the selected Puppet version.
8+
9+
To mitigate this issue, we recommend selecting only the latest puppet versions when using `--puppet-version`.
10+
11+
For example:
12+
13+
### Puppet 6
14+
15+
```
16+
pdk validate --puppet-version 6.29
17+
```
18+
19+
### Puppet 7
20+
21+
```
22+
pdk validate --puppet-version 7.22
23+
```
24+
In scenarios where `--pe-version` is used, it is recommended that `--puppet-version` is used instead, with the correct target as described above.
425

526
## PDK 1.15.0 is incompatible with Bundler 2.1.0 and later
627

docs/release_notes_pdk.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,17 @@
22

33
New features, enhancements, and resolved issues for the PDK 2.x release series.
44

5+
## PDK 2.6.1
6+
7+
### New features and enhancements
8+
9+
* A Ubuntu 22.04 compatible packages has been added.
10+
* An OSX 12 compatible package has been added.
11+
12+
### Resolved issues
13+
14+
* Versions 6.29 and 7.22 of the Puppet gem have been added to the packages. The two new gem releases resolve an issue where an incompatible version of `concurrent-ruby` may be dowloaded when creating a new module or running `pdk validate`.
15+
516
## PDK 2.6.0
617

718
### New features and enhancements

lib/pdk/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
module PDK
2-
VERSION = '2.6.0'.freeze
2+
VERSION = '2.6.1'.freeze
33
TEMPLATE_REF = '2.7.1'.freeze
44
end

0 commit comments

Comments
 (0)