@superhero/eventflow-hub 4.3.9 → 4.4.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.
- package/index.js +1 -1
- package/package.json +4 -4
package/index.js
CHANGED
|
@@ -52,7 +52,7 @@ export default class Hub
|
|
|
52
52
|
this.#hubID = (new IdNameGenerator().generateId() + '.' + config.NAME).toUpperCase()
|
|
53
53
|
this.config = config
|
|
54
54
|
this.db = db
|
|
55
|
-
this.log = new Log({ label: `[
|
|
55
|
+
this.log = new Log({ label: `[EVENTFLOW:HUB:${config.NAME}]` })
|
|
56
56
|
this.certificates = new CertificatesManager(config.NAME, this.#hubID, config.certificates, db, this.log)
|
|
57
57
|
|
|
58
58
|
for(const level of [ 'info', 'warn', 'fail' ])
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@superhero/eventflow-hub",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.4.0",
|
|
4
4
|
"description": "Eventflow hub is the central server component in the eventflow ecosystem.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"eventflow",
|
|
@@ -16,13 +16,13 @@
|
|
|
16
16
|
"dependencies": {
|
|
17
17
|
"@superhero/id-name-generator": "^4.0.0",
|
|
18
18
|
"@superhero/log": "^4.0.1",
|
|
19
|
-
"@superhero/eventflow-certificates": "^4.
|
|
20
|
-
"@superhero/eventflow-db": "^4.
|
|
19
|
+
"@superhero/eventflow-certificates": "^4.4.0",
|
|
20
|
+
"@superhero/eventflow-db": "^4.4.0",
|
|
21
21
|
"@superhero/tcp-record-channel": "^4.2.2",
|
|
22
22
|
"@superhero/deep": "^4.2.0"
|
|
23
23
|
},
|
|
24
24
|
"devDependencies": {
|
|
25
|
-
"@superhero/locator": "^4.3.
|
|
25
|
+
"@superhero/locator": "^4.3.7"
|
|
26
26
|
},
|
|
27
27
|
"scripts": {
|
|
28
28
|
"test-build": "npm explore @superhero/eventflow-db -- npm run test-build",
|