1
0
mirror of https://github.com/go-acme/lego.git synced 2025-10-31 08:27:38 +02:00

Prepare release v4.27.0

This commit is contained in:
Fernandez Ludovic
2025-10-16 22:27:21 +02:00
committed by Ludovic Fernandez
parent acfb5ea938
commit a58c45ee4f
4 changed files with 26 additions and 5 deletions

View File

@@ -6,6 +6,27 @@ 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.27.0
- Release date: 2025-10-17
- Tag: [v4.27.0](https://github.com/go-acme/lego/releases/tag/v4.27.0)
### Added
- **[dnsprovider]** Add DNS provider for Octenium
- **[dnsprovider]** Add DNS provider for Hostinger
- **[dnsprovider]** Add DNS provider for Beget.com
### Changed
- **[cli]** support `--private-key` with a PKCS#8 keypair
- **[dnsprovider]** hetzner: update to new API
- **[dnsprovider]** otc: adds option to use private zone
### Fixed
- **[lib]** fix: deduplicate order identifiers
## v4.26.0
- Release date: 2025-09-13

View File

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