cross-tab-worker-databus 0.20.32 → 0.20.34
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 +13 -1
- package/docs/roadmap.md +9 -1
- package/docs/zh/roadmap.md +9 -1
- package/package.json +2 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,7 +2,19 @@
|
|
|
2
2
|
|
|
3
3
|
本项目遵循 [Semantic Versioning](https://semver.org/);变更记录格式参考 [Keep a Changelog](https://keepachangelog.com/)。
|
|
4
4
|
|
|
5
|
-
## [0.20.
|
|
5
|
+
## [0.20.34] - 2026-09-04
|
|
6
|
+
|
|
7
|
+
### Added
|
|
8
|
+
|
|
9
|
+
- Added a transport-recovery regression covering replay history, duplicate suppression, persistence append boundaries, and late-handler ordering after automatic resubscription.
|
|
10
|
+
|
|
11
|
+
## [0.20.33] - 2026-09-03
|
|
12
|
+
|
|
13
|
+
### Added
|
|
14
|
+
|
|
15
|
+
- Added `pnpm verify:compat` to compare the current package manifest with a prior release tag and reject removed public exports, module conditions, or type metadata.
|
|
16
|
+
|
|
17
|
+
## [0.20.32] - 2026-09-03
|
|
6
18
|
|
|
7
19
|
### Added
|
|
8
20
|
|
package/docs/roadmap.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
# Roadmap
|
|
2
2
|
|
|
3
|
-
0.20.
|
|
3
|
+
0.20.34 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.34 delivered scope
|
|
6
|
+
|
|
7
|
+
- Added a transport-recovery composition regression covering automatic reopen/resubscription, replay history, duplicate suppression, persistence append boundaries, and late-handler ordering.
|
|
8
|
+
|
|
9
|
+
## 0.20.33 delivered scope
|
|
10
|
+
|
|
11
|
+
- Added a tag-based release compatibility check for public exports, ESM/CJS conditions, and type metadata.
|
|
4
12
|
|
|
5
13
|
## 0.20.32 delivered scope
|
|
6
14
|
|
package/docs/zh/roadmap.md
CHANGED
|
@@ -1,6 +1,14 @@
|
|
|
1
1
|
# 路线图
|
|
2
2
|
|
|
3
|
-
0.20.
|
|
3
|
+
0.20.34 正在推进。项目会先持续完成可靠性与协议兼容性的中版本迭代,再进入 1.0.0 稳定性冻结。
|
|
4
|
+
|
|
5
|
+
## 0.20.34 已完成范围
|
|
6
|
+
|
|
7
|
+
- 新增 transport 故障恢复组合回归,覆盖自动重开/重新订阅、replay 历史、重复抑制、持久化 append 边界和晚加入 handler 顺序。
|
|
8
|
+
|
|
9
|
+
## 0.20.33 已完成范围
|
|
10
|
+
|
|
11
|
+
- 新增基于 tag 的发布兼容检查,验证公开 exports、ESM/CJS 条件和类型元数据不会被升级移除。
|
|
4
12
|
|
|
5
13
|
## 0.20.32 已完成范围
|
|
6
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cross-tab-worker-databus",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.34",
|
|
4
4
|
"description": "Framework-agnostic cross-tab data bus with Dedicated/Shared Worker clustering and Centrifuge support.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"license": "MIT",
|
|
@@ -78,6 +78,7 @@
|
|
|
78
78
|
"bench": "vitest bench --run",
|
|
79
79
|
"bench:browser": "pnpm build && node scripts/bench-browser.mjs",
|
|
80
80
|
"verify:pack": "node scripts/verify-packed-consumer.mjs",
|
|
81
|
+
"verify:compat": "node scripts/verify-version-compat.mjs",
|
|
81
82
|
"verify:published": "node scripts/verify-published-consumer.mjs",
|
|
82
83
|
"test:e2e": "pnpm build && playwright test",
|
|
83
84
|
"typecheck": "tsc --noEmit",
|