@dptech-corp/bohr-cli 2.6.18 → 2.6.19-preview.597
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 +8 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,14 @@
|
|
|
15
15
|
|
|
16
16
|
## [Unreleased]
|
|
17
17
|
|
|
18
|
+
### Breaking
|
|
19
|
+
|
|
20
|
+
- **`bohr file` 的远端路径改为由 `personal/` 或 `share/` 前缀唯一决定空间**。改前:多数子命令会把任意路径直接发给后端,并可能用 `--project-id` 或 `--space` 推断空间;改后:个人盘只接受 `--project-id 0`,共享盘要求正数 `--project-id`,非法前缀、除 `file list` 外的根目录操作和跨空间复制/移动会在请求前报错,省略 `file list` 路径或传 `/` 均表示个人盘根目录。调用方需给路径补上对应空间前缀,并为 `share/...` 传正整数 `--project-id`。
|
|
21
|
+
|
|
22
|
+
### Deprecated
|
|
23
|
+
|
|
24
|
+
- `bohr file list/upload --space` 已废弃,请改用路径前缀;兼容期内该参数只校验显式路径前缀且必须与其匹配,不能再为 `file list` 补全无前缀路径。`file upload` 的无前缀远端路径会暂时补全并输出迁移告警。
|
|
25
|
+
|
|
18
26
|
## [2.6.18] - 2026-08-13
|
|
19
27
|
|
|
20
28
|
### 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.19-preview.597",
|
|
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-
|
|
32
|
-
"@dptech-corp/bohr-cli-darwin-
|
|
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.19-preview.597",
|
|
32
|
+
"@dptech-corp/bohr-cli-darwin-arm64": "2.6.19-preview.597",
|
|
33
|
+
"@dptech-corp/bohr-cli-linux-amd64": "2.6.19-preview.597",
|
|
34
|
+
"@dptech-corp/bohr-cli-linux-arm64": "2.6.19-preview.597",
|
|
35
|
+
"@dptech-corp/bohr-cli-windows-amd64": "2.6.19-preview.597",
|
|
36
|
+
"@dptech-corp/bohr-cli-windows-arm64": "2.6.19-preview.597"
|
|
37
37
|
}
|
|
38
38
|
}
|