1
0
mirror of https://github.com/go-acme/lego.git synced 2025-01-02 23:12:24 +02:00

Prepare release v4.21.0

This commit is contained in:
Fernandez Ludovic 2024-12-20 15:11:10 +01:00 committed by Ludovic Fernandez
parent bcc17b1bf8
commit 258fb88ec9
4 changed files with 26 additions and 5 deletions

View File

@ -1,5 +1,26 @@
# Changelog
## [v4.21.0](https://github.com/go-acme/lego/releases/tag/v4.21.0) (2024-12-20)
### Added
- **[dnsprovider]** Add DNS provider for Rainyun/雨云
- **[dnsprovider]** Add DNS provider for West.cn/西部数码
- **[dnsprovider]** Add DNS provider for ManageEngine CloudDNS
- **[cli]** feat: add --force-cert-domains flag to renew
### Fixed
- **[cli]** create client only when needed
- **[cli]** clone the transport with tls-skip-verify
- **[cli]** use retryable client for ACME server calls
- **[dnsprovider]** bunny: fix zone detection
- **[dnsprovider]** inwx: delete only the TXT record related to the DNS challenge
- **[dnsprovider]** infomaniak: increase default propagation timeout
- **[dnsprovider]** dnsmadeeasy: use default transport
- **[dnsprovider]** netcup: increase default propagation values
- **[dnsprovider]** otc: use default transport
## [v4.20.4](https://github.com/go-acme/lego/releases/tag/v4.20.4) (2024-11-21)
Publish the Snap to the Snapcraft stable channel.

View File

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