@dptech-corp/bohr-cli 2.6.24 → 2.6.26
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/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,18 @@
|
|
|
15
15
|
|
|
16
16
|
## [Unreleased]
|
|
17
17
|
|
|
18
|
+
## [2.6.26] - 2026-08-17
|
|
19
|
+
|
|
20
|
+
### Breaking
|
|
21
|
+
|
|
22
|
+
- **`bohr skills` 改为只读、随 CLI 内嵌的命令指引入口**:此前该命令会代理 `bohrium-skills-cli`,并同时提供 `install` / `update` / `status` / `sync` / `diff`、`--managed` 与 `--lang`,`bohr sandbox skill` / `bohr batchjob skill` 还会导出或覆盖本地副本;现在只保留顶层 `list [skill[/path]]` 和 `read <skill>[/path] [path]`,不访问 Skill Hub,也不再写入用户 Skill 目录。通用 Skill Hub 用户请直接使用 `bohrium-skills-cli`,原先读取 CLI 指引的调用方改用 `bohr skills list/read`。内嵌 Skill 的规范名同时由 `bohrium-sandbox` / `bohrium-batchjob` 改为 `bohr-sandbox` / `bohr-batchjob`。
|
|
23
|
+
|
|
24
|
+
## [2.6.25] - 2026-08-17
|
|
25
|
+
|
|
26
|
+
### Fixed
|
|
27
|
+
|
|
28
|
+
- **多 AccessKey 账号重新登录不再静默换绑**:Vouch/设备码登录会优先保留当前 profile 已绑定的 Key,并在结果中说明选择原因与候选数量;首次登录遇到多把 Key、或原绑定已不在列表中时拒绝自动选择,提示使用 `bohr auth login --ak <key>` 显式绑定,避免计费与审计归属漂移。
|
|
29
|
+
|
|
18
30
|
## [2.6.24] - 2026-08-17
|
|
19
31
|
|
|
20
32
|
### Added
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dptech-corp/bohr-cli",
|
|
3
|
-
"version": "2.6.
|
|
3
|
+
"version": "2.6.26",
|
|
4
4
|
"description": "CLI tool for Bohrium scientific computing platform",
|
|
5
5
|
"bin": {
|
|
6
6
|
"bohr": "run.js"
|
|
@@ -32,11 +32,11 @@
|
|
|
32
32
|
"CHANGELOG.md"
|
|
33
33
|
],
|
|
34
34
|
"optionalDependencies": {
|
|
35
|
-
"@dptech-corp/bohr-cli-darwin-arm64": "2.6.
|
|
36
|
-
"@dptech-corp/bohr-cli-darwin-amd64": "2.6.
|
|
37
|
-
"@dptech-corp/bohr-cli-linux-amd64": "2.6.
|
|
38
|
-
"@dptech-corp/bohr-cli-linux-arm64": "2.6.
|
|
39
|
-
"@dptech-corp/bohr-cli-windows-amd64": "2.6.
|
|
40
|
-
"@dptech-corp/bohr-cli-windows-arm64": "2.6.
|
|
35
|
+
"@dptech-corp/bohr-cli-darwin-arm64": "2.6.26",
|
|
36
|
+
"@dptech-corp/bohr-cli-darwin-amd64": "2.6.26",
|
|
37
|
+
"@dptech-corp/bohr-cli-linux-amd64": "2.6.26",
|
|
38
|
+
"@dptech-corp/bohr-cli-linux-arm64": "2.6.26",
|
|
39
|
+
"@dptech-corp/bohr-cli-windows-amd64": "2.6.26",
|
|
40
|
+
"@dptech-corp/bohr-cli-windows-arm64": "2.6.26"
|
|
41
41
|
}
|
|
42
42
|
}
|