@dptech-corp/bohr-cli 2.6.28 → 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 +6 -0
- package/package.json +7 -7
- package/postinstall.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,12 @@
|
|
|
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
|
+
|
|
18
24
|
## [2.6.28] - 2026-08-18
|
|
19
25
|
|
|
20
26
|
### 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.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.
|
|
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.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
|
|
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");
|