codebee 0.1.6 → 0.1.7
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 +8 -0
- package/README.md +431 -421
- package/app/core/automation.py +30 -5
- package/app/core/catalog.py +23 -0
- package/app/core/health.py +7 -50
- package/app/core/manager.py +80 -11
- package/app/core/modelhub.py +2883 -2896
- package/app/core/pipeline.py +9 -15
- package/app/core/remote.py +310 -303
- package/app/core/runner.py +26 -3
- package/app/core/selfupdate.py +47 -16
- package/app/core/store.py +138 -47
- package/app/core/usage.py +51 -1
- package/app/main.py +219 -23
- package/app/ui/app.js +519 -156
- package/app/ui/i18n.js +30 -1
- package/app/ui/index.html +57 -45
- package/app/ui/style.css +1056 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,14 @@ CodeBee 的用户可感知变更记录。发布新版时:最上面加一节,
|
|
|
4
4
|
`<!-- relnotes:start -->…<!-- relnotes:end -->` 段(那段会被 `npm view` 的
|
|
5
5
|
README 元数据带回,供老版本在「发现新版本」时展示新版更新内容)。
|
|
6
6
|
|
|
7
|
+
## v0.1.7(2026-09-18)
|
|
8
|
+
|
|
9
|
+
- 移除「绑定链·xxx 绑定链失效」红色告警胶囊:从没配置过绑定链的 CLI 不再被误伤(0.1.6 真实装机案例,更新后人人都见红胶囊),回落 CLI 本机默认照跑
|
|
10
|
+
- 明确配置过绑定链但链上供应商全部失效时,仍会在该步骤明确报错不静默降级(防静默烧配额的本意保留),只是不再有全局胶囊
|
|
11
|
+
- 老版本残留的绑定链告警状态在升级重启后自动清除
|
|
12
|
+
- 修复:Windows 上一键升级秒挂(npm EBUSY)——npm 换版本要整体改名包目录,升级命令与就地重启的工作目录却落在包内;现统一钉到包外
|
|
13
|
+
- 修复:升级失败后「关于与更新」页永远停在「正在升级…」(升级状态轮询读错返回结构),现在成功/失败都会正常提示
|
|
14
|
+
|
|
7
15
|
## v0.1.6(2026-09-18)
|
|
8
16
|
|
|
9
17
|
- 连载韧性:网关限流/欠费时章稿失败先退避重试同作者(保住连载风格一致),重试穷尽才判死整 run;自动续跑改为延迟 5 分钟入队、上限提升到 3 次
|