@certd/acme-client 1.29.4 → 1.30.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.
Files changed (2) hide show
  1. package/package.json +3 -3
  2. package/src/axios.js +1 -0
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.29.4",
6
+ "version": "1.30.0",
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.29.4",
21
+ "@certd/basic": "^1.30.0",
22
22
  "@peculiar/x509": "^1.11.0",
23
23
  "asn1js": "^3.0.5",
24
24
  "axios": "^1.7.2",
@@ -65,5 +65,5 @@
65
65
  "bugs": {
66
66
  "url": "https://github.com/publishlab/node-acme-client/issues"
67
67
  },
68
- "gitHead": "94509c64b954e17e4842b02c5c9fa0649bce13d4"
68
+ "gitHead": "9a78dad57619e02d1390cf5a013695a2aaf20e64"
69
69
  }
package/src/axios.js CHANGED
@@ -126,6 +126,7 @@ instance.interceptors.response.use(null, async (error) => {
126
126
 
127
127
  /* Wait and retry the request */
128
128
  await new Promise((resolve) => { setTimeout(resolve, (retryAfter * 1000)); });
129
+ log(`Retrying request to URL ${config.url}`);
129
130
  return instance(config);
130
131
  }
131
132
  }