Prepare release v3.9.0

This commit is contained in:
Fernandez Ludovic 2020-09-01 10:49:13 +02:00 committed by Ludovic Fernandez
parent 00a2d5dbf8
commit 75c3a49634
2 changed files with 22 additions and 2 deletions

View file

@ -1,19 +1,39 @@
# Changelog # Changelog
## [v3.9.0] - 2020-09-01
### Added:
- **[dnsprovider]** Add Akamai Edgedns. Deprecate FastDNS
- **[dnsprovider]** Add DNS provider for HyperOne
### Changed:
- **[dnsprovider]** designate: add support for Openstack clouds.yaml
- **[dnsprovider]** azure: allow selecting environments
- **[dnsprovider]** desec: applies API rate limits.
### Fixed:
- **[dnsprovider]** namesilo: fix cleanup.
## [v3.8.0] - 2020-07-02 ## [v3.8.0] - 2020-07-02
### Added: ### Added:
- **[cli]** cli: add hook on the run command. - **[cli]** cli: add hook on the run command.
- **[dnsprovider]** inwx: Two-Factor-Authentication - **[dnsprovider]** inwx: Two-Factor-Authentication
- **[dnsprovider]** Add DNS provider for ArvanCloud - **[dnsprovider]** Add DNS provider for ArvanCloud
### Changed: ### Changed:
- **[dnsprovider]** vultr: bumping govultr version - **[dnsprovider]** vultr: bumping govultr version
- **[dnsprovider]** desec: improve error logs. - **[dnsprovider]** desec: improve error logs.
- **[lib]** Ensures the return of a location during account updates - **[lib]** Ensures the return of a location during account updates
- **[dnsprovider]** route53: Document all AWS credential environment variables - **[dnsprovider]** route53: Document all AWS credential environment variables
### Fixed: ### Fixed:
- **[dnsprovider]** stackpath: fix subdomain support. - **[dnsprovider]** stackpath: fix subdomain support.
- **[dnsprovider]** arvandcloud: fix record name. - **[dnsprovider]** arvandcloud: fix record name.
- **[dnsprovider]** fix: multi-va. - **[dnsprovider]** fix: multi-va.

View file

@ -5,10 +5,10 @@ package sender
const ( const (
// ourUserAgent is the User-Agent of this underlying library package. // ourUserAgent is the User-Agent of this underlying library package.
ourUserAgent = "xenolf-acme/3.8.0" ourUserAgent = "xenolf-acme/3.9.0"
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package. // ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
// values: detach|release // values: detach|release
// NOTE: Update this with each tagged release. // NOTE: Update this with each tagged release.
ourUserAgentComment = "detach" ourUserAgentComment = "release"
) )