@abtnode/certificate-manager 1.8.53 → 1.8.55

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.
@@ -41,7 +41,7 @@ class Manager extends EventEmitter {
41
41
  return;
42
42
  }
43
43
 
44
- await this._createOrRenewCert(data);
44
+ await this._createOrRenewCert({ ...data, challenges: { 'http-01': http01 } });
45
45
  },
46
46
  options: {
47
47
  maxRetries: 0,
@@ -62,7 +62,7 @@ class Manager extends EventEmitter {
62
62
  }
63
63
 
64
64
  async pushToJobQueue(domain) {
65
- const jobData = { domain, subscriberEmail: this.maintainerEmail, challenges: { 'http-01': http01 } };
65
+ const jobData = { domain, subscriberEmail: this.maintainerEmail };
66
66
 
67
67
  const job = await this.queue.getJob(this.getJobId(jobData));
68
68
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@abtnode/certificate-manager",
3
- "version": "1.8.53",
3
+ "version": "1.8.55",
4
4
  "description": "Manage ABT Node SSL certificates",
5
5
  "author": "polunzh <polunzh@gmail.com>",
6
6
  "homepage": "https://github.com/ArcBlock/blocklet-server#readme",
@@ -32,11 +32,11 @@
32
32
  "url": "https://github.com/ArcBlock/blocklet-server/issues"
33
33
  },
34
34
  "dependencies": {
35
- "@abtnode/cron": "1.8.53",
36
- "@abtnode/db": "1.8.53",
37
- "@abtnode/logger": "1.8.53",
38
- "@abtnode/queue": "1.8.53",
39
- "@abtnode/util": "1.8.53",
35
+ "@abtnode/cron": "1.8.55",
36
+ "@abtnode/db": "1.8.55",
37
+ "@abtnode/logger": "1.8.55",
38
+ "@abtnode/queue": "1.8.55",
39
+ "@abtnode/util": "1.8.55",
40
40
  "@fidm/x509": "^1.2.1",
41
41
  "@greenlock/manager": "^3.1.0",
42
42
  "@root/acme": "^3.1.0",
@@ -54,5 +54,5 @@
54
54
  "punycode": "^2.1.1",
55
55
  "ursa-optional": "^0.10.2"
56
56
  },
57
- "gitHead": "48a5659627cbf21c232514e332d96e3fe8442e0f"
57
+ "gitHead": "dce39bef7062b76648998b1f1b9a3c0a9b708dff"
58
58
  }