@superhero/eventflow-spoke 4.3.10 → 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.
Files changed (2) hide show
  1. package/index.js +1 -1
  2. package/package.json +4 -4
package/index.js CHANGED
@@ -53,7 +53,7 @@ export default class Spoke
53
53
  this.#spokeID = (new IdNameGenerator().generateId() + '.' + config.NAME).toUpperCase()
54
54
  this.config = config
55
55
  this.db = db
56
- this.log = new Log({ label: `[${config.NAME}]` })
56
+ this.log = new Log({ label: `[EVENTFLOW:SPOKE:${config.NAME}]` })
57
57
  this.certificates = new CertificatesManager(config.NAME, this.#spokeID, config.certificates, db, this.log)
58
58
 
59
59
  this.channel.on('record', this.#onRecord.bind(this))
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superhero/eventflow-spoke",
3
- "version": "4.3.10",
3
+ "version": "4.4.0",
4
4
  "description": "Eventflow spoke is the client component in the eventflow ecosystem.",
5
5
  "keywords": [
6
6
  "eventflow",
@@ -16,15 +16,15 @@
16
16
  },
17
17
  "dependencies": {
18
18
  "@superhero/deep": "^4.2.0",
19
- "@superhero/eventflow-certificates": "^4.3.10",
20
- "@superhero/eventflow-db": "^4.3.10",
19
+ "@superhero/eventflow-certificates": "^4.4.0",
20
+ "@superhero/eventflow-db": "^4.4.0",
21
21
  "@superhero/id-name-generator": "^4.0.0",
22
22
  "@superhero/log": "^4.0.1",
23
23
  "@superhero/tcp-record-channel": "^4.2.2"
24
24
  },
25
25
  "devDependencies": {
26
26
  "@superhero/locator": "^4.3.7",
27
- "@superhero/eventflow-hub": "^4.3.10"
27
+ "@superhero/eventflow-hub": "^4.4.0"
28
28
  },
29
29
  "scripts": {
30
30
  "test-build": "npm explore @superhero/eventflow-db -- npm run test-build",