mirror of
https://github.com/go-acme/lego
synced 2026-03-14 14:35:48 +01:00
Prepare release v4.26.0
This commit is contained in:
parent
e76933536e
commit
42f057cc72
4 changed files with 25 additions and 5 deletions
20
CHANGELOG.md
20
CHANGELOG.md
|
|
@ -1,5 +1,25 @@
|
|||
# Changelog
|
||||
|
||||
## [v4.26.0](https://github.com/go-acme/lego/releases/tag/v4.26.0) (2025-09-13)
|
||||
|
||||
### Added
|
||||
|
||||
- **[dnsprovider]** Add DNS provider for KeyHelp
|
||||
- **[dnsprovider]** Add DNS provider for Binary Lane
|
||||
- **[dnsprovider]** Add DNS provider for Tencent EdgeOne
|
||||
- **[dnsprovider]** azuredns: pipeline credential support
|
||||
- **[dnsprovider]** oraclecloud: handle instance_principal authentication
|
||||
|
||||
### Changed
|
||||
|
||||
- **[dnsprovider]** oraclecloud: add env var aliases
|
||||
- **[dnsprovider]** simply: update to API v2
|
||||
- **[lib,cli]** EAB: fallback to base64.URLEncoding
|
||||
|
||||
### Fixed
|
||||
|
||||
- **[dnsprovider]** selectelv2: add missing options
|
||||
|
||||
## [v4.25.2](https://github.com/go-acme/lego/releases/tag/v4.25.2) (2025-08-06)
|
||||
|
||||
### Changed
|
||||
|
|
|
|||
|
|
@ -4,10 +4,10 @@ package sender
|
|||
|
||||
const (
|
||||
// ourUserAgent is the User-Agent of this underlying library package.
|
||||
ourUserAgent = "xenolf-acme/4.25.2"
|
||||
ourUserAgent = "xenolf-acme/4.26.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.25.2+dev-detach"
|
||||
const defaultVersion = "v4.26.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.25.2"
|
||||
ourUserAgent = "goacme-lego/4.26.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