File tree 2 files changed +20
-2
lines changed
2 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
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
+
3
20
## [ v2.1.0] - 2019-01-24
4
21
5
22
### Added:
45
62
- ** [ cli] ** ` --tls ` : enable TLS challenge ** important**
46
63
- ** [ cli] ** ` --tls.port ` : previously named ` --tls `
47
64
- ** [ cli] ** ` --dns.resolvers ` : previously named ` --dns-resolvers `
65
+ - ** [ cli] ** the option ` --days ` of the command ` renew ` has default value (` 15 ` )
48
66
- ** [ dnsprovider] ** gcloud: Use GCE_PROJECT for project always, if specified
49
67
50
68
### Removed:
Original file line number Diff line number Diff line change @@ -5,10 +5,10 @@ package sender
5
5
6
6
const (
7
7
// ourUserAgent is the User-Agent of this underlying library package.
8
- ourUserAgent = "xenolf-acme/2.1 .0"
8
+ ourUserAgent = "xenolf-acme/2.2 .0"
9
9
10
10
// ourUserAgentComment is part of the UA comment linked to the version status of this underlying library package.
11
11
// values: detach|release
12
12
// NOTE: Update this with each tagged release.
13
- ourUserAgentComment = "detach "
13
+ ourUserAgentComment = "release "
14
14
)
You can’t perform that action at this time.
0 commit comments