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.

197 lines
7.8 KiB

5 years ago
4 years ago
4 years ago
4 years ago
4 years ago
4 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. ## [0.13.0] - 2020-10-10
  11. ### Added
  12. - In the configuration, `root_certificates` has been added to the `global` and `endpoint` sections as an array of strings representing the path to root certificate files.
  13. - At compilation, it is now possible to statically link OpenSSL using the `openssl_vendored` feature.
  14. - In the Makefile, it is now possible to specify which target triple to build for.
  15. ## [0.12.0] - 2020-09-26
  16. ### Added
  17. - Some subject attributes can now be specified.
  18. - Support for NIST P-521 certificates and account keys.
  19. ### Fixed
  20. - Support for Let's Encrypt non-standard account creation object.
  21. ## [0.11.0] - 2020-09-19
  22. ### Added
  23. - The `contacts` account configuration field has been added.
  24. - External account binding.
  25. ### Changed
  26. - The `email` account configuration field has been removed. In replacement, use the `contacts` field.
  27. - Accounts now have their own hooks and environment.
  28. - Accounts are now stored in a single binary file.
  29. ### Fixed
  30. - ACMEd can now build on platforms with a `time_t` not defined as an `i64`.
  31. - The Makefile is now fully works on FreeBSD.
  32. ## [0.10.0] - 2020-08-27
  33. ### Added
  34. - The account key type and signature algorithm can now be specified in the configuration using the `key_type` and `signature_algorithm` parameters.
  35. - The delay to renew a certificate before its expiration date can be specified in the configuration using the `renew_delay` parameter at either the certificate, endpoint and global level.
  36. - It is now possible to specify IP identifiers (RFC 8738) using the `ip` parameter instead of the `dns` one.
  37. - The hook templates of type `challenge-*` have a new `identifier_tls_alpn` field which contains, if available, the identifier in a form that is suitable to the TLS ALPN challenge.
  38. - Globing is now supported for configuration files inclusion.
  39. - The CSR's digest algorithm can now be specified using the `csr_digest` parameter.
  40. ### Changed
  41. - In the certificate configuration, the `domains` field has been renamed `identifiers`.
  42. - The `algorithm` certificate configuration field has been renamed `key_type`.
  43. - The `algorithm` hook template variable has been renamed `key_type`.
  44. - The `domain` hook template variable has been renamed `identifier`.
  45. - The default hooks have been updated.
  46. ### Fixed
  47. - The Makefile now works on FreeBSD. It should also work on other BSD although it has not been tested.
  48. ## [0.9.0] - 2020-08-01
  49. ### Added
  50. - System users and groups can now be specified by name in addition to uid/gid.
  51. ### Changed
  52. - The HTTP(S) part is now handled by `attohttpc` instead of `reqwest`.
  53. ### Fixed
  54. - In tacd, the `--acme-ext-file` parameter is now in conflict with `acme-ext` instead of itself.
  55. ## [0.8.0] - 2020-06-12
  56. ### Changed
  57. - The HTTP(S) part is now handled by `reqwest` instead of `http_req`.
  58. ## Fixed
  59. - `make install` now work with the busybox toolchain.
  60. ## [0.7.0] - 2020-03-12
  61. ### Added
  62. - Wildcard certificates are now supported. In the file name, the `*` is replaced by `_`.
  63. - Internationalized domain names are now supported.
  64. ### Changed
  65. - 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.
  66. ### Fixed
  67. - In the directory, the `externalAccountRequired` field is now a boolean instead of a string.
  68. ## [0.6.1] - 2019-09-13
  69. ### Fixed
  70. - A race condition when requesting multiple certificates on the same non-existent account has been fixed.
  71. - The `foregroung` option has been renamed `foreground`.
  72. ## [0.6.0] - 2019-06-05
  73. ### Added
  74. - Hooks now have the optional `allow_failure` field.
  75. - In hooks, the `stdin_str` has been added in replacement of the previous `stdin` behavior.
  76. - HTTPS request rate limits.
  77. ### Changed
  78. - Certificates are renewed in parallel.
  79. - Hooks are now cleaned right after the current challenge has been validated instead of after the certificate's retrieval.
  80. - In hooks, the `stdin` field now refers to the path of the file that should be written into the hook's standard input.
  81. - The logging format has been re-written.
  82. ### Fixed
  83. - The http-01-echo hook now correctly sets the file's access rights
  84. ## [0.5.0] - 2019-05-09
  85. ### Added
  86. - ACMEd now displays a warning when the server indicates an error in an order or an authorization.
  87. - A configuration file can now include several other files.
  88. - Hooks have access to environment variables.
  89. - In the configuration, the global section, certificates and domains can define environment variables for the hooks.
  90. - tacd is now able to listen on a unix socket.
  91. ## [0.4.0] - 2019-05-08
  92. ### Added
  93. - Man pages.
  94. - The project can now be built and installed using `make`.
  95. - The post-operation hooks now have access to the `is_success` template variable.
  96. - Challenge hooks now have the `is_clean_hook` template variable.
  97. - An existing certificate will be renewed if more domains have been added in the configuration.
  98. ### Changed
  99. - Unknown configuration fields are no longer tolerated.
  100. ### Removed
  101. - In challenge hooks, the `algorithm` template variable has been removed.
  102. ### Fixed
  103. - In some cases, ACMEd was unable to parse a certificate's expiration date.
  104. ## [0.3.0] - 2019-04-30
  105. ### Added
  106. - tacd, the TLS-ALPN-01 validation daemon.
  107. - An account object has been added in the configuration.
  108. - In the configuration, hooks now have a mandatory `type` variable.
  109. - It is now possible to declare hooks to clean after the challenge validation hooks.
  110. - The CLI `--root-cert` option has been added.
  111. - 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.
  112. - 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.
  113. ### Changed
  114. - In the configuration, the `email` certificate field has been replaced by the `account` field which matches an account object.
  115. - The format of the `domain` configuration variable has changed and now includes the challenge type.
  116. - The `token` challenge hook variable has been renamed `file_name`.
  117. - 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`.
  118. - The logs has been purged from many useless debug and trace entries.
  119. ### Removed
  120. - The DER storage format has been removed.
  121. - The `challenge` certificate variables has been removed.
  122. ## [0.2.1] - 2019-03-30
  123. ### Changed
  124. - The bug that prevented from requesting more than two certificates has been fixed.
  125. ## [0.2.0] - 2019-03-27
  126. ### Added
  127. - The `kp_reuse` flag allow to reuse a key pair instead of creating a new one at each renewal.
  128. - It is now possible to define hook groups that can reference either hooks or other hook groups.
  129. - 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`).
  130. - It is now possible to send logs either to syslog or stderr using the `--to-syslog` and `--to-stderr` arguments.
  131. ### Changed
  132. - `post_operation_hook` has been renamed `post_operation_hooks`.
  133. - By default, logs are now sent to syslog instead of stderr.
  134. - The process is now daemonized by default. It is possible to still run it in the foreground using the `--foregroung` flag.