From f19ad2e83c3d399990a8e6fcb984c35941fda406 Mon Sep 17 00:00:00 2001 From: Ryan Bolger Date: Fri, 21 Jun 2019 13:34:52 -0700 Subject: [PATCH] prep for 3.5.0 release --- CHANGELOG.md | 9 +++++++++ Posh-ACME/Posh-ACME.psd1 | 12 +++++++----- Posh-ACME/Posh-ACME.psm1 | 2 +- 3 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index dacd7f09..9ddf4c64 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,12 @@ +## 3.5.0 (2019-06-21) + +* Added new DNS plugin for Simple DNS Plus (#149) (Thanks @alphaz18) +* Changed a bunch of "-ErrorAction SilentlyContinue" references to "Ignore" so we're not filling the $Error collection with junk. +* Fix for Boulder removing ID field from new account output. +* Fixed an issue in a number of plugins that could cause errors if the case of the requested record didn't match the server's zone case. (Thanks @Makr91) +* Fixed a bug with the Route53 plugin when used on PowerShell Core without the AwsPowerShell module installed. +* Fixed some typos in the OVH plugin usage guide examples (#147) + ## 3.4.0 (2019-04-30) * Added new DNS plugin for OVH (#79) diff --git a/Posh-ACME/Posh-ACME.psd1 b/Posh-ACME/Posh-ACME.psd1 index 56e7247d..54fa1a49 100644 --- a/Posh-ACME/Posh-ACME.psd1 +++ b/Posh-ACME/Posh-ACME.psd1 @@ -1,7 +1,7 @@ @{ RootModule = 'Posh-ACME.psm1' -ModuleVersion = '3.4.0' +ModuleVersion = '3.5.0' GUID = '5f52d490-68dd-411c-8252-828c199a4e63' Author = 'Ryan Bolger' Copyright = '(c) 2018 Ryan Bolger. All rights reserved.' @@ -104,10 +104,12 @@ PrivateData = @{ # ReleaseNotes of this module ReleaseNotes = @' -* Added new DNS plugin for OVH (#79) -* Added ZoneScope support to Windows plugin (#134) (Thanks @dawe78) -* Fixed issue #139 with GCloud plugin prompting for GCKeyFile after upgrading to 3.3.0. Users affected by this issue will need to submit a new cert request to re-establish the GCloud plugin config. -* Fixed issue #140 with AcmeDns plugin losing registration data after upgrading to 3.3.0. Users affected by this issue will need to submit a new cert request to re-establish the AcmeDns plugin config and it will likely involve updating any CNAME records currently in use. +* Added new DNS plugin for Simple DNS Plus (#149) (Thanks @alphaz18) +* Changed a bunch of "-ErrorAction SilentlyContinue" references to "Ignore" so we're not filling the $Error collection with junk. +* Fix for Boulder removing ID field from new account output. +* Fixed an issue in a number of plugins that could cause errors if the case of the requested record didn't match the server's zone case. (Thanks @Makr91) +* Fixed a bug with the Route53 plugin when used on PowerShell Core without the AwsPowerShell module installed. +* Fixed some typos in the OVH plugin usage guide examples (#147) '@ } # End of PSData hashtable diff --git a/Posh-ACME/Posh-ACME.psm1 b/Posh-ACME/Posh-ACME.psm1 index fb5b2189..cb01dff8 100644 --- a/Posh-ACME/Posh-ACME.psm1 +++ b/Posh-ACME/Posh-ACME.psm1 @@ -43,7 +43,7 @@ $script:WellKnownDirs = @{ LE_STAGE = 'https://acme-staging-v02.api.letsencrypt.org/directory'; } $script:HEADER_NONCE = 'Replay-Nonce' -$script:USER_AGENT = "Posh-ACME/3.4.0 PowerShell/$($PSVersionTable.PSVersion)" +$script:USER_AGENT = "Posh-ACME/3.5.0 PowerShell/$($PSVersionTable.PSVersion)" $script:COMMON_HEADERS = @{'Accept-Language'='en-us,en;q=0.5'} # Invoke-WebRequest and Invoke-RestMethod on PowerShell 5.1 both use