Skip to content

Commit 622b4b3

Browse files
committed
Update version and change log
1 parent 278988b commit 622b4b3

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

getssl

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,9 @@
260260
# 2021-02-18 Add FULL_CHAIN_INCLUDE_ROOT
261261
# 2021-03-25 Fix DNS challenge completion check if CNAMEs on different NS are used (sideeffect42)(2.35)
262262
# 2021-05-08 Merge from tlhackque/getssl: GoDaddy, split-view, tempfile permissions fixes, --version(2.36)
263+
# 2021-07-07 Request new certificate if SANs have changed (#669)(#673)
263264
# 2021-07-12 Do not redirect outputs on remote commands when the debug option is used (atisne)
265+
# 2021-07-20 Use +noidnout to enable certificates for IDN domains (#679)(2.37)
264266
# ----------------------------------------------------------------------------------------
265267

266268
case :$SHELLOPTS: in
@@ -269,16 +271,16 @@ esac
269271

270272
PROGNAME=${0##*/}
271273
PROGDIR="$(cd "$(dirname "$0")" || exit; pwd -P;)"
272-
VERSION="2.36"
274+
VERSION="2.37"
273275

274276
# defaults
275277
ACCOUNT_KEY_LENGTH=4096
276278
ACCOUNT_KEY_TYPE="rsa"
277-
CA="https://acme-staging-v02.api.letsencrypt.org/directory"
278279
CA_CERT_LOCATION=""
280+
CA="https://acme-staging-v02.api.letsencrypt.org/directory"
279281
CHALLENGE_CHECK_TYPE="http"
280-
CHECK_REMOTE="true"
281282
CHECK_REMOTE_WAIT=0
283+
CHECK_REMOTE="true"
282284
CODE_LOCATION="https://raw.githubusercontent.com/srvrco/getssl/master/getssl"
283285
CSR_SUBJECT="/"
284286
CURL_USERAGENT="${PROGNAME}/${VERSION}"
@@ -291,6 +293,7 @@ FULL_CHAIN_INCLUDE_ROOT="false"
291293
GETSSL_IGNORE_CP_PRESERVE="false"
292294
HTTP_TOKEN_CHECK_WAIT=0
293295
IGNORE_DIRECTORY_DOMAIN="false"
296+
OCSP_MUST_STAPLE="false"
294297
ORIG_UMASK=$(umask)
295298
PREFERRED_CHAIN="" # Set this to use an alternative root certificate
296299
PREVIOUSLY_VALIDATED="true"
@@ -301,7 +304,6 @@ REUSE_PRIVATE_KEY="true"
301304
SERVER_TYPE="https"
302305
SKIP_HTTP_TOKEN_CHECK="false"
303306
SSLCONF="$(openssl version -d 2>/dev/null| cut -d\" -f2)/openssl.cnf"
304-
OCSP_MUST_STAPLE="false"
305307
TEMP_UPGRADE_FILE=""
306308
TOKEN_USER_ID=""
307309
USE_SINGLE_ACL="false"

0 commit comments

Comments
 (0)