mirror of
https://github.com/go-acme/lego
synced 2026-03-14 14:35:48 +01:00
Prepare release v4.25.0
This commit is contained in:
parent
793f65fed9
commit
ced6669dcd
4 changed files with 26 additions and 5 deletions
21
CHANGELOG.md
21
CHANGELOG.md
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
)
|
||||
|
|
|
|||
2
cmd/lego/zz_gen_version.go
generated
2
cmd/lego/zz_gen_version.go
generated
|
|
@ -2,7 +2,7 @@
|
|||
|
||||
package main
|
||||
|
||||
const defaultVersion = "v4.24.0+dev-detach"
|
||||
const defaultVersion = "v4.25.0+dev-release"
|
||||
|
||||
var version = ""
|
||||
|
||||
|
|
|
|||
|
|
@ -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.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue