You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.7 KiB

6 years ago
  1. # Changelog
  2. All notable changes to this project will be documented in this file.
  3. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
  4. and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
  5. ## [Unreleased]
  6. ### Added
  7. - An account object has been added in the configuration.
  8. - Failure recovery: HTTPS requests rejected by the server that are recoverable, like the badNonce error, are now retried several times before being considered a hard failure.
  9. ### Changed
  10. - In the configuration, the `email` certificate field has been replaced by the `account` field which matches an account object.
  11. - The `token` challenge hook variable has been renamed `file_name`.
  12. - The logs has been purged from many useless debug and trace entries.
  13. ### Removed
  14. - The DER storage format has been removed.
  15. ## [0.2.1] - 2019-03-30
  16. ### Changed
  17. - The bug that prevented from requesting more than two certificates has been fixed.
  18. ## [0.2.0] - 2019-03-27
  19. ### Added
  20. - The `kp_reuse` flag allow to reuse a key pair instead of creating a new one at each renewal.
  21. - It is now possible to define hook groups that can reference either hooks or other hook groups.
  22. - Hooks can be defined when before and after a file is created or edited (`file_pre_create_hooks`, `file_post_create_hooks`, `file_pre_edit_hooks` and `file_post_edit_hooks`).
  23. - It is now possible to send logs either to syslog or stderr using the `--to-syslog` and `--to-stderr` arguments.
  24. ### Changed
  25. - `post_operation_hook` has been renamed `post_operation_hooks`.
  26. - By default, logs are now sent to syslog instead of stderr.
  27. - The process is now daemonized by default. It is possible to still run it in the foreground using the `--foregroung` flag.