|
1 | 1 | # Changelog |
2 | 2 |
|
3 | | -## Unreleased |
| 3 | +## [0.3.0] - 2016-03-19 |
4 | 4 |
|
5 | 5 | ### Added: |
6 | | -- CLI: The `--dns` switch. To include the DNS challenge for consideration. Supported are the following solvers: cloudflare, digitalocean, dnsimple, gandi, namecheap, route53, rfc2136 and manual. |
| 6 | +- CLI: The `--dns` switch. To include the DNS challenge for consideration. When using this switch, all other solvers are disabled. Supported are the following solvers: cloudflare, digitalocean, dnsimple, dyn, gandi, googlecloud, namecheap, route53, rfc2136 and manual. |
7 | 7 | - CLI: The `--accept-tos` switch. Indicates your acceptance of the Let's Encrypt terms of service without prompting you. |
| 8 | +- CLI: The `--webroot` switch. The HTTP-01 challenge may now be completed by dropping a file into a webroot. When using this switch, all other solvers are disabled. |
| 9 | +- CLI: The `--key-type` switch. This replaces the `--rsa-key-size` switch and supports the following key types: EC256, EC384, RSA2048, RSA4096 and RSA8192. |
| 10 | +- CLI: The `--dnshelp` switch. This displays a more in-depth help topic for DNS solvers. |
| 11 | +- CLI: The `--no-bundle` sub switch for the `run` and `renew` commands. When this switch is set, the CLI will not bundle the issuer certificate with your certificate. |
8 | 12 | - lib: A new type for challenge identifiers `Challenge` |
9 | | -- lib: A new interface for custom challenge providers `ChallengeProvider` |
| 13 | +- lib: A new interface for custom challenge providers `acme.ChallengeProvider` |
| 14 | +- lib: A new interface for DNS-01 providers to allow for custom timeouts for the validation function `acme.ChallengeProviderTimeout` |
10 | 15 | - lib: SetChallengeProvider function. Pass a challenge identifier and a Provider to replace the default behaviour of a challenge. |
11 | 16 | - lib: The DNS-01 challenge has been implemented with modular solvers using the `ChallengeProvider` interface. Included solvers are: cloudflare, digitalocean, dnsimple, gandi, namecheap, route53, rfc2136 and manual. |
| 17 | +- lib: The `acme.KeyType` type was added and is used for the configuration of crypto parameters for RSA and EC keys. Valid KeyTypes are: EC256, EC384, RSA2048, RSA4096 and RSA8192. |
12 | 18 |
|
13 | 19 | ### Changed |
14 | 20 | - lib: ExcludeChallenges now expects to be passed an array of `Challenge` types. |
15 | 21 | - lib: HTTP-01 now supports custom solvers using the `ChallengeProvider` interface. |
16 | 22 | - lib: TLS-SNI-01 now supports custom solvers using the `ChallengeProvider` interface. |
17 | | - |
| 23 | +- lib: The `GetPrivateKey` function in the `acme.User` interface is now expected to return a `crypto.PrivateKey` instead of an `rsa.PrivateKey` for EC compat. |
| 24 | +- lib: The `acme.NewClient` function now expects an `acme.KeyType` instead of the keyBits parameter. |
| 25 | + |
18 | 26 | ### Removed |
| 27 | +- CLI: The `rsa-key-size` switch was removed in favor of `key-type` to support EC keys. |
19 | 28 |
|
20 | 29 | ### Fixed |
21 | 30 | - lib: Fixed a race condition in HTTP-01 |
|
67 | 76 | ## [0.1.0] - 2015-12-03 |
68 | 77 | - Initial release |
69 | 78 |
|
70 | | -[Unreleased]: https://github.com/xenolf/lego/compare/v0.2.0...HEAD |
| 79 | +[0.3.0]: https://github.com/xenolf/lego/compare/v0.2.0...v0.3.0 |
71 | 80 | [0.2.0]: https://github.com/xenolf/lego/compare/v0.1.1...v0.2.0 |
72 | 81 | [0.1.1]: https://github.com/xenolf/lego/compare/v0.1.0...v0.1.1 |
73 | 82 | [0.1.0]: https://github.com/xenolf/lego/tree/v0.1.0 |
0 commit comments