mirror of
https://github.com/go-acme/lego
synced 2026-03-14 14:35:48 +01:00
Prepare release v4.32.0
This commit is contained in:
parent
dd1ea80c08
commit
c50918c54e
4 changed files with 35 additions and 5 deletions
30
CHANGELOG.md
30
CHANGELOG.md
|
|
@ -6,6 +6,36 @@ Everybody thinks that the others will donate, but in the end, nobody does.
|
|||
|
||||
So if you think that lego is worth it, please consider [donating](https://donate.ldez.dev).
|
||||
|
||||
## v4.32.0
|
||||
|
||||
- Release date: 2026-02-19
|
||||
- Tag: [v4.32.0](https://github.com/go-acme/lego/releases/tag/v4.32.0)
|
||||
|
||||
### Added
|
||||
|
||||
- **[dnsprovider]** Add DNS provider for ArtFiles
|
||||
- **[dnsprovider]** Add DNS provider for Leaseweb
|
||||
- **[dnsprovider]** Add DNS provider for FusionLayer NameSurfer
|
||||
- **[dnsprovider]** Add DNS provider for DDNSS
|
||||
- **[dnsprovider]** Add DNS provider for Bluecat v2
|
||||
- **[dnsprovider]** Add DNS provider for TodayNIC/时代互联
|
||||
- **[dnsprovider]** Add DNS provider for DNSExit
|
||||
- **[dnsprovider]** alidns: add line record option
|
||||
|
||||
### Changed
|
||||
|
||||
- **[dnsprovider]** azure: reinforces deprecation
|
||||
- **[dnsprovider]** allinkl: detect zone through API
|
||||
|
||||
### Fixed
|
||||
|
||||
- **[ari]** fix: implement parsing for Retry-After header according to RFC 7231
|
||||
- **[dnsprovider]** namesurfer: fix updateDNSHost
|
||||
- **[dnsprovider]** timewebcloud: fix subdomain support
|
||||
- **[dnsprovider]** fix: deduplicate authz for DNS01 challenge
|
||||
- **[lib,cli]** fix: use IPs to define the main domain
|
||||
- **[lib]** fix: preserve domain order
|
||||
|
||||
## v4.31.0
|
||||
|
||||
- Release date: 2026-01-08
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@ package sender
|
|||
|
||||
const (
|
||||
// ourUserAgent is the User-Agent of this underlying library package.
|
||||
ourUserAgent = "xenolf-acme/4.31.0"
|
||||
ourUserAgent = "xenolf-acme/4.32.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.31.0+dev-detach"
|
||||
const defaultVersion = "v4.32.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.31.0"
|
||||
ourUserAgent = "goacme-lego/4.32.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