Showing with 12 additions and 3 deletions.
  1. +9 −0 CHANGELOG.md
  2. +2 −2 functions/validate_version.pp
  3. +1 −1 metadata.json
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# PEADM module

## 2.4.4
### Summary

Support PE 2019.8.4 and newer 2019.8.z releases

### Improvements

- Validation should Permit installing or upgrading to any PE 2019.8.z release

## 2.4.3
### Summary

Expand Down
4 changes: 2 additions & 2 deletions functions/validate_version.pp
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
function peadm::validate_version(
String $version,
) {
$supported = ($version =~ SemVerRange('>= 2019.7.0 <= 2019.8.3'))
$supported = ($version =~ SemVerRange('>= 2019.7.0 <= 2019.9.0'))
unless $supported {
fail(@("REASON"/L))
Expand All @@ -10,7 +10,7 @@ function peadm::validate_version(
For PE versions older than 2019.7, please use version 1.x of the \
puppetlabs-peadm module.

For PE versions newer than 2019.8.3, check to see if a new version of peadm \
For PE versions newer than 2019.8, check to see if a new version of peadm \
exists which supports that version of PE.

| REASON
Expand Down
2 changes: 1 addition & 1 deletion metadata.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "puppetlabs-peadm",
"version": "2.4.3",
"version": "2.4.4",
"author": "puppetlabs",
"summary": "Bolt plans used to deploy an at-scale Puppet Enterprise architecture",
"license": "Apache-2.0",
Expand Down