codebee 0.1.5 → 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 +16 -0
- package/README.md +431 -422
- package/app/core/automation.py +30 -5
- package/app/core/catalog.py +23 -0
- package/app/core/health.py +12 -1
- package/app/core/jobs.py +10 -2
- package/app/core/manager.py +87 -10
- package/app/core/modelhub.py +2883 -2845
- package/app/core/pipeline.py +120 -60
- package/app/core/registry.py +4 -0
- package/app/core/remote.py +310 -303
- package/app/core/router.py +5 -4
- package/app/core/runner.py +38 -6
- package/app/core/selfupdate.py +53 -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 +687 -222
- package/app/ui/i18n.js +43 -6
- package/app/ui/icons/bee.svg +79 -0
- package/app/ui/index.html +59 -46
- package/app/ui/style.css +1229 -328
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,22 @@ 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
|
+
|
|
15
|
+
## v0.1.6(2026-09-18)
|
|
16
|
+
|
|
17
|
+
- 连载韧性:网关限流/欠费时章稿失败先退避重试同作者(保住连载风格一致),重试穷尽才判死整 run;自动续跑改为延迟 5 分钟入队、上限提升到 3 次
|
|
18
|
+
- 修复:任务分支从游离 HEAD 检出时「切回原分支」原地空转的假成功;游离基线的合并现在显式拒绝并说明
|
|
19
|
+
- kimi 接入:僵尸 kimi 进程自动检测清理;CodeBee 托管配置按 TOML 语义渲染
|
|
20
|
+
- 修复:generic 类 CLI 经 npm .cmd 垫片时提示词被 cmd 重解析截烂(改 node 直启)
|
|
21
|
+
- 界面:新增蜜蜂图标,蜂巢工作台与皮肤视觉精修
|
|
22
|
+
|
|
7
23
|
## v0.1.5(2026-09-16)
|
|
8
24
|
|
|
9
25
|
- 更新提示升级:发现新版本时直接展示「新版本更新内容」,升级后首次打开自动弹一次「本次更新内容」
|