forked from TrueCloudLab/lego
Prepare release v4.4.0
This commit is contained in:
parent
190b38c76a
commit
7c24212e8a
3 changed files with 32 additions and 2 deletions
28
CHANGELOG.md
28
CHANGELOG.md
|
@ -1,5 +1,33 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## [v4.4.0] - 2021-06-08
|
||||||
|
|
||||||
|
### Added:
|
||||||
|
|
||||||
|
- **[dnsprovider]** Add DNS provider for Infoblox
|
||||||
|
- **[dnsprovider]** Add DNS provider for Porkbun
|
||||||
|
- **[dnsprovider]** Add DNS provider for Simply.com
|
||||||
|
- **[dnsprovider]** Add DNS provider for Sonic
|
||||||
|
- **[dnsprovider]** Add DNS provider for VinylDNS
|
||||||
|
- **[dnsprovider]** Add DNS provider for wedos
|
||||||
|
|
||||||
|
### Changed:
|
||||||
|
|
||||||
|
- **[cli]** log: Use stderr instead of stdout.
|
||||||
|
- **[dnsprovider]** hostingde: autodetection of the zone name.
|
||||||
|
- **[dnsprovider]** scaleway: use official SDK
|
||||||
|
- **[dnsprovider]** powerdns: several improvements
|
||||||
|
- **[lib]** lib: improve wait.For returns.
|
||||||
|
|
||||||
|
### Fixed:
|
||||||
|
|
||||||
|
- **[dnsprovider]** hurricane: add API rate limiter.
|
||||||
|
- **[dnsprovider]** hurricane: only treat first word of response body as response code
|
||||||
|
- **[dnsprovider]** exoscale: fix DNS provider debugging
|
||||||
|
- **[dnsprovider]** wedos: fix api call parameters
|
||||||
|
- **[dnsprovider]** nifcloud: Get zone info from dns01.FindZoneByFqdn
|
||||||
|
- **[cli,lib]** csr: Support the type `NEW CERTIFICATE REQUEST`
|
||||||
|
|
||||||
## [v4.3.1] - 2021-03-12
|
## [v4.3.1] - 2021-03-12
|
||||||
|
|
||||||
### Fixed:
|
### Fixed:
|
||||||
|
|
|
@ -71,3 +71,5 @@ Detailed documentation is available [here](https://go-acme.github.io/lego/dns).
|
||||||
| [Zone.ee](https://go-acme.github.io/lego/dns/zoneee/) | [Zonomi](https://go-acme.github.io/lego/dns/zonomi/) | | |
|
| [Zone.ee](https://go-acme.github.io/lego/dns/zoneee/) | [Zonomi](https://go-acme.github.io/lego/dns/zonomi/) | | |
|
||||||
|
|
||||||
<!-- END DNS PROVIDERS LIST -->
|
<!-- END DNS PROVIDERS LIST -->
|
||||||
|
|
||||||
|
If your DNS provider is not supported, please open an [issue](https://github.com/go-acme/lego/issues/new?assignees=&labels=enhancement%2C+new-provider&template=new_dns_provider.md).
|
||||||
|
|
|
@ -5,10 +5,10 @@ package sender
|
||||||
|
|
||||||
const (
|
const (
|
||||||
// ourUserAgent is the User-Agent of this underlying library package.
|
// ourUserAgent is the User-Agent of this underlying library package.
|
||||||
ourUserAgent = "xenolf-acme/4.3.1"
|
ourUserAgent = "xenolf-acme/4.4.0"
|
||||||
|
|
||||||
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
|
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
|
||||||
// values: detach|release
|
// values: detach|release
|
||||||
// NOTE: Update this with each tagged release.
|
// NOTE: Update this with each tagged release.
|
||||||
ourUserAgentComment = "detach"
|
ourUserAgentComment = "release"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue