Skip to content

Commit

Permalink
prep for 4.25.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Sep 3, 2024
1 parent 411eaf0 commit 763baec
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.25.1 (2024-09-02)

* Fix Azure IMDS auth for Arc-enabled servers

## 4.25.0 (2024-08-18)

* New DNS plugins
Expand Down
15 changes: 4 additions & 11 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.0'
ModuleVersion = '4.25.1'
GUID = '5f52d490-68dd-411c-8252-828c199a4e63'
Author = 'Ryan Bolger'
Copyright = '(c) 2018 Ryan Bolger. All rights reserved.'
Expand Down Expand Up @@ -83,16 +83,9 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = @'
## 4.25.0 (2024-08-18)
* New DNS plugins
* [TencentDNS](https://dnspod.com/) which is a new plugin for DNSPod that uses the Tencent Cloud API which will eventually be required when the old DNSPod API is terminated. (#553) (Thanks @xiaotiannet)
* [OnlineNet](https://www.scaleway.com/en/domains-and-dns/) which is Scaleway's legacy DNS API managed through `console.online.net`. (#557)
* Gandi plugin now supports Personal Access Tokens (PAT) auth in addition to legacy API Keys (#554)
* NameCom plugin now has better error handling and debug logs. NameCom users with 2FA enabled should also review the user guide about a setting that could break API access. (#556)
* Minor logging fix for Active24 plugin.
* Fixed a bug with ARI implementation that would fail renewals when the ACME server believes the replaced cert had already been replaced. (#560)
* Fixed a bug with ARI implementation that would throw errors when the cert being replaced did not contain an AKI extention. (#561)
## 4.25.1 (2024-09-02)
* Fix Azure IMDS auth for Arc-enabled servers
'@

}
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.0 PowerShell/$($PSVersionTable.PSVersion)"
$script:USER_AGENT = "Posh-ACME/4.25.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
Expand Down

0 comments on commit 763baec

Please sign in to comment.