Skip to content

Commit

Permalink
prep for 4.8.1 release
Browse files Browse the repository at this point in the history
  • Loading branch information
rmbolger committed Sep 12, 2021
1 parent 45e029d commit 1dca918
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 25 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
## 4.8.1 (2021-09-12)

* Fixed a bug introduced in 4.7.0 that broke `Set-PAAccount -UseAltPluginEncryption` preventing plugin args for orders from being properly re-encrypted.

## 4.8.0 (2021-09-09)

* Documentation Revamp
Expand Down
28 changes: 4 additions & 24 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.8.0'
ModuleVersion = '4.8.1'
GUID = '5f52d490-68dd-411c-8252-828c199a4e63'
Author = 'Ryan Bolger'
Copyright = '(c) 2018 Ryan Bolger. All rights reserved.'
Expand Down Expand Up @@ -83,29 +83,9 @@ PrivateData = @{

# ReleaseNotes of this module
ReleaseNotes = @'
## 4.8.0 (2021-09-09)
* Documentation Revamp
* https://poshac.me/docs is a new dedicated website for Posh-ACME documentation. Existing guides and tutorials have been migrated there from the Github wiki. The site is currently generated using the Markdown files in the `docs` folder in the main project repository by [MkDocs](https://www.mkdocs.org/). So it should now be easier to contribute fixes and updates.
* The native module help is now also generated by [platyPS](https://github.com/PowerShell/platyPS) from the Markdown files in `docs/Functions`.
* `Get-Help <function name> -Online` should now open your browser to the appropriate page on the documentation site.
* The DeSEC plugin has new `DSCToken` and `DSCTTL` params to avoid conflicts with the DNSimple plugin. The old `DSToken`, `DSTokenInsecure`, and `DSTTL` parameters have been deprecated.
* "Insecure" plugin parameter sets which include secrets, tokens, or passwords using a standard String instead of a SecureString or PSCredential have been deprecated across all plugins that had them.
* Deprecated means that they will continue to work in Posh-ACME 4.x, but will stop working when 5.0 is released.
* If you are currently using a deprecated parameter set, please migrate to a secure one when convenient.
* See your plugin's [usage guide](https://poshac.me/docs/v4/Plugins/) for more information.
* For help finding deprecated parameters in your config, see [this guide](https://poshac.me/docs/v4/Guides/Find-Deprecated-PluginArgs/)
* The following plugins have added new "Secure" parameter sets:
* BlueCat
* Cloudflare
* DOcean
* Dreamhost
* Dynu
* EasyDNS
* GoDaddy
* NameCom
* Zonomi
* A `Plugin` property has been added to the output objects returned by `Get-PAPlugin <Plugin> -Params`
## 4.8.1 (2021-09-12)
* Fixed a bug introduced in 4.7.0 that broke `Set-PAAccount -UseAltPluginEncryption` preventing plugin args for orders from being properly re-encrypted.
'@

}
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.8.0 PowerShell/$($PSVersionTable.PSVersion)"
$script:USER_AGENT = "Posh-ACME/4.8.1 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 1dca918

Please sign in to comment.