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.

140 lines
5.4 KiB

5 years ago
4 years ago
5 years ago
5 years ago
6 years ago
6 years ago
6 years ago
6 years ago
6 years ago
  1. [//]: # (Copyright 2019-2020 Rodolphe Bréard <rodolphe@breard.tf>)
  2. [//]: # (Copying and distribution of this file, with or without modification,)
  3. [//]: # (are permitted in any medium without royalty provided the copyright)
  4. [//]: # (notice and this notice are preserved. This file is offered as-is,)
  5. [//]: # (without any warranty.)
  6. # Changelog
  7. All notable changes to this project will be documented in this file.
  8. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
  9. and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
  10. ## [Unreleased]
  11. ### Added
  12. - System users and groups can now be specified by name in addition to uid/gid.
  13. ### Changed
  14. - The HTTP(S) part is now handled by `attohttpc` instead of `reqwest`.
  15. ## [0.8.0] - 2020-06-12
  16. ### Changed
  17. - The HTTP(S) part is now handled by `reqwest` instead of `http_req`.
  18. ## Fixed
  19. - `make install` now work with the busybox toolchain.
  20. ## [0.7.0] - 2020-03-12
  21. ### Added
  22. - Wildcard certificates are now supported. In the file name, the `*` is replaced by `_`.
  23. - Internationalized domain names are now supported.
  24. ### Changed
  25. - The PID file is now always written whether or not ACMEd is running in the foreground. Previously, it was written only when running in the background.
  26. ### Fixed
  27. - In the directory, the `externalAccountRequired` field is now a boolean instead of a string.
  28. ## [0.6.1] - 2019-09-13
  29. ### Fixed
  30. - A race condition when requesting multiple certificates on the same non-existent account has been fixed.
  31. - The `foregroung` option has been renamed `foreground`.
  32. ## [0.6.0] - 2019-06-05
  33. ### Added
  34. - Hooks now have the optional `allow_failure` field.
  35. - In hooks, the `stdin_str` has been added in replacement of the previous `stdin` behavior.
  36. - HTTPS request rate limits.
  37. ### Changed
  38. - Certificates are renewed in parallel.
  39. - Hooks are now cleaned right after the current challenge has been validated instead of after the certificate's retrieval.
  40. - In hooks, the `stdin` field now refers to the path of the file that should be written into the hook's standard input.
  41. - The logging format has been re-written.
  42. ### Fixed
  43. - The http-01-echo hook now correctly sets the file's access rights
  44. ## [0.5.0] - 2019-05-09
  45. ### Added
  46. - ACMEd now displays a warning when the server indicates an error in an order or an authorization.
  47. - A configuration file can now include several other files.
  48. - Hooks have access to environment variables.
  49. - In the configuration, the global section, certificates and domains can define environment variables for the hooks.
  50. - tacd is now able to listen on a unix socket.
  51. ## [0.4.0] - 2019-05-08
  52. ### Added
  53. - Man pages.
  54. - The project can now be built and installed using `make`.
  55. - The post-operation hooks now have access to the `is_success` template variable.
  56. - Challenge hooks now have the `is_clean_hook` template variable.
  57. - An existing certificate will be renewed if more domains have been added in the configuration.
  58. ### Changed
  59. - Unknown configuration fields are no longer tolerated.
  60. ### Removed
  61. - In challenge hooks, the `algorithm` template variable has been removed.
  62. ### Fixed
  63. - In some cases, ACMEd was unable to parse a certificate's expiration date.
  64. ## [0.3.0] - 2019-04-30
  65. ### Added
  66. - tacd, the TLS-ALPN-01 validation daemon.
  67. - An account object has been added in the configuration.
  68. - In the configuration, hooks now have a mandatory `type` variable.
  69. - It is now possible to declare hooks to clean after the challenge validation hooks.
  70. - The CLI `--root-cert` option has been added.
  71. - 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.
  72. - The TLS-ALPN-01 challenge is now supported. The proof is a string representation of the acmeIdentifier extension. The self-signed certificate itself has to be built by a hook.
  73. ### Changed
  74. - In the configuration, the `email` certificate field has been replaced by the `account` field which matches an account object.
  75. - The format of the `domain` configuration variable has changed and now includes the challenge type.
  76. - The `token` challenge hook variable has been renamed `file_name`.
  77. - The `challenge_hooks`, `post_operation_hooks`, `file_pre_create_hooks`, `file_post_create_hooks`, `file_pre_edit_hooks` and `file_post_edit_hooks` certificate variables has been replaced by `hooks`.
  78. - The logs has been purged from many useless debug and trace entries.
  79. ### Removed
  80. - The DER storage format has been removed.
  81. - The `challenge` certificate variables has been removed.
  82. ## [0.2.1] - 2019-03-30
  83. ### Changed
  84. - The bug that prevented from requesting more than two certificates has been fixed.
  85. ## [0.2.0] - 2019-03-27
  86. ### Added
  87. - The `kp_reuse` flag allow to reuse a key pair instead of creating a new one at each renewal.
  88. - It is now possible to define hook groups that can reference either hooks or other hook groups.
  89. - 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`).
  90. - It is now possible to send logs either to syslog or stderr using the `--to-syslog` and `--to-stderr` arguments.
  91. ### Changed
  92. - `post_operation_hook` has been renamed `post_operation_hooks`.
  93. - By default, logs are now sent to syslog instead of stderr.
  94. - The process is now daemonized by default. It is possible to still run it in the foreground using the `--foregroung` flag.