diff --git a/CHANGELOG.md b/CHANGELOG.md index 11fb8bf4..0d4cdf4a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## 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. +* 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) + ## 4.22.0 (2024-04-12) * New DNS plugin [WebsupportSK](https://www.websupport.sk/?ref=NTIqFFo7Rg). This will be useful to Active24 users who have been migrated to the new provider. diff --git a/Posh-ACME/Posh-ACME.psd1 b/Posh-ACME/Posh-ACME.psd1 index 96a65867..80fee2e3 100644 --- a/Posh-ACME/Posh-ACME.psd1 +++ b/Posh-ACME/Posh-ACME.psd1 @@ -1,7 +1,7 @@ @{ RootModule = 'Posh-ACME.psm1' -ModuleVersion = '4.22.0' +ModuleVersion = '4.23.0' GUID = '5f52d490-68dd-411c-8252-828c199a4e63' Author = 'Ryan Bolger' Copyright = '(c) 2018 Ryan Bolger. All rights reserved.' @@ -83,10 +83,13 @@ PrivateData = @{ # ReleaseNotes of this module ReleaseNotes = @' -## 4.22.0 (2024-04-12) +## 4.23.0 (2024-05-04) -* New DNS plugin [WebsupportSK](https://www.websupport.sk/?ref=NTIqFFo7Rg). This will be useful to Active24 users who have been migrated to the new provider. -* Added additional debug logging for Active24 plugin. +* 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) '@ } diff --git a/Posh-ACME/Posh-ACME.psm1 b/Posh-ACME/Posh-ACME.psm1 index de3a7f8a..89ac6073 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.22.0 PowerShell/$($PSVersionTable.PSVersion)" +$script:USER_AGENT = "Posh-ACME/4.23.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