1
0
mirror of https://github.com/go-acme/lego.git synced 2025-09-16 09:36:23 +02:00

Prepare release v4.26.0

This commit is contained in:
Fernandez Ludovic
2025-09-13 13:16:13 +02:00
committed by Ludovic Fernandez
parent e76933536e
commit 42f057cc72
4 changed files with 25 additions and 5 deletions

View File

@@ -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

View File

@@ -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"
)

View File

@@ -2,7 +2,7 @@
package main
const defaultVersion = "v4.25.2+dev-detach"
const defaultVersion = "v4.26.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.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.