diff --git a/CHANGELOG.md b/CHANGELOG.md index 00d59975..c2a688b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +## 4.26.0 (2024-11-01) + +* New DNS plugin [AddrTools](https://challenges.addr.tools/) (#572) +* Porkbun plugin updated with new API endpoint. Vendor decommissioning old endpoint on 2024-12-01. Please upgrade before then. (#570) +* Porkbun plugin added retry mechanic to deal with rate limiting errors. +* Fixed ARI related date parsing bug when using PowerShell 7+. (#578) + ## 4.25.1 (2024-09-02) * Fix Azure IMDS auth for Arc-enabled servers diff --git a/Posh-ACME/Posh-ACME.psd1 b/Posh-ACME/Posh-ACME.psd1 index cc7432fc..4b9b8543 100644 --- a/Posh-ACME/Posh-ACME.psd1 +++ b/Posh-ACME/Posh-ACME.psd1 @@ -1,7 +1,7 @@ @{ RootModule = 'Posh-ACME.psm1' -ModuleVersion = '4.25.1' +ModuleVersion = '4.26.0' GUID = '5f52d490-68dd-411c-8252-828c199a4e63' Author = 'Ryan Bolger' Copyright = '(c) 2018 Ryan Bolger. All rights reserved.' @@ -83,9 +83,12 @@ PrivateData = @{ # ReleaseNotes of this module ReleaseNotes = @' -## 4.25.1 (2024-09-02) +## 4.26.0 (2024-11-01) -* Fix Azure IMDS auth for Arc-enabled servers +* New DNS plugin [AddrTools](https://challenges.addr.tools/) (#572) +* Porkbun plugin updated with new API endpoint. Vendor decommissioning old endpoint on 2024-12-01. Please upgrade before then. (#570) +* Porkbun plugin added retry mechanic to deal with rate limiting errors. +* Fixed ARI related date parsing bug when using PowerShell 7+. (#578) '@ } diff --git a/Posh-ACME/Posh-ACME.psm1 b/Posh-ACME/Posh-ACME.psm1 index a5fe2519..9f9b1fd0 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.25.1 PowerShell/$($PSVersionTable.PSVersion)" +$script:USER_AGENT = "Posh-ACME/4.26.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