@dptech-corp/bohr-cli 2.6.13 → 2.6.15
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 +16 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,22 @@
|
|
|
15
15
|
|
|
16
16
|
## [Unreleased]
|
|
17
17
|
|
|
18
|
+
## [2.6.15] - 2026-08-13
|
|
19
|
+
|
|
20
|
+
### Breaking
|
|
21
|
+
|
|
22
|
+
- **`bohr agents scimaster review-paper submit` 移除 `--type` 参数**。改前:CLI 暴露 `full`/`light` 两种审稿类型,但线上已关闭 `light`,传入 `--type light` 只会返回 HTTP 422 且不创建任务。改后:命令不再暴露审稿类型选择,并在内部继续按现有后端协议提交受支持的审稿任务;调用方需删除 `--type full`,`--type light` 因功能下线没有替代用法。
|
|
23
|
+
|
|
24
|
+
### Changed
|
|
25
|
+
|
|
26
|
+
- SciMaster 文档补充 `bohr paper search`、`bohr agents scimaster search-paper` 与 `review-paper` 的选择说明,区分普通论文库筛选、异步智能检索和论文审稿。
|
|
27
|
+
|
|
28
|
+
## [2.6.14] - 2026-08-12
|
|
29
|
+
|
|
30
|
+
### Fixed
|
|
31
|
+
|
|
32
|
+
- `bohr batchjob download` 在缺少 `--dest` 或目标目录已存在时现在会返回标准错误信封和非零退出码;目录冲突使用稳定错误码 `BATCH_JOB_RESULT_DESTINATION_EXISTS`,两种错误都会给出指向可用目录且可安全复制执行的命令提示,不再退化为纯文本错误。
|
|
33
|
+
|
|
18
34
|
## [2.6.13] - 2026-08-12
|
|
19
35
|
|
|
20
36
|
### Fixed
|
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.15",
|
|
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-arm64": "2.6.
|
|
32
|
-
"@dptech-corp/bohr-cli-darwin-amd64": "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-arm64": "2.6.15",
|
|
32
|
+
"@dptech-corp/bohr-cli-darwin-amd64": "2.6.15",
|
|
33
|
+
"@dptech-corp/bohr-cli-linux-amd64": "2.6.15",
|
|
34
|
+
"@dptech-corp/bohr-cli-linux-arm64": "2.6.15",
|
|
35
|
+
"@dptech-corp/bohr-cli-windows-amd64": "2.6.15",
|
|
36
|
+
"@dptech-corp/bohr-cli-windows-arm64": "2.6.15"
|
|
37
37
|
}
|
|
38
38
|
}
|