@dptech-corp/bohr-cli 2.6.26 → 2.6.28

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 +15 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -15,6 +15,21 @@
15
15
 
16
16
  ## [Unreleased]
17
17
 
18
+ ## [2.6.28] - 2026-08-18
19
+
20
+ ### Added
21
+
22
+ - **新增 SciX 托管运行支持**:SciX 本地 Sandbox 内的 bohr CLI 仅使用当前会话注入的 Vouch 或 AccessKey,不读取宿主机持久凭证,并限制登录、凭证导出、自更新和扩展等有状态命令。
23
+ - **`bohr tools install trisol` 改为拉取 Bohr 版 CLI**:trisol 下载走 `?variant=bohrium`,安装的是裁剪过 admin 命令的 `bohr-trisol`(Bohr 平台分发)产物,与内部版分发分离。
24
+ - **`bohr tools install --server <url>` 环境覆盖**:指向非 prod 的 trisol 环境(如 dev/fastlane)做联调下载;也支持 `BOHR_TOOLS_SERVER` 环境变量。
25
+ - **`bohr tools install --channel <stable|dev>` 通道选择**:非 prod 服务器的默认通道是 stable(没有外部版二进制),dev/fastlane 联调需 `--channel dev` 拉取含外部版的 dev 通道。
26
+
27
+ ## [2.6.27] - 2026-08-18
28
+
29
+ ### Breaking
30
+
31
+ - **Mentor 的规范入口调整为 `bohr agents mentor`**:与其他托管科学 Agent 服务统一归入 `agents`。原顶层 `bohr mentor` 已隐藏并废弃,兼容期内仍可使用且会提示迁移,旧入口至少保留一个 minor 版本;参数、流式输出和 `mentor.session` 计费行为保持不变。
32
+
18
33
  ## [2.6.26] - 2026-08-17
19
34
 
20
35
  ### Breaking
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dptech-corp/bohr-cli",
3
- "version": "2.6.26",
3
+ "version": "2.6.28",
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.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"
35
+ "@dptech-corp/bohr-cli-darwin-arm64": "2.6.28",
36
+ "@dptech-corp/bohr-cli-darwin-amd64": "2.6.28",
37
+ "@dptech-corp/bohr-cli-linux-amd64": "2.6.28",
38
+ "@dptech-corp/bohr-cli-linux-arm64": "2.6.28",
39
+ "@dptech-corp/bohr-cli-windows-amd64": "2.6.28",
40
+ "@dptech-corp/bohr-cli-windows-arm64": "2.6.28"
41
41
  }
42
42
  }