mirror of
https://github.com/go-acme/lego.git
synced 2025-01-20 13:15:32 +02:00
Prepare release v4.20.0
This commit is contained in:
parent
c17ca37e48
commit
f999e16cd5
34
CHANGELOG.md
34
CHANGELOG.md
@ -1,5 +1,33 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [v4.20.0] - 2024-11-11
|
||||||
|
|
||||||
|
### Added
|
||||||
|
|
||||||
|
- **[dnsprovider]** Add DNS provider for Technitium
|
||||||
|
- **[dnsprovider]** Add DNS provider for Regfish
|
||||||
|
- **[dnsprovider]** Add DNS provider for Timeweb Cloud
|
||||||
|
- **[dnsprovider]** Add DNS provider for Volcano Engine
|
||||||
|
- **[dnsprovider]** Add DNS provider for Core-Networks
|
||||||
|
- **[dnsprovider]** rfc2136: add support for tsig-keygen generated file
|
||||||
|
- **[cli]** Add option to skip the TLS verification of the ACME server
|
||||||
|
- Add documentation for env var only options
|
||||||
|
|
||||||
|
### Changed
|
||||||
|
|
||||||
|
- **[cli,ari]** Attempt to check ARI unless explicitly disabled
|
||||||
|
- **[dnsprovider]** Improve propagation check error messages
|
||||||
|
- **[dnsprovider]** cloudxns: provider deprecation
|
||||||
|
- **[dnsprovider]** brandit: provider deprecation
|
||||||
|
|
||||||
|
### Fixed
|
||||||
|
|
||||||
|
- **[dnsprovider]** regru: update authentication method
|
||||||
|
- **[dnsprovider]** selectelv2: fix non-ASCII domain
|
||||||
|
- **[dnsprovider]** limacity: fix error message
|
||||||
|
- **[dnsprovider]** volcengine: set API information within the default configuration
|
||||||
|
- **[log]** Parse printf verbs in log line output
|
||||||
|
|
||||||
## [v4.19.2] - 2024-10-06
|
## [v4.19.2] - 2024-10-06
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
@ -1221,9 +1249,3 @@ There was a problem when creating the tag v3.0.1, this tag has been invalidated.
|
|||||||
|
|
||||||
## [0.1.0] - 2015-12-03
|
## [0.1.0] - 2015-12-03
|
||||||
- Initial release
|
- Initial release
|
||||||
|
|
||||||
[0.3.1]: https://github.com/go-acme/lego/compare/v0.3.0...v0.3.1
|
|
||||||
[0.3.0]: https://github.com/go-acme/lego/compare/v0.2.0...v0.3.0
|
|
||||||
[0.2.0]: https://github.com/go-acme/lego/compare/v0.1.1...v0.2.0
|
|
||||||
[0.1.1]: https://github.com/go-acme/lego/compare/v0.1.0...v0.1.1
|
|
||||||
[0.1.0]: https://github.com/go-acme/lego/tree/v0.1.0
|
|
||||||
|
@ -4,10 +4,10 @@ package sender
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
// ourUserAgent is the User-Agent of this underlying library package.
|
// ourUserAgent is the User-Agent of this underlying library package.
|
||||||
ourUserAgent = "xenolf-acme/4.19.2"
|
ourUserAgent = "xenolf-acme/4.20.0"
|
||||||
|
|
||||||
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
|
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
|
||||||
// values: detach|release
|
// values: detach|release
|
||||||
// NOTE: Update this with each tagged release.
|
// NOTE: Update this with each tagged release.
|
||||||
ourUserAgentComment = "detach"
|
ourUserAgentComment = "release"
|
||||||
)
|
)
|
||||||
|
@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
package main
|
package main
|
||||||
|
|
||||||
const defaultVersion = "v4.19.2+dev-detach"
|
const defaultVersion = "v4.20.0+dev-release"
|
||||||
|
|
||||||
var version = ""
|
var version = ""
|
||||||
|
|
||||||
|
@ -10,12 +10,12 @@ import (
|
|||||||
|
|
||||||
const (
|
const (
|
||||||
// ourUserAgent is the User-Agent of this underlying library package.
|
// ourUserAgent is the User-Agent of this underlying library package.
|
||||||
ourUserAgent = "goacme-lego/4.19.2"
|
ourUserAgent = "goacme-lego/4.20.0"
|
||||||
|
|
||||||
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
|
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
|
||||||
// values: detach|release
|
// values: detach|release
|
||||||
// NOTE: Update this with each tagged release.
|
// NOTE: Update this with each tagged release.
|
||||||
ourUserAgentComment = "detach"
|
ourUserAgentComment = "release"
|
||||||
)
|
)
|
||||||
|
|
||||||
// Get builds and returns the User-Agent string.
|
// Get builds and returns the User-Agent string.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user