forked from TrueCloudLab/lego
Prepare release v4.3.0
This commit is contained in:
parent
773ed46b10
commit
a7f9a93caa
2 changed files with 26 additions and 2 deletions
24
CHANGELOG.md
24
CHANGELOG.md
|
@ -1,5 +1,29 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [v4.3.0] - 2021-03-10
|
||||||
|
|
||||||
|
### Added:
|
||||||
|
|
||||||
|
- **[dnsprovider]** Add DNS provider for Njalla
|
||||||
|
- **[dnsprovider]** Add DNS provider for Domeneshop
|
||||||
|
- **[dnsprovider]** Add DNS provider for Hurricane Electric
|
||||||
|
- **[dnsprovider]** designate: support for Openstack Application Credentials
|
||||||
|
- **[dnsprovider]** edgedns: support for .edgerc file
|
||||||
|
|
||||||
|
### Changed:
|
||||||
|
|
||||||
|
- **[dnsprovider]** infomaniak: Make error message more meaningful
|
||||||
|
- **[dnsprovider]** cloudns: Improve reliability
|
||||||
|
- **[dnsprovider]** rfc2163: Removed support for MD5 algorithm. The default algorithm is now SHA1.
|
||||||
|
|
||||||
|
### Fixed:
|
||||||
|
|
||||||
|
- **[dnsprovider]** desec: fix error with default TTL
|
||||||
|
- **[dnsprovider]** mythicbeasts: implement `ProviderTimeout`
|
||||||
|
- **[dnsprovider]** dnspod: improve search accuracy when a domain have more than 100 records
|
||||||
|
- **[lib]** Increase HTTP client timeouts
|
||||||
|
- **[lib]** preferred chain only match root name
|
||||||
|
|
||||||
## [v4.2.0] - 2021-01-24
|
## [v4.2.0] - 2021-01-24
|
||||||
|
|
||||||
### Added:
|
### Added:
|
||||||
|
|
|
@ -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/4.2.0"
|
ourUserAgent = "xenolf-acme/4.3.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"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue