1
0
mirror of https://github.com/go-acme/lego.git synced 2024-12-23 09:15:11 +02:00

Prepare release v4.13.0

This commit is contained in:
Fernandez Ludovic 2023-07-20 04:53:02 +02:00 committed by Ludovic Fernandez
parent bbc5e6118f
commit f0f57179ef
2 changed files with 20 additions and 2 deletions

View File

@ -1,5 +1,23 @@
# Changelog # Changelog
## [v4.13.0] - 2023-07-20
### Added:
- **[dnsprovider]** Add DNS provider for IPv64
- **[dnsprovider]** Add DNS provider for Metaname
- **[dnsprovider]** Add DNS provider for RcodeZero
- **[dnsprovider]** Add DNS provider for Efficient IP
- **[dnsprovider]** azure: new implementation based on the new API client
- **[lib]** Experimental option to force DNS queries to use TCP
### Changed:
- **[dnsprovider]** cloudflare: update api client to v0.70.0
### Fixed:
- **[dnsprovider,cname]** fix: ensure case-insensitive comparison of CNAME records
- **[cli]** fix: list command
- **[lib]** fix: ARI explanationURL
## [v4.12.2] - 2023-06-19 ## [v4.12.2] - 2023-06-19
### Fixed: ### Fixed:

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/4.12.3" ourUserAgent = "xenolf-acme/4.13.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"
) )