@dptech-corp/bohr-cli 2.6.5-preview.423 → 2.6.6-preview.434
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/CHANGELOG.md
CHANGED
|
@@ -14,6 +14,12 @@
|
|
|
14
14
|
|
|
15
15
|
## [Unreleased]
|
|
16
16
|
|
|
17
|
+
### Fixed
|
|
18
|
+
|
|
19
|
+
- **preview npm 发布现在同步发布主包与六个平台二进制包**。改前:preview 流水线只修改并发布 `@dptech-corp/bohr-cli` 主包,六个 `optionalDependencies` 仍指向旧正式版,平台 preview 包也不存在,导致安装 `@preview` 后实际运行旧二进制。改后:CI 使用同一个下一 patch preview 版本暂存七个包,先发布六个平台包并将主包 pin 精确更新到该版本,最后发布主包;手动撤回也按流水线冻结版本清理整套七包。
|
|
20
|
+
|
|
21
|
+
## [2.6.5] - 2026-08-10
|
|
22
|
+
|
|
17
23
|
### Breaking
|
|
18
24
|
|
|
19
25
|
- **Notebook 计算命令现在进入统一计费确认门禁**。改前:`bohr notebook server start`、`server restart` 和 `notebook run` 会启动按资源及时长计费的 Notebook Node 或 BatchJob,但没有 billing annotation,非交互调用无需确认即可请求或上传,`bohr billing pricing` 也查不到它们。改后:三条命令均按 `billing_resource` 处理,未带 `--yes/-y` 的 Agent/CI 会在任何远端请求或上传前收到 `CONFIRMATION_REQUIRED`;价目目录新增 `--resource notebook`,其中 Server 价格依据 Core 的 Notebook 场景 Node SKU,异步运行依据 BatchJob 机型。调用方要怎么改:非交互调用显式加 `--yes`,或在获得授权后运行 `bohr config set billing_confirmation false --yes`。
|
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.6-preview.434",
|
|
4
4
|
"description": "CLI tool for Bohrium scientific computing platform",
|
|
5
5
|
"bin": {
|
|
6
6
|
"bohr": "run.js"
|
|
@@ -28,11 +28,11 @@
|
|
|
28
28
|
"CHANGELOG.md"
|
|
29
29
|
],
|
|
30
30
|
"optionalDependencies": {
|
|
31
|
-
"@dptech-corp/bohr-cli-darwin-amd64": "2.6.
|
|
32
|
-
"@dptech-corp/bohr-cli-darwin-arm64": "2.6.
|
|
33
|
-
"@dptech-corp/bohr-cli-linux-amd64": "2.6.
|
|
34
|
-
"@dptech-corp/bohr-cli-linux-arm64": "2.6.
|
|
35
|
-
"@dptech-corp/bohr-cli-windows-amd64": "2.6.
|
|
36
|
-
"@dptech-corp/bohr-cli-windows-arm64": "2.6.
|
|
31
|
+
"@dptech-corp/bohr-cli-darwin-amd64": "2.6.6-preview.434",
|
|
32
|
+
"@dptech-corp/bohr-cli-darwin-arm64": "2.6.6-preview.434",
|
|
33
|
+
"@dptech-corp/bohr-cli-linux-amd64": "2.6.6-preview.434",
|
|
34
|
+
"@dptech-corp/bohr-cli-linux-arm64": "2.6.6-preview.434",
|
|
35
|
+
"@dptech-corp/bohr-cli-windows-amd64": "2.6.6-preview.434",
|
|
36
|
+
"@dptech-corp/bohr-cli-windows-arm64": "2.6.6-preview.434"
|
|
37
37
|
}
|
|
38
38
|
}
|