Skip to content

Commit 9b4afbb

Browse files
committed
Prepare release v2.0
1 parent 3857d88 commit 9b4afbb

File tree

2 files changed

+49
-2
lines changed

2 files changed

+49
-2
lines changed

CHANGELOG.md

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,52 @@
11
# Changelog
22

3+
## [v2.0.0] - 2019-01-09
4+
5+
### Added:
6+
- **[cli,lib]** Option to disable the complete propagation Requirement
7+
- **[lib,cli]** Support non-ascii domain name (punnycode)
8+
- **[cli,lib]** Add configurable timeout when obtaining certificates
9+
- **[cli]** Archive revoked certificates
10+
- **[cli]** Add command to list certificates.
11+
- **[cli]** support for renew with CSR
12+
- **[cli]** add SAN on renew
13+
- **[lib]** Adds `Remove` for challenges
14+
- **[lib]** Add version to xenolf-acme in User-Agent.
15+
- **[dnsprovider]** The ability for a DNS provider to solve the challenge sequentially
16+
- **[dnsprovider]** Add DNS provider for "HTTP request".
17+
- **[dnsprovider]** Add DNS Provider for Vscale
18+
- **[dnsprovider]** Add DNS Provider for TransIP
19+
- **[dnsprovider]** Add DNS Provider for inwx
20+
- **[dnsprovider]** alidns: add support to handle more than 20 domains
21+
22+
### Changed:
23+
- **[lib]** Check all challenges in a predictable order
24+
- **[lib]** Poll authz URL instead of challenge URL
25+
- **[lib]** Check all nameservers in a predictable order
26+
- **[lib]** Logs every iteration of waiting for the propagation
27+
- **[cli]** `--http`: enable HTTP challenge **important**
28+
- **[cli]** `--http.port`: previously named `--http`
29+
- **[cli]** `--http.webroot`: previously named `--webroot`
30+
- **[cli]** `--http.memcached-host`: previously named `--memcached-host`
31+
- **[cli]** `--tls`: enable TLS challenge **important**
32+
- **[cli]** `--tls.port`: previously named `--tls`
33+
- **[cli]** `--dns.resolvers`: previously named `--dns-resolvers`
34+
- **[dnsprovider]** gcloud: Use GCE_PROJECT for project always, if specified
35+
36+
### Removed:
37+
- **[lib]** Remove `SetHTTP01Address`
38+
- **[lib]** Remove `SetTLSALPN01Address`
39+
- **[lib]** Remove `Exclude`
40+
- **[cli]** Remove `--exclude`, `-x`
41+
42+
### Fixed:
43+
- **[lib]** Fixes revocation for subdomains and non-ascii domains
44+
- **[lib]** Disable pending authorizations
45+
- **[dnsprovider]** transip: concurrent access to the API.
46+
- **[dnsprovider]** gcloud: fix for wildcard
47+
- **[dnsprovider]** Azure: Do not overwrite existing TXT records
48+
- **[dnsprovider]** fix: Cloudflare error.
49+
350
## [v1.2.0] - 2018-11-04
451

552
### Added:

acme/api/internal/sender/useragent.go

Lines changed: 2 additions & 2 deletions
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/1.2.1"
8+
ourUserAgent = "xenolf-acme/2.0.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)