Prepare release v4.24.0

This commit is contained in:
Fernandez Ludovic 2025-07-01 17:36:51 +02:00 committed by Ludovic Fernandez
commit 14d66f0c20
4 changed files with 28 additions and 5 deletions

View file

@ -1,5 +1,28 @@
# Changelog
## [v4.24.0](https://github.com/go-acme/lego/releases/tag/v4.24.0) (2025-07-07)
### Added
- **[dnsprovider]** Add DNS provider for Azion
- **[dnsprovider]** Add DNS provider for DynDnsFree.de
- **[dnsprovider]** Add DNS provider for ConoHa v3
- **[dnsprovider]** Add DNS provider for RU Center
- **[dnsprovider]** gcloud: add service account impersonation
### Changed
- **[dnsprovider]** pdns: improve error messages
- **[dnsprovider]** cloudflare: add quotation marks to TXT record
- **[dnsprovider]** googledomains: provider deprecation
- **[dnsprovider]** mijnhost: improve record filter
### Fixed
- **[dnsprovider]** exoscale: fix find record
- **[dnsprovider]** nicmanager: fix mode env var name and value
- **[lib,cli]** Check order identifiers difference between client and server
## [v4.23.1](https://github.com/go-acme/lego/releases/tag/v4.23.1) (2025-04-16)
Due to an error related to Snapcraft, some artifacts of the v4.23.0 release have not been published.

View file

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

View file

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

View file

@ -10,12 +10,12 @@ import (
const (
// ourUserAgent is the User-Agent of this underlying library package.
ourUserAgent = "goacme-lego/4.23.1"
ourUserAgent = "goacme-lego/4.24.0"
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
// values: detach|release
// NOTE: Update this with each tagged release.
ourUserAgentComment = "detach"
ourUserAgentComment = "release"
)
// Get builds and returns the User-Agent string.