Skip to content

Commit 4aa9c02

Browse files
authored
Merge pull request #680 from srvrco/release-2.37
release-2.37
2 parents be1e551 + 622b4b3 commit 4aa9c02

File tree

3 files changed

+9
-7
lines changed

3 files changed

+9
-7
lines changed

.github/workflows/stale2.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ jobs:
1313
days-before-stale: 60
1414
days-before-close: 30
1515
any-of-labels: 'needs more information'
16-
debug-only: true
16+
debug-only: false

getssl

+6-4
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"

test/2-simple-dns01-dig.bats

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ load '/bats-assert/load.bash'
55
load '/getssl/test/test_helper.bash'
66

77

8-
setup() {
8+
setup_file() {
99
if [ -z "$STAGING" ]; then
1010
export CURL_CA_BUNDLE=/root/pebble-ca-bundle.crt
1111
fi
@@ -18,7 +18,7 @@ setup() {
1818
}
1919

2020

21-
teardown() {
21+
teardown_file() {
2222
if [ -f /usr/bin/host.getssl.bak ]; then
2323
mv /usr/bin/host.getssl.bak /usr/bin/host
2424
fi

0 commit comments

Comments
 (0)