Skip to content

Commit

Permalink
prep for 4.18.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Jun 28, 2023
1 parent 08db8f3 commit a924dc9
Show file tree
Hide file tree
Showing 3 changed files with 23 additions and 6 deletions.
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,14 @@
## 4.18.0 (2023-06-28)

* The `POSHACME_HOME` environment variable now supports Windows-style (surrounded by `%`) environment variable expansion. (#497)
* So you can set the value to `%ProgramData%\Posh-ACME` instead of needing to set it explicitly to `C:\ProgramData\Posh-ACME` for example.
* NOTE: This requires Windows-style environment variable strings even on non-Windows OSes.
* The Azure plugin no longer tries to re-use cached authentication tokens when using the `AZAccessToken` parameter set. (#498)
* Fixed a bug with the Azure plugin that broke authentication when submitting multiple orders with different credentials from different tenants. (#498)
* Fixed a problem using Posh-ACME within AWS Lambda due to non-standard dotnet runtime assembly configs. (#418) (Thanks @garthmccormack)
* This fix involved changing the `RevocationReasons` enum from a .NET type to a PowerShell native enum.
* The change constitutes a minor breaking change which makes the enum no longer accessible from outside the module's context, but tab completion and string converted values for the `Revoke-PACertificate -Reason` parameter work exactly the same as before.

## 4.17.1 (2023-03-29)

* Fixed Hetzner plugin for accounts with 100+ zones. (#481) (Thanks @Deutschi)
Expand Down
16 changes: 11 additions & 5 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.17.1'
ModuleVersion = '4.18.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,16 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = @'
## 4.17.1 (2023-03-29)
* Fixed Hetzner plugin for accounts with 100+ zones. (#481) (Thanks @Deutschi)
* Fixed RFC2136 plugin ignoring the DDNSNameserver parameter when set. (#485) (Thanks @gvengel)
## 4.18.0 (2023-06-28)
* The `POSHACME_HOME` environment variable now supports Windows-style (surrounded by `%`) environment variable expansion. (#497)
* So you can set the value to `%ProgramData%\Posh-ACME` instead of needing to set it explicitly to `C:\ProgramData\Posh-ACME` for example.
* NOTE: This requires Windows-style environment variable strings even on non-Windows OSes.
* The Azure plugin no longer tries to re-use cached authentication tokens when using the `AZAccessToken` parameter set. (#498)
* Fixed a bug with the Azure plugin that broke authentication when submitting multiple orders with different credentials from different tenants. (#498)
* Fixed a problem using Posh-ACME within AWS Lambda due to non-standard dotnet runtime assembly configs. (#418) (Thanks @garthmccormack)
* This fix involved changing the `RevocationReasons` enum from a .NET type to a PowerShell native enum.
* The change constitutes a minor breaking change which makes the enum no longer accessible from outside the module's context, but tab completion and string converted values for the `Revoke-PACertificate -Reason` parameter work exactly the same as before.
'@

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

Please sign in to comment.