@cocreate/acme
Advanced tools
Comparing version 1.2.13 to 1.2.14
@@ -0,1 +1,8 @@ | ||
## [1.2.14](https://github.com/CoCreate-app/CoCreate-acme/compare/v1.2.13...v1.2.14) (2024-07-23) | ||
### Bug Fixes | ||
* convert key to string before saving ([a8b80c7](https://github.com/CoCreate-app/CoCreate-acme/commit/a8b80c7c5f37d2ed2b401509b1889faad6f79407)) | ||
## [1.2.13](https://github.com/CoCreate-app/CoCreate-acme/compare/v1.2.12...v1.2.13) (2024-06-23) | ||
@@ -2,0 +9,0 @@ |
{ | ||
"name": "@cocreate/acme", | ||
"version": "1.2.13", | ||
"version": "1.2.14", | ||
"description": "Dynamic SSL certificate management leveraging the ACME protocol, designed for direct API accessibility within applications. Automates certificate creation, renewal, and retrieval, ideal for distributed applications requiring real-time, secure certificate operations.", | ||
@@ -5,0 +5,0 @@ "keywords": [ |
@@ -92,3 +92,3 @@ const { Client, forge } = require('acme-client'); | ||
/* Create certificate request */ | ||
const [key, csr] = await forge.createCsr({ | ||
let [key, csr] = await forge.createCsr({ | ||
commonName: domains[0], | ||
@@ -173,2 +173,4 @@ altNames: domains | ||
key = key.toString('utf8'); | ||
this.crud.send({ | ||
@@ -175,0 +177,0 @@ method: 'object.update', |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
86691
315