@certd/acme-client 1.36.19 → 1.36.21
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 +3 -3
- package/src/client.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.36.
|
|
6
|
+
"version": "1.36.21",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"module": "scr/index.js",
|
|
9
9
|
"main": "src/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"types"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@certd/basic": "^1.36.
|
|
21
|
+
"@certd/basic": "^1.36.21",
|
|
22
22
|
"@peculiar/x509": "^1.11.0",
|
|
23
23
|
"asn1js": "^3.0.5",
|
|
24
24
|
"axios": "^1.7.2",
|
|
@@ -69,5 +69,5 @@
|
|
|
69
69
|
"bugs": {
|
|
70
70
|
"url": "https://github.com/publishlab/node-acme-client/issues"
|
|
71
71
|
},
|
|
72
|
-
"gitHead": "
|
|
72
|
+
"gitHead": "3cedef4974708d828fb972acc54af0515e3ec3a0"
|
|
73
73
|
}
|
package/src/client.js
CHANGED
|
@@ -502,7 +502,7 @@ class AcmeClient {
|
|
|
502
502
|
await verify[challenge.type](authz, challenge, keyAuthorization);
|
|
503
503
|
};
|
|
504
504
|
|
|
505
|
-
log('Waiting for ACME challenge verification(等待ACME挑战验证)'
|
|
505
|
+
log('Waiting for ACME challenge verification(等待ACME挑战验证)');
|
|
506
506
|
return util.retry(verifyFn, this.backoffOpts);
|
|
507
507
|
}
|
|
508
508
|
|