@dptech-corp/bohr-cli 2.6.9 → 2.6.11
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 +17 -0
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -15,6 +15,23 @@
|
|
|
15
15
|
|
|
16
16
|
## [Unreleased]
|
|
17
17
|
|
|
18
|
+
## [2.6.11] - 2026-08-12
|
|
19
|
+
|
|
20
|
+
### Fixed
|
|
21
|
+
|
|
22
|
+
- `bohr pdf result` 现在将生产 UniParser 返回的 `status=error` 与 `status=failed` 一并映射为 `PARSE_FAILED`,保留失败描述并返回非零退出码,不再把加密或不受支持 PDF 的解析失败报告为成功。
|
|
23
|
+
- `bohr sandbox create`、`bohr sandbox +run`、`bohr sandbox image build` 和 `bohr sandbox image commit` 的计费确认现在按真实的余额扣费口径提示,不再误称优先使用光子;其他资源和按次命令的既有提示保持不变。
|
|
24
|
+
|
|
25
|
+
## [2.6.10] - 2026-08-12
|
|
26
|
+
|
|
27
|
+
### Added
|
|
28
|
+
|
|
29
|
+
- `bohr pdf result` 新增 `--objects`、`--pages-dict`、`--pages-tree` 结构化结果开关和 `--formatted plain|markup|markdown|latex|html` 格式化输出;图表、图例、坐标及层级结构保持 UniParser 原始字段,不二次推断数值。
|
|
30
|
+
|
|
31
|
+
### Fixed
|
|
32
|
+
|
|
33
|
+
- `bohr pdf result` 的 human 输出改用 UniParser 实际返回的 `token/status/content/proc_page/total_page` 并汇总结构化块;上游 `status=failed` 现在返回 `PARSE_FAILED` 和非零退出码。
|
|
34
|
+
|
|
18
35
|
## [2.6.9] - 2026-08-12
|
|
19
36
|
|
|
20
37
|
### 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.11",
|
|
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.11",
|
|
32
|
+
"@dptech-corp/bohr-cli-darwin-amd64": "2.6.11",
|
|
33
|
+
"@dptech-corp/bohr-cli-linux-amd64": "2.6.11",
|
|
34
|
+
"@dptech-corp/bohr-cli-linux-arm64": "2.6.11",
|
|
35
|
+
"@dptech-corp/bohr-cli-windows-amd64": "2.6.11",
|
|
36
|
+
"@dptech-corp/bohr-cli-windows-arm64": "2.6.11"
|
|
37
37
|
}
|
|
38
38
|
}
|