Prepare release v4.30.0

This commit is contained in:
Fernandez Ludovic 2025-12-16 02:31:35 +01:00 committed by Ludovic Fernandez
commit 4e6426cb2e
4 changed files with 28 additions and 6 deletions

View file

@ -1,11 +1,33 @@
# Changelog
lego is an independent, free, and open-source project, if you value it, consider [supporting it](https://donate.ldez.dev)! ❤️
lego is an independent, free, open-source project, if you value it, consider [supporting it](https://donate.ldez.dev)! ❤️
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.30.0
- Release date: 2025-12-16
- Tag: [v4.30.0](https://github.com/go-acme/lego/releases/tag/v4.30.0)
### Added
- **[dnsprovider]** Add DNS provider for Ionos Cloud
- **[dnsprovider]** Add DNS provider for Virtualname
- **[dnsprovider]** Add DNS Provider for Neodigit
- **[dnsprovider]** Add DNS provider for Syse.no
- **[dnsprovider]** Add DNS provider for Gravity
- **[dnsprovider]** Add DNS provider for hosting.nl
### Changed
- **[cli]** feat: remove email requirement
### Fixed
- **[dnsprovider]** autodns: use the right response structure
## v4.29.0
- Release date: 2025-11-29

View file

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