@dptech-corp/bohr-cli 2.6.27 → 2.6.29

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 CHANGED
@@ -15,6 +15,21 @@
15
15
 
16
16
  ## [Unreleased]
17
17
 
18
+ ## [2.6.29] - 2026-08-18
19
+
20
+ ### Breaking
21
+
22
+ - **`bohr tools install` 移至 `bohr extension install`**:安装 trisol/wenyon 等配套扩展 CLI 的命令归入扩展管理命令组(与 `extension add/list/info/remove/pin/verify` 并列),`bohr tools` 回归纯科学工具发现(list/search/info/domains/subdomains)。此前 `bohr tools install <tool>` 的调用请改为 `bohr extension install <tool>`,参数与行为不变(`--dry-run`/`--silent`/`--server`/`--channel` 及 `BOHR_TOOLS_SERVER` 环境变量照旧)。
23
+
24
+ ## [2.6.28] - 2026-08-18
25
+
26
+ ### Added
27
+
28
+ - **新增 SciX 托管运行支持**:SciX 本地 Sandbox 内的 bohr CLI 仅使用当前会话注入的 Vouch 或 AccessKey,不读取宿主机持久凭证,并限制登录、凭证导出、自更新和扩展等有状态命令。
29
+ - **`bohr tools install trisol` 改为拉取 Bohr 版 CLI**:trisol 下载走 `?variant=bohrium`,安装的是裁剪过 admin 命令的 `bohr-trisol`(Bohr 平台分发)产物,与内部版分发分离。
30
+ - **`bohr tools install --server <url>` 环境覆盖**:指向非 prod 的 trisol 环境(如 dev/fastlane)做联调下载;也支持 `BOHR_TOOLS_SERVER` 环境变量。
31
+ - **`bohr tools install --channel <stable|dev>` 通道选择**:非 prod 服务器的默认通道是 stable(没有外部版二进制),dev/fastlane 联调需 `--channel dev` 拉取含外部版的 dev 通道。
32
+
18
33
  ## [2.6.27] - 2026-08-18
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.27",
3
+ "version": "2.6.29",
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.27",
36
- "@dptech-corp/bohr-cli-darwin-amd64": "2.6.27",
37
- "@dptech-corp/bohr-cli-linux-amd64": "2.6.27",
38
- "@dptech-corp/bohr-cli-linux-arm64": "2.6.27",
39
- "@dptech-corp/bohr-cli-windows-amd64": "2.6.27",
40
- "@dptech-corp/bohr-cli-windows-arm64": "2.6.27"
35
+ "@dptech-corp/bohr-cli-darwin-arm64": "2.6.29",
36
+ "@dptech-corp/bohr-cli-darwin-amd64": "2.6.29",
37
+ "@dptech-corp/bohr-cli-linux-amd64": "2.6.29",
38
+ "@dptech-corp/bohr-cli-linux-arm64": "2.6.29",
39
+ "@dptech-corp/bohr-cli-windows-amd64": "2.6.29",
40
+ "@dptech-corp/bohr-cli-windows-arm64": "2.6.29"
41
41
  }
42
42
  }
package/postinstall.js CHANGED
@@ -2,7 +2,7 @@
2
2
  /**
3
3
  * postinstall: downloads wenyon-cli (external) for the current platform.
4
4
  * Runs after `npm install -g @dptech-corp/bohr-cli`.
5
- * Failure is non-fatal — bohr-cli works without wenyon, and `bohr tools install wenyon`
5
+ * Failure is non-fatal — bohr-cli works without wenyon, and `bohr extension install wenyon`
6
6
  * can retry later.
7
7
  */
8
8
  const https = require("https");