@certd/acme-client 1.37.16 → 1.37.17

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.
Files changed (2) hide show
  1. package/package.json +4 -4
  2. 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.37.16",
6
+ "version": "1.37.17",
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.37.16",
21
+ "@certd/basic": "^1.37.17",
22
22
  "@peculiar/x509": "^1.11.0",
23
23
  "asn1js": "^3.0.5",
24
- "axios": "^1.7.2",
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": "fa14f6219810ddbfcf1dde7b69963ee8a36c80c4"
73
+ "gitHead": "786780ce9b0ee9b9ebb104f54abb161ae9a924e9"
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(recordNam,logger);
250
+ const domain = await resolveDomainBySoaRecord(recordName,logger);
251
251
 
252
252
  /* Resolve authoritative NS addresses */
253
253
  logger(`获取到权威NS服务器name: ${domain}`);