From 1e77bd19c9de6ac3cab28c057a228f0343d2f26a Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Thu, 6 Jun 2019 12:17:57 -0600 Subject: [PATCH] add missing dnsAuthorization for get test --- index.js | 1 + package.json | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/index.js b/index.js index 7c8a241..51e9e68 100644 --- a/index.js +++ b/index.js @@ -92,6 +92,7 @@ function run(challenger, opts) { // there should only be two possible TXT records per challenge domain: // one for the bare domain, and the other if and only if there's a wildcard query.wildcard = ch.wildcard; + query.dnsAuthorization = ch.dnsAuthorization; } else { query = JSON.parse(JSON.stringify(ch)); query.comment = 'unknown challenge type, supplying everything'; diff --git a/package.json b/package.json index 79f786c..6e5ffe9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "acme-challenge-test", - "version": "3.0.3", + "version": "3.0.4", "description": "The base set of tests for all ACME challenge strategies. Any `acme-http-01-`, `acme-dns-01-`, `acme-challenge-`, or greenlock plugin should be able to pass these tests.", "main": "index.js", "homepage": "https://git.rootprojects.org/root/acme-challenge-test.js", @@ -21,7 +21,8 @@ "challenge", "plugin", "module", - "strategy" + "strategy", + "greenlock" ], "author": "AJ ONeal (https://solderjs.com/)", "license": "MPL-2.0"