@certd/acme-client 1.39.1 → 1.39.2

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 +3 -3
  2. package/src/auto.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.39.1",
6
+ "version": "1.39.2",
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.39.1",
21
+ "@certd/basic": "^1.39.2",
22
22
  "@peculiar/x509": "^1.11.0",
23
23
  "asn1js": "^3.0.5",
24
24
  "axios": "^1.9.0",
@@ -70,5 +70,5 @@
70
70
  "bugs": {
71
71
  "url": "https://github.com/publishlab/node-acme-client/issues"
72
72
  },
73
- "gitHead": "590ff67fcb40ff8ba0f7b2a9592b51d9fb54a2ef"
73
+ "gitHead": "f47773348312d5480b248c02beed9e162f59e3c7"
74
74
  }
package/src/auto.js CHANGED
@@ -174,7 +174,7 @@ export default async (client, userOpts) => {
174
174
 
175
175
 
176
176
  } catch (e) {
177
- log(`[auto] [${d}] challengeCreateFn threw error: ${e.message}`);
177
+ log(`[auto] [${d}] challengeCreateFn threw error: ${e.message || e}`);
178
178
  await deactivateAuth(e);
179
179
  throw e;
180
180
  }