1
0
mirror of https://github.com/go-acme/lego.git synced 2025-11-27 00:20:21 +02:00

Prepare release v4.28.0

This commit is contained in:
Fernandez Ludovic
2025-10-31 11:15:56 +01:00
committed by Ludovic Fernandez
parent 591116b3a4
commit 102f7067ac
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.28.0
- Release date: 2025-10-31
- Tag: [v4.28.0](https://github.com/go-acme/lego/releases/tag/v4.28.0)
### Added
- **[dnsprovider]** Add DNS provider for Anexia
- **[dnsprovider]** Add DNS provider for webnames.ca
- **[dnsprovider]** webnames: rename to webnamesru to avoid ambiguity with webnamesca
### Changed
- **[dnsprovider,log]** hetzner: add deprecation logs
- **[dnsprovider]** iwantmyname: provider deprecation
- **[cli]** improve retryable HTTP client error handling
### Fixed
- **[dnsprovider]** hostinger: fix record update
## v4.27.0
- Release date: 2025-10-17

View File

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