cross-tab-worker-databus 0.20.21 → 0.20.22
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/CHANGELOG.md +6 -0
- package/dist/centrifuge.js +1 -1
- package/dist/{chunk-UMMKMXOT.js → chunk-JOQXQPGI.js} +3 -1
- package/dist/{chunk-UMMKMXOT.js.map → chunk-JOQXQPGI.js.map} +2 -2
- package/dist/cjs/centrifuge.cjs +2 -0
- package/dist/cjs/centrifuge.cjs.map +2 -2
- package/dist/cjs/index.cjs +2 -0
- package/dist/cjs/index.cjs.map +2 -2
- package/dist/core/data-bus.d.ts.map +1 -1
- package/dist/index.js +1 -1
- package/docs/roadmap.md +5 -1
- package/docs/zh/roadmap.md +5 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,12 @@
|
|
|
2
2
|
|
|
3
3
|
本项目遵循 [Semantic Versioning](https://semver.org/);变更记录格式参考 [Keep a Changelog](https://keepachangelog.com/)。
|
|
4
4
|
|
|
5
|
+
## [0.20.22] - 2026-09-03
|
|
6
|
+
|
|
7
|
+
### Fixed
|
|
8
|
+
|
|
9
|
+
- Explicit stop/restart lifecycles now reset recovery attempt and exhaustion state so a new session starts with a fresh diagnostic sequence.
|
|
10
|
+
|
|
5
11
|
## [0.20.21] - 2026-09-03
|
|
6
12
|
|
|
7
13
|
### Fixed
|
package/dist/centrifuge.js
CHANGED
|
@@ -1674,6 +1674,8 @@ var CrossTabDataBus = class {
|
|
|
1674
1674
|
this.pendingStop = null;
|
|
1675
1675
|
this.lastError = null;
|
|
1676
1676
|
this.activeConfig = void 0;
|
|
1677
|
+
this.recoveryAttempt = 0;
|
|
1678
|
+
this.recoveryExhausted = false;
|
|
1677
1679
|
this.updateStatus("disconnected");
|
|
1678
1680
|
}
|
|
1679
1681
|
}
|
|
@@ -2109,4 +2111,4 @@ export {
|
|
|
2109
2111
|
parseDataBusPublication,
|
|
2110
2112
|
selectWorkerBackend
|
|
2111
2113
|
};
|
|
2112
|
-
//# sourceMappingURL=chunk-
|
|
2114
|
+
//# sourceMappingURL=chunk-JOQXQPGI.js.map
|