@superhero/eventflow-certificates 4.4.0 → 4.4.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/index.js +2 -2
  2. package/package.json +1 -1
package/index.js CHANGED
@@ -26,8 +26,8 @@ export default class Certificates
26
26
 
27
27
  constructor(intermediateUID, leafUID, config, db)
28
28
  {
29
- this.intermediateUID = intermediateUID
30
- this.leafUID = leafUID
29
+ this.intermediateUID = intermediateUID.toUpperCase()
30
+ this.leafUID = leafUID.toUpperCase()
31
31
  this.#db = db
32
32
  this.log = new Log({ label: `[EVENTFLOW:CERTIFICATES:${leafUID}]` })
33
33
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superhero/eventflow-certificates",
3
- "version": "4.4.0",
3
+ "version": "4.4.2",
4
4
  "description": "Eventflow certificates is common tls certificates logic used in the eventflow ecosystem.",
5
5
  "keywords": [
6
6
  "eventflow"