Skip to content

Commit

Permalink
prep for 4.26.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Nov 2, 2024
1 parent 8664add commit e88a265
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 4 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
9 changes: 6 additions & 3 deletions Posh-ACME/Posh-ACME.psd1
Original file line number Diff line number Diff line change
@@ -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.'
Expand Down Expand Up @@ -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)
'@

}
Expand Down
2 changes: 1 addition & 1 deletion Posh-ACME/Posh-ACME.psm1
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e88a265

Please sign in to comment.