From 32da9d5fcc66bc2e4b5b97b03e7c718f2f97269d Mon Sep 17 00:00:00 2001 From: Ryan Bolger Date: Thu, 23 May 2024 13:53:30 -0700 Subject: [PATCH] prep for 4.23.1 release --- CHANGELOG.md | 4 ++++ Posh-ACME/Posh-ACME.psd1 | 10 +++------- Posh-ACME/Posh-ACME.psm1 | 2 +- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0d4cdf4a..fb47a16d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 4.23.1 (2024-05-23) + +* Fix DNSimple plugin not properly ignoring 404 API errors on PowerShell 5.1 (#549) + ## 4.23.0 (2024-05-04) * Added support for DNSimple user tokens which should allow for certs with names that span domains in multiple accounts. diff --git a/Posh-ACME/Posh-ACME.psd1 b/Posh-ACME/Posh-ACME.psd1 index 80fee2e3..a55cf67d 100644 --- a/Posh-ACME/Posh-ACME.psd1 +++ b/Posh-ACME/Posh-ACME.psd1 @@ -1,7 +1,7 @@ @{ RootModule = 'Posh-ACME.psm1' -ModuleVersion = '4.23.0' +ModuleVersion = '4.23.1' GUID = '5f52d490-68dd-411c-8252-828c199a4e63' Author = 'Ryan Bolger' Copyright = '(c) 2018 Ryan Bolger. All rights reserved.' @@ -83,13 +83,9 @@ PrivateData = @{ # ReleaseNotes of this module ReleaseNotes = @' -## 4.23.0 (2024-05-04) +## 4.23.1 (2024-05-23) -* Added support for DNSimple user tokens which should allow for certs with names that span domains in multiple accounts. -* Added warning in GoDaddy guide about newly imposed limits on API access. (Thanks @webprofusion-chrisc) -* Fixed DNSimple plugin not removing challenge records (#548). -* Fixed cascading errors on public functions when running with little or no existing config. (#544) -* Fixed OVH plugin on PowerShell 5.1 by removing an accidentally added ternary operator. (#545) (Thanks @joshooaj) +* Fix DNSimple plugin not properly ignoring 404 API errors on PowerShell 5.1 (#549) '@ } diff --git a/Posh-ACME/Posh-ACME.psm1 b/Posh-ACME/Posh-ACME.psm1 index 89ac6073..bca21cb8 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.23.0 PowerShell/$($PSVersionTable.PSVersion)" +$script:USER_AGENT = "Posh-ACME/4.23.1 PowerShell/$($PSVersionTable.PSVersion)" $script:COMMON_HEADERS = @{'Accept-Language'='en-us,en;q=0.5'} # Add an appropriate platform to the user-agent if possible