@dptech-corp/bohr-cli 2.6.64 → 2.6.65
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 +14 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -16,6 +16,20 @@
|
|
|
16
16
|
|
|
17
17
|
## [Unreleased]
|
|
18
18
|
|
|
19
|
+
## [2.6.65] - 2026-08-28
|
|
20
|
+
|
|
21
|
+
### Breaking
|
|
22
|
+
|
|
23
|
+
- **`project get` 改为只返回请求的那个项目**:原先任何 id 都返回全部项目且 `ok=true`,现改读 `data`,查不到报 `RESOURCE_NOT_FOUND`。
|
|
24
|
+
|
|
25
|
+
### Changed(内部,无用户面行为变化)
|
|
26
|
+
|
|
27
|
+
- 新增生产契约巡检:只读打生产,断言过滤参数真在过滤、空集与非空同型、不存在的目标必须报 not-found;并让 CI 保证带 tag 的测试文件编得过。
|
|
28
|
+
|
|
29
|
+
### Fixed
|
|
30
|
+
|
|
31
|
+
- **`job_group list` 命中为空时 `data` 由 `null` 改为 `[]`**:与非空时同型,`.data[]`、`.data | length` 不再在空结果上失败。
|
|
32
|
+
|
|
19
33
|
## [2.6.64] - 2026-08-28
|
|
20
34
|
|
|
21
35
|
### 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.65",
|
|
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.65",
|
|
36
|
+
"@dptech-corp/bohr-cli-darwin-amd64": "2.6.65",
|
|
37
|
+
"@dptech-corp/bohr-cli-linux-amd64": "2.6.65",
|
|
38
|
+
"@dptech-corp/bohr-cli-linux-arm64": "2.6.65",
|
|
39
|
+
"@dptech-corp/bohr-cli-windows-amd64": "2.6.65",
|
|
40
|
+
"@dptech-corp/bohr-cli-windows-arm64": "2.6.65"
|
|
41
41
|
}
|
|
42
42
|
}
|