2015-12-21 01:21:23 +00:00
|
|
|
# Changelog
|
|
|
|
|
2015-12-21 20:10:13 +00:00
|
|
|
## [Unreleased]
|
|
|
|
|
2015-12-27 19:34:30 +00:00
|
|
|
### Added:
|
|
|
|
- CLI: The `--exclude` or `-x` switch. To exclude a challenge from being solved.
|
2016-01-08 07:19:09 +00:00
|
|
|
- CLI: The `--http` switch. To set the listen address and port of HTTP based challenges. Supports `host:port` and `:port` for any interface.
|
|
|
|
- CLI: The `--tls` switch. To set the listen address and port of TLS based challenges. Supports `host:port` and `:port` for any interface.
|
2015-12-27 19:34:30 +00:00
|
|
|
- lib: ExcludeChallenges function. Pass an array of challenge identifiers to exclude them from solving.
|
2016-01-08 07:19:09 +00:00
|
|
|
- lib: SetHTTPAddress function. Pass a port to set the listen port for HTTP based challenges.
|
|
|
|
- lib: SetTLSAddress function. Pass a port to set the listen port of TLS based challenges.
|
|
|
|
- lib: acme.UserAgent variable. Use this to customize the user agent on all requests sent by lego.
|
2015-12-27 19:34:30 +00:00
|
|
|
|
|
|
|
### Changed:
|
|
|
|
- lib: NewClient does no longer accept the optPort parameter
|
2015-12-27 19:55:16 +00:00
|
|
|
- lib: ObtainCertificate now returns a SAN certificate if you pass more then one domain.
|
2016-01-08 07:19:09 +00:00
|
|
|
- lib: GetOCSPForCert now returns the parsed OCSP response instead of just the status.
|
2015-12-27 19:34:30 +00:00
|
|
|
|
|
|
|
### Removed:
|
|
|
|
- CLI: The `--port` switch was removed.
|
2016-01-08 07:19:09 +00:00
|
|
|
- lib: RenewCertificate does no longer offer to also revoke your old certificate.
|
2015-12-27 19:34:30 +00:00
|
|
|
|
2015-12-21 20:10:13 +00:00
|
|
|
### Fixed:
|
2015-12-27 19:34:30 +00:00
|
|
|
- CLI: Fix logic using the `--days` parameter for renew
|
2015-12-21 20:10:13 +00:00
|
|
|
|
2015-12-21 01:21:23 +00:00
|
|
|
## [0.1.1] - 2015-12-18
|
|
|
|
|
|
|
|
### Added:
|
|
|
|
- CLI: Added a way to automate renewal through a cronjob using the --days parameter to renew
|
|
|
|
|
|
|
|
### Changed:
|
|
|
|
- lib: Improved log output on challenge failures.
|
|
|
|
|
|
|
|
### Fixed:
|
|
|
|
- CLI: The short parameter for domains would not get accepted
|
|
|
|
- CLI: The cli did not return proper exit codes on error library errors.
|
|
|
|
- lib: RenewCertificate did not properly renew SAN certificates.
|
|
|
|
|
|
|
|
### Security
|
|
|
|
- lib: Fix possible DOS on GetOCSPForCert
|
|
|
|
|
|
|
|
## [0.1.0] - 2015-12-03
|
2015-12-23 22:31:03 +00:00
|
|
|
- Initial release
|
|
|
|
|
|
|
|
[Unreleased]: https://github.com/xenolf/lego/compare/v0.1.1...HEAD
|
|
|
|
[0.1.1]: https://github.com/xenolf/lego/compare/v0.1.0...v0.1.1
|
|
|
|
[0.1.0]: https://github.com/xenolf/lego/tree/v0.1.0
|