Prepare release v4.25.0

This commit is contained in:
Fernandez Ludovic 2025-07-21 12:58:18 +02:00 committed by Ludovic Fernandez
commit ced6669dcd
4 changed files with 26 additions and 5 deletions

View file

@ -1,5 +1,26 @@
# Changelog
## [v4.25.0](https://github.com/go-acme/lego/releases/tag/v4.25.0) (2025-07-21)
The binary size of this release is about ~50% smaller compared to previous releases.
This will also reduce the module cache usage by 320 MB (this will only affect users of lego as a library or who build lego themselves).
### Added
- **[dnsprovider]** Add DNS provider for ZoneEdit
- **[cli]** Add an option to define dynamically the renew date
- **[lib,cli]** Add an option to disable common name in CSR
### Changed
-
- **[dnsprovider]** vinyldns: add an option to add quotes around the TXT record value
- **[dnsprovider]** ionos: increase default propagation timeout
### Fixed
- **[cli]** fix: enforce domain into renewal command
## [v4.24.0](https://github.com/go-acme/lego/releases/tag/v4.24.0) (2025-07-07)
### Added

View file

@ -4,10 +4,10 @@ package sender
const (
// ourUserAgent is the User-Agent of this underlying library package.
ourUserAgent = "xenolf-acme/4.24.0"
ourUserAgent = "xenolf-acme/4.25.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.24.0+dev-detach"
const defaultVersion = "v4.25.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.24.0"
ourUserAgent = "goacme-lego/4.25.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.