@superhero/eventflow-certificates 4.4.2 → 4.4.3

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/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -224,7 +224,7 @@ export default class Certificates
224
224
  days : Number(this.config.CERT_INTERMEDIATE_DAYS),
225
225
  algorithm : this.config.CERT_ALGORITHM,
226
226
  hash : this.config.CERT_HASH,
227
- dns : [ '.' + UID ],
227
+ dns : [ '.' + UID.toLowerCase() ],
228
228
  subject : { UID },
229
229
  password :
230
230
  {
@@ -242,7 +242,7 @@ export default class Certificates
242
242
  days : Number(this.config.CERT_LEAF_DAYS),
243
243
  algorithm : this.config.CERT_ALGORITHM,
244
244
  hash : this.config.CERT_HASH,
245
- dns : [ this.leafUID ],
245
+ dns : [ this.leafUID.toLowerCase() ],
246
246
  subject : { UID },
247
247
  password :
248
248
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superhero/eventflow-certificates",
3
- "version": "4.4.2",
3
+ "version": "4.4.3",
4
4
  "description": "Eventflow certificates is common tls certificates logic used in the eventflow ecosystem.",
5
5
  "keywords": [
6
6
  "eventflow"