@cofy-x/dsh-console 0.1.0-alpha.11 → 0.1.0-alpha.13
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/README.md +1 -1
- package/dist/CHANGELOG.md +24 -1
- package/dist/{chunk-6QXII7F4.js → chunk-QOXF5JRJ.js} +950 -510
- package/dist/dsh/index.js +1 -1
- package/dist/index.js +1 -1
- package/package.json +49 -44
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@
|
|
|
6
6
|
|
|
7
7
|
## Install
|
|
8
8
|
|
|
9
|
-
DSH Console requires Node.js 24 or newer and a working DSH provider configuration. This release is verified
|
|
9
|
+
DSH Console requires Node.js 24 or newer, DeepSeek Harness `0.1.5-rc.1`, and a working DSH provider configuration. This release is verified against the published package and its audited source commit; install DSH normally without pinning the command to a version.
|
|
10
10
|
|
|
11
11
|
```sh
|
|
12
12
|
npm install --global @deepseek-ai/dsh @cofy-x/dsh-console
|
package/dist/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,27 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [0.1.0-alpha.13] - 2026-09-11
|
|
10
|
+
|
|
11
|
+
### Changed
|
|
12
|
+
|
|
13
|
+
- Require DeepSeek Harness `0.1.5-rc.1`, use its canonical live and durable Assistant stream contracts directly, and retire the pre-v2 `assistant/chunk` compatibility path.
|
|
14
|
+
- Follow Harness's `deepseek-flash` (`DeepSeek-V4.1-Flash`) new-session default and its declared text, image, and in-history system-prompt capabilities without copying model aliases or catalog policy into Console.
|
|
15
|
+
|
|
16
|
+
### Security
|
|
17
|
+
|
|
18
|
+
- Update Astro and Sharp and enforce patched Hono, js-yaml, Sharp, and smol-toml transitive versions to remediate dependency advisories.
|
|
19
|
+
|
|
20
|
+
## [0.1.0-alpha.12] - 2026-09-08
|
|
21
|
+
|
|
22
|
+
### Added
|
|
23
|
+
|
|
24
|
+
- Add a DSH-native Plan mode indicator and `Shift+Tab` toggle that preserves the selected permission preset, including deployment-configured presets.
|
|
25
|
+
|
|
26
|
+
### Changed
|
|
27
|
+
|
|
28
|
+
- Verify the Console host through DeepSeek Harness `0.1.3-alpha.2`, adapting live and durable Assistant streams across Session format v2 while retaining the npm-default `0.1.1-rc.2` development baseline.
|
|
29
|
+
|
|
9
30
|
## [0.1.0-alpha.11] - 2026-09-04
|
|
10
31
|
|
|
11
32
|
### Added
|
|
@@ -137,7 +158,9 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
|
137
158
|
- Keep debug diagnostics aligned within the existing footer row and preserve structured logs in the debug console.
|
|
138
159
|
- Address initial CodeQL findings, dependency advisories, CI concurrency issues, and release build ordering.
|
|
139
160
|
|
|
140
|
-
[Unreleased]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.
|
|
161
|
+
[Unreleased]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.13...HEAD
|
|
162
|
+
[0.1.0-alpha.13]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.12...v0.1.0-alpha.13
|
|
163
|
+
[0.1.0-alpha.12]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.11...v0.1.0-alpha.12
|
|
141
164
|
[0.1.0-alpha.11]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.10...v0.1.0-alpha.11
|
|
142
165
|
[0.1.0-alpha.10]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.9...v0.1.0-alpha.10
|
|
143
166
|
[0.1.0-alpha.9]: https://github.com/cofy-x/dsh-console/compare/v0.1.0-alpha.8...v0.1.0-alpha.9
|