@certd/acme-client 1.39.13 → 1.39.15
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/dist/auto.js +2 -0
- package/package.json +3 -3
package/dist/auto.js
CHANGED
|
@@ -144,6 +144,7 @@ export default async (client, userOpts) => {
|
|
|
144
144
|
}
|
|
145
145
|
catch (e) {
|
|
146
146
|
await deactivateAuth(e);
|
|
147
|
+
e.message = `[${d}] ${e.message || "completeChallenge error"}`;
|
|
147
148
|
throw e;
|
|
148
149
|
}
|
|
149
150
|
challengeCompleted = true;
|
|
@@ -154,6 +155,7 @@ export default async (client, userOpts) => {
|
|
|
154
155
|
catch (e) {
|
|
155
156
|
log(`[auto] [${d}] challengeCreateFn threw error: ${e.message || e}`);
|
|
156
157
|
await deactivateAuth(e);
|
|
158
|
+
e.message = `[${d}] ${e.message || "challengeCreateFn error"}`;
|
|
157
159
|
throw e;
|
|
158
160
|
}
|
|
159
161
|
};
|
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.39.
|
|
6
|
+
"version": "1.39.15",
|
|
7
7
|
"type": "module",
|
|
8
8
|
"module": "./dist/index.js",
|
|
9
9
|
"main": "./dist/index.js",
|
|
@@ -18,7 +18,7 @@
|
|
|
18
18
|
"types"
|
|
19
19
|
],
|
|
20
20
|
"dependencies": {
|
|
21
|
-
"@certd/basic": "^1.39.
|
|
21
|
+
"@certd/basic": "^1.39.15",
|
|
22
22
|
"@peculiar/x509": "^1.11.0",
|
|
23
23
|
"asn1js": "^3.0.5",
|
|
24
24
|
"axios": "^1.9.0",
|
|
@@ -76,5 +76,5 @@
|
|
|
76
76
|
"bugs": {
|
|
77
77
|
"url": "https://github.com/publishlab/node-acme-client/issues"
|
|
78
78
|
},
|
|
79
|
-
"gitHead": "
|
|
79
|
+
"gitHead": "b49ddbfef9ac56bb5f5139c03f0ce354c6481418"
|
|
80
80
|
}
|