@superhero/eventflow-spoke 4.3.8 → 4.3.10

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 +5 -5
package/index.js CHANGED
@@ -101,7 +101,7 @@ export default class Spoke
101
101
 
102
102
  if(this.hubs.size)
103
103
  {
104
- this.log.info`polling for online hubs completed`
104
+ this.log.info`completed polling for online hubs`
105
105
  }
106
106
  else
107
107
  {
@@ -452,7 +452,7 @@ export default class Spoke
452
452
  state = {},
453
453
  length = eventlog.length
454
454
 
455
- for(let i = size; i < length; i += size)
455
+ for(let i = size; i <= length; i += size)
456
456
  {
457
457
  const segment = merge(i - size, i)
458
458
  deepassign(state, segment)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@superhero/eventflow-spoke",
3
- "version": "4.3.8",
3
+ "version": "4.3.10",
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.8",
20
- "@superhero/eventflow-db": "^4.3.8",
19
+ "@superhero/eventflow-certificates": "^4.3.10",
20
+ "@superhero/eventflow-db": "^4.3.10",
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
- "@superhero/locator": "^4.2.5",
27
- "@superhero/eventflow-hub": "^4.3.3"
26
+ "@superhero/locator": "^4.3.7",
27
+ "@superhero/eventflow-hub": "^4.3.10"
28
28
  },
29
29
  "scripts": {
30
30
  "test-build": "npm explore @superhero/eventflow-db -- npm run test-build",