1
0
mirror of https://github.com/go-acme/lego.git synced 2025-07-17 20:27:56 +02:00

Prepare release v4.23.0

This commit is contained in:
Fernandez Ludovic
2025-04-16 12:57:44 +02:00
committed by Ludovic Fernandez
parent da2aad2215
commit ffaa64a88b
4 changed files with 36 additions and 5 deletions

View File

@ -1,5 +1,36 @@
# Changelog # Changelog
## [v4.23.0](https://github.com/go-acme/lego/releases/tag/v4.23.0) (2025-04-16)
### Added
- **[dnsprovider]** Add DNS provider for Active24
- **[dnsprovider]** Add DNS provider for BookMyName
- **[dnsprovider]** Add DNS provider for Axelname
- **[dnsprovider]** Add DNS provider for Baidu Cloud
- **[dnsprovider]** Add DNS provider for Metaregistrar
- **[dnsprovider]** Add DNS provider for F5 XC
- **[dnsprovider]** Add INFOBLOX_CA_CERTIFICATE option
- **[dnsprovider]** route53: adds option to use private zone
- **[dnsprovider]** edgedns: add account switch key option
- **[dnsprovider]** infoblox: update API client to v2
- **[lib,cli]** Add delay option for TLSALPN challenge
### Changed
- **[dnsprovider]** designate: speed up API requests by using filters
- **[dnsprovider]** cloudflare: make base URL configurable
- **[dnsprovider]** websupport: migrate to API v2
- **[dnsprovider]** dnssimple: use GetZone
### Fixed
- **[ari]** Fix retry on `alreadyReplaced` error
- **[cli,log]** Fix malformed log messages
- **[cli]** Kill hook when the command is stuck
- **[dnsprovider]** pdns: fix TXT record cleanup for wildcard domains
- **[dnsprovider]** allinkl: remove `ReturnInfo`
## [v4.22.2](https://github.com/go-acme/lego/releases/tag/v4.22.2) (2025-02-17) ## [v4.22.2](https://github.com/go-acme/lego/releases/tag/v4.22.2) (2025-02-17)
### Fixed ### Fixed

View File

@ -4,10 +4,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.22.2" ourUserAgent = "xenolf-acme/4.23.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"
) )

View File

@ -2,7 +2,7 @@
package main package main
const defaultVersion = "v4.22.2+dev-detach" const defaultVersion = "v4.23.0+dev-release"
var version = "" var version = ""

View File

@ -10,12 +10,12 @@ import (
const ( const (
// ourUserAgent is the User-Agent of this underlying library package. // ourUserAgent is the User-Agent of this underlying library package.
ourUserAgent = "goacme-lego/4.22.2" ourUserAgent = "goacme-lego/4.23.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"
) )
// Get builds and returns the User-Agent string. // Get builds and returns the User-Agent string.