File tree Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Expand file tree Collapse file tree 4 files changed +9
-3
lines changed Original file line number Diff line number Diff line change 1
1
# Change Log
2
2
This file contains a log of major changes in dehydrated
3
3
4
- ## [x.x.x ] - xxxx-xx-xx
4
+ ## [0.7.0 ] - 2020-12-10
5
5
## Added
6
6
- Support for external account bindings
7
7
- Special support for ZeroSSL
8
8
- Support presets for some CAs instead of requiring URLs
9
9
- Allow requesting preferred chain (`--preferred-chain`)
10
10
- Added method to show CAs current terms of service (`--display-terms`)
11
+ - Allow setting path to domains.txt using cli arguments (`--domains-txt`)
12
+ - Added new cli command `--cleanupdelete` which deletes old files instead of archiving them
11
13
12
14
## Fixed
13
15
- No more silent failures on broken hook-scripts
@@ -20,6 +22,8 @@ This file contains a log of major changes in dehydrated
20
22
- Use JSON.sh to parse JSON
21
23
- Use account URL instead of account ID (RFC compliance)
22
24
- Dehydrated now has a new home: https://github.com/dehydrated-io/dehydrated
25
+ - Added `OCSP_FETCH` and `OCSP_DAYS` to per-certificate configurable options
26
+ - Cleanup now also removes dangling symlinks
23
27
24
28
## [0.6.5] - 2019-06-26
25
29
## Fixed
Original file line number Diff line number Diff line change @@ -60,6 +60,7 @@ Commands:
60
60
--revoke (-r) path/to/cert.pem Revoke specified certificate
61
61
--deactivate Deactivate account
62
62
--cleanup (-gc) Move unused certificate files to archive directory
63
+ --cleanup-delete (-gcd) Deletes (!) unused certificate files
63
64
--help (-h) Show help text
64
65
--env (-e) Output configuration variables for use in other scripts
65
66
@@ -77,6 +78,7 @@ Parameters:
77
78
--lock-suffix example.com Suffix lockfile name with a string (useful for with -d)
78
79
--ocsp Sets option in CSR indicating OCSP stapling to be mandatory
79
80
--privkey (-p) path/to/key.pem Use specified private key instead of account key (useful for revocation)
81
+ --domains-txt path/to/domains.txt Use specified domains.txt instead of default/configured one
80
82
--config (-f) path/to/config Use specified config file
81
83
--hook (-k) path/to/hook.sh Use specified script for hooks
82
84
--preferred-chain issuer-cn Use alternative certificate chain identified by issuer CN
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ umask 077 # paranoid umask, we're creating private keys
17
17
exec 3>& -
18
18
exec 4>& -
19
19
20
- VERSION=" 0.6.6 "
20
+ VERSION=" 0.7.0 "
21
21
22
22
# Find directory in which this script is stored by traversing all symbolic links
23
23
SOURCE=" ${0} "
Original file line number Diff line number Diff line change 102
102
#PRIVATE_KEY_ROLLOVER="no"
103
103
104
104
# Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
105
- #KEY_ALGO=rsa
105
+ #KEY_ALGO=secp384r1
106
106
107
107
# E-mail to use during the registration (default: <unset>)
108
108
#CONTACT_EMAIL=
You can’t perform that action at this time.
0 commit comments