From 6474dc4a4dba4fa6dadbab6d42c1c9fe2d26ddb4 Mon Sep 17 00:00:00 2001 From: Ryan Bolger Date: Fri, 8 Mar 2024 14:54:24 -0800 Subject: [PATCH] prep for 4.21.0 release --- CHANGELOG.md | 5 +++++ Posh-ACME/Posh-ACME.psd1 | 10 ++++------ Posh-ACME/Posh-ACME.psm1 | 2 +- 3 files changed, 10 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bb8a2a3b..f0cae7cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,8 @@ +## 4.21.0 (2024-03-08) + +* New DNS plugin [WEDOS](https://www.wedos.com/zone/) +* Fixed OVH bug that prevented record creation at a zone apex most common when using DNS Alias support. Also added doc warning about time skew and better debug logging. (#535) + ## 4.20.0 (2023-12-12) * New DNS plugin [PowerDNS](https://www.powerdns.com/powerdns-authoritative-server) diff --git a/Posh-ACME/Posh-ACME.psd1 b/Posh-ACME/Posh-ACME.psd1 index 538b3fdb..1245983a 100644 --- a/Posh-ACME/Posh-ACME.psd1 +++ b/Posh-ACME/Posh-ACME.psd1 @@ -1,7 +1,7 @@ @{ RootModule = 'Posh-ACME.psm1' -ModuleVersion = '4.20.0' +ModuleVersion = '4.21.0' GUID = '5f52d490-68dd-411c-8252-828c199a4e63' Author = 'Ryan Bolger' Copyright = '(c) 2018 Ryan Bolger. All rights reserved.' @@ -83,12 +83,10 @@ PrivateData = @{ # ReleaseNotes of this module ReleaseNotes = @' -## 4.20.0 (2023-12-12) +## 4.21.0 (2024-03-08) -* New DNS plugin [PowerDNS](https://www.powerdns.com/powerdns-authoritative-server) -* Fixed duplicate identifiers in the `Domain` parameter causing errors with some ACME servers. Identifiers will now be deduplicated prior to being saved and sent to the ACME server. (#517) -* Added `WSHDelayAfterStart` param to the WebSelfHost plugin which adds a configurable delay between when the challenge listener starts up and when it asks the ACME server to validate the challenges. (#518) -* Orders where the MainDomain is longer than 64 characters will not include a CN value in the Subject field of the certificate request sent to the ACME server. CNs longer than 64 characters were already being rejected by some CAs like Let's Encrypt because the x509 spec doesn't allow for it. [More Info](https://community.letsencrypt.org/t/simplifying-issuance-for-very-long-domain-names/207924) +* New DNS plugin [WEDOS](https://www.wedos.com/zone/) +* Fixed OVH bug that prevented record creation at a zone apex most common when using DNS Alias support. Also added doc warning about time skew and better debug logging. (#535) '@ } diff --git a/Posh-ACME/Posh-ACME.psm1 b/Posh-ACME/Posh-ACME.psm1 index 159cbf86..2ce9ee40 100644 --- a/Posh-ACME/Posh-ACME.psm1 +++ b/Posh-ACME/Posh-ACME.psm1 @@ -51,7 +51,7 @@ $script:WellKnownDirs = @{ SSLCOM_ECC = 'https://acme.ssl.com/sslcom-dv-ecc' } $script:HEADER_NONCE = 'Replay-Nonce' -$script:USER_AGENT = "Posh-ACME/4.20.0 PowerShell/$($PSVersionTable.PSVersion)" +$script:USER_AGENT = "Posh-ACME/4.21.0 PowerShell/$($PSVersionTable.PSVersion)" $script:COMMON_HEADERS = @{'Accept-Language'='en-us,en;q=0.5'} # Add an appropriate platform to the user-agent if possible