@dptech-corp/bohr-cli 2.6.51 → 2.6.54

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 +25 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -16,6 +16,31 @@
16
16
 
17
17
  ## [Unreleased]
18
18
 
19
+ ## [2.6.54] - 2026-08-26
20
+
21
+ ### Fixed
22
+
23
+ - **`image list` 支持翻页**:新增 `--page` 参数(默认 1),`--limit` 更名为 `--size`(默认 100,`--limit` 保留为隐藏别名),此前只能看到前 100 条。
24
+
25
+ ## [2.6.53] - 2026-08-26(未发布——版本号跳过)
26
+
27
+ v2.6.53 的 tag 流水线因测试未随改名更新而失败,受保护 tag 无法删除。改动实际随 2.6.54 发出。
28
+
29
+ ### Fixed
30
+
31
+ - **`image list` 支持翻页**:新增 `--page` 参数(默认 1),`--limit` 更名为 `--size`(默认 100,`--limit` 保留为隐藏别名),此前只能看到前 100 条。
32
+
33
+ ## [2.6.52] - 2026-08-26
34
+
35
+ ### Breaking
36
+
37
+ - **63 条命令不再静默忽略多余的位置参数**:改前 `job submit x.json` 丢掉文件名、交空作业并计费,ok=true、rc=0;改后报错 rc=1 并点名多余的词。值请改用 flag。
38
+
39
+ ### Fixed
40
+
41
+ - **数据集不存在不再显示 UNKNOWN**:识别 `100003/100004` 为权限不足或资源不存在。
42
+ - **不收位置参数的命令报错不再说 `unknown command`**:这些命令没有子命令,那句话把人往「子命令拼错了」引。现在明说不收位置参数、多给了哪几个词,并指向该命令的 `--help`。
43
+
19
44
  ## [2.6.51] - 2026-08-25
20
45
 
21
46
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dptech-corp/bohr-cli",
3
- "version": "2.6.51",
3
+ "version": "2.6.54",
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.51",
36
- "@dptech-corp/bohr-cli-darwin-amd64": "2.6.51",
37
- "@dptech-corp/bohr-cli-linux-amd64": "2.6.51",
38
- "@dptech-corp/bohr-cli-linux-arm64": "2.6.51",
39
- "@dptech-corp/bohr-cli-windows-amd64": "2.6.51",
40
- "@dptech-corp/bohr-cli-windows-arm64": "2.6.51"
35
+ "@dptech-corp/bohr-cli-darwin-arm64": "2.6.54",
36
+ "@dptech-corp/bohr-cli-darwin-amd64": "2.6.54",
37
+ "@dptech-corp/bohr-cli-linux-amd64": "2.6.54",
38
+ "@dptech-corp/bohr-cli-linux-arm64": "2.6.54",
39
+ "@dptech-corp/bohr-cli-windows-amd64": "2.6.54",
40
+ "@dptech-corp/bohr-cli-windows-arm64": "2.6.54"
41
41
  }
42
42
  }