@certd/acme-client 1.37.16 → 1.38.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +4 -4
- package/src/util.js +1 -1
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"description": "Simple and unopinionated ACME client",
|
|
4
4
|
"private": false,
|
|
5
5
|
"author": "nmorsman",
|
|
6
|
-
"version": "1.
|
|
6
|
+
"version": "1.38.0",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"module": "scr/index.js",
|
|
9
9
|
"main": "src/index.js",
|
|
@@ -18,10 +18,10 @@
|
|
|
18
18
|
"types"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@certd/basic": "^1.
|
|
21
|
+
"@certd/basic": "^1.38.0",
|
|
22
22
|
"@peculiar/x509": "^1.11.0",
|
|
23
23
|
"asn1js": "^3.0.5",
|
|
24
|
-
"axios": "^1.
|
|
24
|
+
"axios": "^1.9.0",
|
|
25
25
|
"debug": "^4.3.5",
|
|
26
26
|
"http-proxy-agent": "^7.0.2",
|
|
27
27
|
"https-proxy-agent": "^7.0.5",
|
|
@@ -70,5 +70,5 @@
|
|
|
70
70
|
"bugs": {
|
|
71
71
|
"url": "https://github.com/publishlab/node-acme-client/issues"
|
|
72
72
|
},
|
|
73
|
-
"gitHead": "
|
|
73
|
+
"gitHead": "a218cd0ffb16b658dd261e106cc0dbea63034756"
|
|
74
74
|
}
|
package/src/util.js
CHANGED
|
@@ -247,7 +247,7 @@ async function getAuthoritativeDnsResolver(recordName, logger = log) {
|
|
|
247
247
|
|
|
248
248
|
try {
|
|
249
249
|
/* Resolve root domain by SOA */
|
|
250
|
-
const domain = await resolveDomainBySoaRecord(
|
|
250
|
+
const domain = await resolveDomainBySoaRecord(recordName,logger);
|
|
251
251
|
|
|
252
252
|
/* Resolve authoritative NS addresses */
|
|
253
253
|
logger(`获取到权威NS服务器name: ${domain}`);
|