Skip to content

Commit 52e43eb

Browse files
committed
Prepare release v2.2.0
1 parent fe7a60e commit 52e43eb

File tree

2 files changed

+20
-2
lines changed

2 files changed

+20
-2
lines changed

CHANGELOG.md

+18
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,22 @@
11
# Changelog
22

3+
## [v2.2.0] - 2019-02-08
4+
5+
### Added:
6+
- **[dnsprovider]** Add support for Openstack Designate as a DNS provider
7+
- **[dnsprovider]** gcloud: Option to specify gcloud service account json by env as string
8+
- **[experimental feature]** Resolve CNAME when creating dns-01 challenge. To enable: set `LEGO_EXPERIMENTAL_CNAME_SUPPORT` to `true`.
9+
10+
### Changed:
11+
- **[cli]** Applies Let’s Encrypt’s recommendation about renew. The option `--days` of the command `renew` has a new default value (`30`)
12+
- **[lib]** Uses a jittered exponential backoff
13+
14+
### Fixed:
15+
- **[cli]** CLI and key type.
16+
- **[dnsprovider]** httpreq: Endpoint with path.
17+
- **[dnsprovider]** fastdns: Do not overwrite existing TXT records
18+
- Log wildcard domain correctly in validation
19+
320
## [v2.1.0] - 2019-01-24
421

522
### Added:
@@ -45,6 +62,7 @@
4562
- **[cli]** `--tls`: enable TLS challenge **important**
4663
- **[cli]** `--tls.port`: previously named `--tls`
4764
- **[cli]** `--dns.resolvers`: previously named `--dns-resolvers`
65+
- **[cli]** the option `--days` of the command `renew` has default value (`15`)
4866
- **[dnsprovider]** gcloud: Use GCE_PROJECT for project always, if specified
4967

5068
### Removed:

acme/api/internal/sender/useragent.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ package sender
55

66
const (
77
// ourUserAgent is the User-Agent of this underlying library package.
8-
ourUserAgent = "xenolf-acme/2.1.0"
8+
ourUserAgent = "xenolf-acme/2.2.0"
99

1010
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
1111
// values: detach|release
1212
// NOTE: Update this with each tagged release.
13-
ourUserAgentComment = "detach"
13+
ourUserAgentComment = "release"
1414
)

0 commit comments

Comments
 (0)