Skip to content

Commit

Permalink
prep for 4.12.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Jan 13, 2022
1 parent 02a3277 commit 9a7f516
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
## 4.12.0 (2022-01-13)

* The WebRoot plugin now supports multiple paths for the `WRPath` parameter. (#411)
* ClouDNS plugin error handling was modified so that invalid credential errors are properly surfaced instead of just throwing generic "zone not found" errors. (#414)
* Fixed a potential bug with `Submit-OrderFinalize` when multiple orders have the same MainDomain property.
* Fixed `New-PACertificate` not properly updating an existing order with updated order params (#412)

## 4.11.0 (2021-11-24)

* Added [SecretManagement](https://devblogs.microsoft.com/powershell/secretmanagement-and-secretstore-are-generally-available/) support! See [this guide](https://poshac.me/docs/v4/Guides/Using-SecretManagement/) for details.
Expand Down
21 changes: 7 additions & 14 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.11.0'
ModuleVersion = '4.12.0'
GUID = '5f52d490-68dd-411c-8252-828c199a4e63'
Author = 'Ryan Bolger'
Copyright = '(c) 2018 Ryan Bolger. All rights reserved.'
Expand Down Expand Up @@ -83,19 +83,12 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = @'
## 4.11.0 (2021-11-24)
* Added [SecretManagement](https://devblogs.microsoft.com/powershell/secretmanagement-and-secretstore-are-generally-available/) support! See [this guide](https://poshac.me/docs/v4/Guides/Using-SecretManagement/) for details.
* Added new DNS plugins:
* [Combell](https://www.combell.com/) (Thanks @stevenvolckaert)
* [TotalUptime](https://totaluptime.com/solutions/cloud-dns-service/) (Thanks @CirotheSilver)
* `Install-PACertificate` and the `-Install` switch on orders will now import associated chain certificates into the Intermediate cert store if they don't already exist. (#397)
* `New-PAOrder` will now throw an error if the order object returned by the ACME server matches an existing order with a different name. (#401)
* The progress bar for DNS propagation is now disabled by default unless a POSHACME_SHOW_PROGRESS environment variable is defined. A verbose message will be written once per minute as an alternative. (#402)
* Added auth token caching to CoreNetworks plugin to avoid getting rate limited. (#403)
* Fixed ISPConfig plugin throwing Incorrect datetime value errors when adding records (#404)
* Fixed a bug with `Submit-Renewal -AllAccounts` that would prevent restoring the original active account. (Thanks @markpizz) (#395)
* Fixed usage example in EasyDns guide. (Thanks @webprofusion_chrisc) (#407)
## 4.12.0 (2022-01-13)
* The WebRoot plugin now supports multiple paths for the `WRPath` parameter. (#411)
* ClouDNS plugin error handling was modified so that invalid credential errors are properly surfaced instead of just throwing generic "zone not found" errors. (#414)
* Fixed a potential bug with `Submit-OrderFinalize` when multiple orders have the same MainDomain property.
* Fixed `New-PACertificate` not properly updating an existing order with updated order params (#412)
'@

}
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 @@ -47,7 +47,7 @@ $script:WellKnownDirs = @{
ZEROSSL_PROD = 'https://acme.zerossl.com/v2/DV90'
}
$script:HEADER_NONCE = 'Replay-Nonce'
$script:USER_AGENT = "Posh-ACME/4.11.0 PowerShell/$($PSVersionTable.PSVersion)"
$script:USER_AGENT = "Posh-ACME/4.12.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 9a7f516

Please sign in to comment.