Skip to content

Releases: rmbolger/Posh-ACME

v4.17.1

29 Mar 20:57
0802b4a
Compare
Choose a tag to compare
  • Fixed Hetzner plugin for accounts with 100+ zones. (#481) (Thanks @Deutschi)
  • Fixed RFC2136 plugin ignoring the DDNSNameserver parameter when set. (#485) (Thanks @gvengel)

v4.17.0

21 Feb 07:03
7b7d6e6
Compare
Choose a tag to compare
  • New DNS plugins
  • 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.
  • 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)

v4.16.0

23 Nov 05:59
6698668
Compare
Choose a tag to compare
  • New DNS plugins
  • 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.

v4.15.1

09 Sep 17:43
db1ac4f
Compare
Choose a tag to compare
  • Reverted the embedded BouncyCastle library back to 1.8.8 due to version conflicts with Az.KeyVault in PowerShell 6+. This is temporary while a suitable workaround for version conflicts in other modules is explored.
  • Fixed Domeneshop plugin when publishing apex TXT records and added more API output to debug messages.

v4.15.0

26 Aug 23:59
da095d9
Compare
Choose a tag to compare
  • PAOrder objects now have a flag to optionally use modern encryption options on generated PFX files. This will prevent the need to use "legacy" mode when reading the files with OpenSSL 3.x. However, it breaks compatibility with OpenSSL 1.0.x and earlier.
    • You can use the -UseModernPfxEncryption flag with New-PACertificate, New-PAOrder, and Set-PAOrder. When used with Set-PAOrder, existing PFX files will be re-written based on the flag's new value.
    • Use Set-PAOrder -UseModernPfxEncryption:$false to switch back to the default setting.
    • The default for new orders will likely remain off until Posh-ACME 5.x is released.
  • Added new DNS plugin PortsManagement (Thanks @wemmer)
  • The GCloud plugin has a new optional parameter, GCProjectId that takes one or more string values. This is only required if the DNS zones to modify don't reside in the same project as the service account referenced by GCKeyFile or they reside in multiple projects. When used, be sure to include all project IDs including the one referenced by GCKeyFile.
  • Added Google's new free ACME CA to the CA comparison doc
  • Upgraded the embedded BouncyCastle library to 1.9.0
  • Fixed UKFast plugin to support paging for accounts with many domains (Thanks @0x4c6565)
  • Fixed PFX friendly name generation when not provided in the order.

v4.14.0

13 Apr 05:32
c7d4c1a
Compare
Choose a tag to compare
  • Added new DNS plugin Porkbun (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.

v4.13.1

14 Mar 21:04
187afa3
Compare
Choose a tag to compare
  • Fixed Loopia plugin after an upstream API change broke it. (Thanks @AlexanderRydberg)

v4.13.0

07 Mar 20:55
d882071
Compare
Choose a tag to compare
  • Added new DNS plugin LeaseWeb
  • Simply plugin migrated to v2 of the API. No changes should be necessary for existing users.

v4.12.0

14 Jan 00:03
9a7f516
Compare
Choose a tag to compare
  • The WebRoot plugin now supports multiple paths for the WRPath parameter. (#411)
  • ClouDNS plugin error handling was modified so that invalid credential errors are properly surfaced instead of just throwing generic "zone not found" errors. (#414)
  • Fixed a potential bug with Submit-OrderFinalize when multiple orders have the same MainDomain property.
  • Fixed New-PACertificate not properly updating an existing order with updated order params (#412)

v4.11.0

24 Nov 22:08
4f9a167
Compare
Choose a tag to compare
  • Added SecretManagement support! See this guide for details.
  • Added new DNS plugins:
  • Install-PACertificate and the -Install switch on orders will now import associated chain certificates into the Intermediate cert store if they don't already exist. (#397)
  • New-PAOrder will now throw an error if the order object returned by the ACME server matches an existing order with a different name. (#401)
  • The progress bar for DNS propagation is now disabled by default unless a POSHACME_SHOW_PROGRESS environment variable is defined. A verbose message will be written once per minute as an alternative. (#402)
  • Added auth token caching to CoreNetworks plugin to avoid getting rate limited. (#403)
  • Fixed ISPConfig plugin throwing Incorrect datetime value errors when adding records (#404)
  • Fixed a bug with Submit-Renewal -AllAccounts that would prevent restoring the original active account. (Thanks @markpizz) (#395)
  • Fixed usage example in EasyDns guide. (Thanks @webprofusion-chrisc) (#407)