@dptech-corp/bohr-cli 2.6.23-preview.632 → 2.6.25

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +18 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -15,10 +15,28 @@
15
15
 
16
16
  ## [Unreleased]
17
17
 
18
+ ## [2.6.25] - 2026-08-17
19
+
20
+ ### Fixed
21
+
22
+ - **多 AccessKey 账号重新登录不再静默换绑**:Vouch/设备码登录会优先保留当前 profile 已绑定的 Key,并在结果中说明选择原因与候选数量;首次登录遇到多把 Key、或原绑定已不在列表中时拒绝自动选择,提示使用 `bohr auth login --ak <key>` 显式绑定,避免计费与审计归属漂移。
23
+
24
+ ## [2.6.24] - 2026-08-17
25
+
18
26
  ### Added
19
27
 
20
28
  - **Sandbox 镜像新增 Dockerfile 回查命令**:`bohr sandbox image dockerfile <id>` 默认逐字输出解码后的构建源码,`-o json` 保留服务端 base64 字段;commit 或导入类镜像没有保存 Dockerfile 时会返回结构化 `RESOURCE_NOT_FOUND`,不再以空内容成功。
21
29
 
30
+ ## [2.6.23] - 2026-08-14
31
+
32
+ ### Added
33
+
34
+ - `bohr agents run/watch` 新增 `--no-reasoning` 与 `--out <file>`:前者只保留正文,后者按终端相同分段把完整模型文本原子保存到文件。
35
+
36
+ ### Changed
37
+
38
+ - `bohr agents run/watch` 的 human 输出默认以 `[agents] reasoning:` / `[agents] content:` 分段展示思考与正文;JSON/YAML 默认返回 `data.reasoning`,使用 `--no-reasoning` 时省略。
39
+
22
40
  ## [2.6.22] - 2026-08-14
23
41
 
24
42
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dptech-corp/bohr-cli",
3
- "version": "2.6.23-preview.632",
3
+ "version": "2.6.25",
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-amd64": "2.6.23-preview.632",
36
- "@dptech-corp/bohr-cli-darwin-arm64": "2.6.23-preview.632",
37
- "@dptech-corp/bohr-cli-linux-amd64": "2.6.23-preview.632",
38
- "@dptech-corp/bohr-cli-linux-arm64": "2.6.23-preview.632",
39
- "@dptech-corp/bohr-cli-windows-amd64": "2.6.23-preview.632",
40
- "@dptech-corp/bohr-cli-windows-arm64": "2.6.23-preview.632"
35
+ "@dptech-corp/bohr-cli-darwin-arm64": "2.6.25",
36
+ "@dptech-corp/bohr-cli-darwin-amd64": "2.6.25",
37
+ "@dptech-corp/bohr-cli-linux-amd64": "2.6.25",
38
+ "@dptech-corp/bohr-cli-linux-arm64": "2.6.25",
39
+ "@dptech-corp/bohr-cli-windows-amd64": "2.6.25",
40
+ "@dptech-corp/bohr-cli-windows-arm64": "2.6.25"
41
41
  }
42
42
  }