Skip to content

Commit

Permalink
prep for 4.14.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Apr 13, 2022
1 parent a092c7b commit c7d4c1a
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 4 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,18 @@
## 4.14.0 (2022-04-12)

* Added new DNS plugin [Porkbun](https://porkbun.com/) (Thanks @CaiB)
* Added server shortcuts for Google's new ACME CA, GOOGLE_PROD and GOOGLE_STAGE.
* Added server shortcuts for SSL.com, SSLCOM_RSA and SSLCOM_ECC.
* Added `UseAltAccountRefresh` switch to `Set-PAServer` to workaround CAs that don't yet support direct account refreshes such as Google, SSL.com, and DigiCert. (#372) (#394)
* New configs should have this set by default for CAs known to need it. But you will need to explicitly set it on any existing configs for these CAs.
* Added `LifetimeDays` param on `New-PACertificate`, `New-PAOrder`, and `Set-PAOrder` to enable user requested cert lifetimes for ACME CAs that support the feature.
* Google's CA is the only free ACME CA known to currently support this and the order lifetime cannot be changed once it is created. Setting a new value on an existing order will only change the lifetime on subsequent renewals.
* Updated Azure plugin to use the latest stable API version.
* Updated Azure guide to account for breaking changes in the Az module.
* Fixed GoDaddy plugin when using it with delegated sub-zones. (#430)
* Fixed `New-PAAccount` when importing an existing key on CAs that require external account binding.
* Reduced the number of account refreshes that happen as part of normal operations.

## 4.13.1 (2022-03-14)

* Fixed Loopia plugin after an upstream API change broke it. (Thanks @AlexanderRydberg)
Expand Down
18 changes: 15 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.13.1'
ModuleVersion = '4.14.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,21 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = @'
## 4.13.1 (2022-03-14)
## 4.14.0 (2022-04-12)
* Added new DNS plugin [Porkbun](https://porkbun.com/) (Thanks @CaiB)
* Added server shortcuts for Google's new ACME CA, GOOGLE_PROD and GOOGLE_STAGE.
* Added server shortcuts for SSL.com, SSLCOM_RSA and SSLCOM_ECC.
* Added `UseAltAccountRefresh` switch to `Set-PAServer` to workaround CAs that don't yet support direct account refreshes such as Google, SSL.com, and DigiCert. (#372) (#394)
* New configs should have this set by default for CAs known to need it. But you will need to explicitly set it on any existing configs for these CAs.
* Added `LifetimeDays` param on `New-PACertificate`, `New-PAOrder`, and `Set-PAOrder` to enable user requested cert lifetimes for ACME CAs that support the feature.
* Google's CA is the only free ACME CA known to currently support this and the order lifetime cannot be changed once it is created. Setting a new value on an existing order will only change the lifetime on subsequent renewals.
* Updated Azure plugin to use the latest stable API version.
* Updated Azure guide to account for breaking changes in the Az module.
* Fixed GoDaddy plugin when using it with delegated sub-zones. (#430)
* Fixed `New-PAAccount` when importing an existing key on CAs that require external account binding.
* Reduced the number of account refreshes that happen as part of normal operations.
* Fixed Loopia plugin after an upstream API change broke it.
'@

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

Please sign in to comment.