Skip to content

Commit

Permalink
prep for 4.17.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Feb 21, 2023
1 parent bcfcf1f commit 7b7d6e6
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 9 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 4.17.0 (2023-02-20)

* New DNS plugins
* [Google Domains](https://domains.google/) This should be considered experimental while the Google Domains ACME API is still in testing. (Thanks @webprofusion-chrisc)
* [IONOS](https://www.ionos.de/) (Thanks @RLcyberTech)
* SSHProxy sends update requests via SSH to another server which is able to do dynamic updates against your chosen DNS provider. (Thanks @bretgiddings)
* The `DDNSNameserver` parameter is no longer mandatory in the RFC2136 plugin which will make nsupdate try to use whatever primary nameserver is returned from an SOA query.
* Added Basic authentication support to the AcmeDns plugin which should allow it to be used against endpoints that enforce that such as [Certify DNS](https://docs.certifytheweb.com/docs/dns/providers/certifydns/).
* Added support for plugin parameters that are arrays of SecureString or PSCredential objects.
* Fixed PAServer switches getting reset on `Set-PAServer` with no params (#475)

## 4.16.0 (2022-11-23)

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

# ReleaseNotes of this module
ReleaseNotes = @'
## 4.16.0 (2022-11-22)
## 4.17.0 (2023-02-20)
* 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.
* [Google Domains](https://domains.google/) This should be considered experimental while the Google Domains ACME API is still in testing. (Thanks @webprofusion-chrisc)
* [IONOS](https://www.ionos.de/) (Thanks @RLcyberTech)
* SSHProxy sends update requests via SSH to another server which is able to do dynamic updates against your chosen DNS provider. (Thanks @bretgiddings)
* The `DDNSNameserver` parameter is no longer mandatory in the RFC2136 plugin which will make nsupdate try to use whatever primary nameserver is returned from an SOA query.
* Added Basic authentication support to the AcmeDns plugin which should allow it to be used against endpoints that enforce that such as [Certify DNS](https://docs.certifytheweb.com/docs/dns/providers/certifydns/).
* Added support for plugin parameters that are arrays of SecureString or PSCredential objects.
* Fixed PAServer switches getting reset on `Set-PAServer` with no params (#475)
'@

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

Please sign in to comment.