cross-tab-worker-databus 0.20.9 → 0.20.11
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 +12 -0
- package/docs/roadmap.md +9 -1
- package/docs/zh/roadmap.md +9 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
本项目遵循 [Semantic Versioning](https://semver.org/);变更记录格式参考 [Keep a Changelog](https://keepachangelog.com/)。
|
|
4
4
|
|
|
5
|
+
## [0.20.11] - 2026-09-03
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Release workflow runs one serialized job per tag and records the exact npm version, tag, and commit in the GitHub step summary for easier failure diagnosis.
|
|
10
|
+
|
|
11
|
+
## [0.20.10] - 2026-09-02
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Added reconnect-cycle regression coverage proving every assigned topic is replayed exactly once per transport reconnect.
|
|
16
|
+
|
|
5
17
|
## [0.20.9] - 2026-09-02
|
|
6
18
|
|
|
7
19
|
### Fixed
|
package/docs/roadmap.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
# Roadmap
|
|
2
2
|
|
|
3
|
-
0.20.
|
|
3
|
+
0.20.11 is the current development line. The project is intentionally continuing through reliability-focused minor releases before a 1.0.0 stability freeze.
|
|
4
|
+
|
|
5
|
+
## 0.20.11 delivered scope
|
|
6
|
+
|
|
7
|
+
- Release jobs are serialized per tag and always record npm version, tag, and commit context in the GitHub step summary, making registry or workflow failures easier to diagnose.
|
|
8
|
+
|
|
9
|
+
## 0.20.10 delivered scope
|
|
10
|
+
|
|
11
|
+
- Added repeated reconnect-cycle coverage for multi-topic subscription replay, guarding against duplicate or missing transport subscriptions during recovery.
|
|
4
12
|
|
|
5
13
|
## 0.20.9 delivered scope
|
|
6
14
|
|
package/docs/zh/roadmap.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
# 路线图
|
|
2
2
|
|
|
3
|
-
0.20.
|
|
3
|
+
0.20.11 正在推进。项目会先持续完成可靠性与协议兼容性的中版本迭代,再进入 1.0.0 稳定性冻结。
|
|
4
|
+
|
|
5
|
+
## 0.20.11 已完成范围
|
|
6
|
+
|
|
7
|
+
- Release 按 tag 串行执行,并始终把 npm 版本、tag 和 commit 写入 GitHub step summary,便于定位 registry 或 workflow 失败。
|
|
8
|
+
|
|
9
|
+
## 0.20.10 已完成范围
|
|
10
|
+
|
|
11
|
+
- 新增多 topic 重复 reconnect 回归覆盖,确保恢复期间每个已分配 topic 恰好重放一次,避免 transport 订阅重复或丢失。
|
|
4
12
|
|
|
5
13
|
## 0.20.9 已完成范围
|
|
6
14
|
|
package/package.json
CHANGED