Skip to content

Commit

Permalink
prep for 4.16.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Nov 23, 2022
1 parent d9b6224 commit 6698668
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 5 deletions.
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## 4.16.0 (2022-11-23)

* New DNS plugins
* [Active24](https://www.active24.cz/) (Thanks @pastelka)
* [Bunny.net](https://bunny.net/) (Thanks @webprofusion-chrisc)
* Added `-Subject` parameter to `New-PACertificate`, `New-PAOrder`, and `Set-PAOrder` which will override the default x509 Subject field in the certificate request sent to the ACME CA. This can be useful for private CAs that allow for additional attributes in the Subject that public CAs don't.
* Fix for undocumented NameSilo API change. (Thanks @rkone)
* Fix for All-Inkl plugin that makes the plaintext `KasPwd` parameter actually send plaintext since All-Inkl has deprecated the SHA1 option.

## 4.15.1 (2022-09-09)

* Reverted the embedded BouncyCastle library back to 1.8.8 due to version conflicts with Az.KeyVault in PowerShell 6+. This is temporary while a suitable workaround for version conflicts in other modules is explored.
Expand Down
13 changes: 9 additions & 4 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.15.1'
ModuleVersion = '4.16.0'
GUID = '5f52d490-68dd-411c-8252-828c199a4e63'
Author = 'Ryan Bolger'
Copyright = '(c) 2018 Ryan Bolger. All rights reserved.'
Expand Down Expand Up @@ -83,10 +83,15 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = @'
## 4.15.1 (2022-09-09)
## 4.16.0 (2022-11-22)
* New DNS plugins
* [Active24](https://www.active24.cz/) (Thanks @pastelka)
* [Bunny.net](https://bunny.net/) (Thanks @webprofusion-chrisc)
* Added `-Subject` parameter to `New-PACertificate`, `New-PAOrder`, and `Set-PAOrder` which will override the default x509 Subject field in the certificate request sent to the ACME CA. This can be useful for private CAs that allow for additional attributes in the Subject that public CAs don't.
* Fix for undocumented NameSilo API change. (Thanks @rkone)
* Fix for All-Inkl plugin that makes the plaintext `KasPwd` parameter actually send plaintext since All-Inkl has deprecated the SHA1 option.
* Reverted the embedded BouncyCastle library back to 1.8.8 due to version conflicts with Az.KeyVault in PowerShell 6+. This is temporary while a suitable workaround for version conflicts in other modules is explored.
* Fixed Domeneshop plugin when publishing apex TXT records and added more API output to debug messages.
'@

}
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.15.1 PowerShell/$($PSVersionTable.PSVersion)"
$script:USER_AGENT = "Posh-ACME/4.16.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 6698668

Please sign in to comment.