Skip to content

Commit 082da25

Browse files
committed
preparing for release 0.7.0
1 parent e784ba3 commit 082da25

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

CHANGELOG

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
# Change Log
22
This file contains a log of major changes in dehydrated
33

4-
## [x.x.x] - xxxx-xx-xx
4+
## [0.7.0] - 2020-12-10
55
## Added
66
- Support for external account bindings
77
- Special support for ZeroSSL
88
- Support presets for some CAs instead of requiring URLs
99
- Allow requesting preferred chain (`--preferred-chain`)
1010
- 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
1113

1214
## Fixed
1315
- No more silent failures on broken hook-scripts
@@ -20,6 +22,8 @@ This file contains a log of major changes in dehydrated
2022
- Use JSON.sh to parse JSON
2123
- Use account URL instead of account ID (RFC compliance)
2224
- 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
2327

2428
## [0.6.5] - 2019-06-26
2529
## Fixed

README.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ Commands:
6060
--revoke (-r) path/to/cert.pem Revoke specified certificate
6161
--deactivate Deactivate account
6262
--cleanup (-gc) Move unused certificate files to archive directory
63+
--cleanup-delete (-gcd) Deletes (!) unused certificate files
6364
--help (-h) Show help text
6465
--env (-e) Output configuration variables for use in other scripts
6566
@@ -77,6 +78,7 @@ Parameters:
7778
--lock-suffix example.com Suffix lockfile name with a string (useful for with -d)
7879
--ocsp Sets option in CSR indicating OCSP stapling to be mandatory
7980
--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
8082
--config (-f) path/to/config Use specified config file
8183
--hook (-k) path/to/hook.sh Use specified script for hooks
8284
--preferred-chain issuer-cn Use alternative certificate chain identified by issuer CN

dehydrated

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ umask 077 # paranoid umask, we're creating private keys
1717
exec 3>&-
1818
exec 4>&-
1919

20-
VERSION="0.6.6"
20+
VERSION="0.7.0"
2121

2222
# Find directory in which this script is stored by traversing all symbolic links
2323
SOURCE="${0}"

docs/examples/config

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@
102102
#PRIVATE_KEY_ROLLOVER="no"
103103

104104
# Which public key algorithm should be used? Supported: rsa, prime256v1 and secp384r1
105-
#KEY_ALGO=rsa
105+
#KEY_ALGO=secp384r1
106106

107107
# E-mail to use during the registration (default: <unset>)
108108
#CONTACT_EMAIL=

0 commit comments

Comments
 (0)