dsh-fast 0.2.5 → 0.2.6
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 +6 -0
- package/cordis.patch.yml +6 -13
- package/lib/index.js +1 -1
- package/lib/types/version.d.ts +1 -1
- package/lib/types/version.js +1 -1
- package/package.json +1 -1
- package/src/version.ts +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -5,6 +5,12 @@ All notable changes to this project are documented in this file.
|
|
|
5
5
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/),
|
|
6
6
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
7
7
|
|
|
8
|
+
## [0.2.6] - 2026-09-04
|
|
9
|
+
|
|
10
|
+
### Fixed
|
|
11
|
+
|
|
12
|
+
- Remove the `storage` / `storage-json` / `storage-domain` rows from the bundle patch: the shipped profiles compose that stack through `dsh-base`, so the inserted rows collided with the same ids and made the profile refuse to boot (`duplicate loader entry id: storage`). The patch now mounts only the plugin row; bare profiles compose the storage stack themselves.
|
|
13
|
+
|
|
8
14
|
## [0.2.5] - 2026-09-04
|
|
9
15
|
|
|
10
16
|
### Changed
|
package/cordis.patch.yml
CHANGED
|
@@ -3,20 +3,13 @@
|
|
|
3
3
|
# Every key below is a Config field (Schemastery schema); invalid values fail
|
|
4
4
|
# the profile load loudly. See README.md "Configuration" for the full table.
|
|
5
5
|
# The plugin is read-only and safe, so it defaults to enabled.
|
|
6
|
+
#
|
|
7
|
+
# The storage seam (storage / storage-json / storage-domain) is NOT inserted
|
|
8
|
+
# here: every shipped dsh profile composes it through dsh-base, and inserting
|
|
9
|
+
# the same ids again makes the profile refuse to boot with
|
|
10
|
+
# `duplicate loader entry id: storage`. Bare profiles must compose the
|
|
11
|
+
# storage stack themselves.
|
|
6
12
|
- insert:
|
|
7
|
-
- id: storage
|
|
8
|
-
name: '@deepseek-ai/dsh-storage'
|
|
9
|
-
|
|
10
|
-
- id: storage-json
|
|
11
|
-
name: '@deepseek-ai/dsh-storage-json'
|
|
12
|
-
config:
|
|
13
|
-
root: !!js dshHomePath('storages')
|
|
14
|
-
|
|
15
|
-
- id: storage-domain
|
|
16
|
-
name: '@deepseek-ai/dsh-storage-domain'
|
|
17
|
-
config:
|
|
18
|
-
backend: json
|
|
19
|
-
|
|
20
13
|
- id: dsh-fast
|
|
21
14
|
name: dsh-fast
|
|
22
15
|
config:
|
package/lib/index.js
CHANGED
|
@@ -691,7 +691,7 @@ function appendSample(history, sample, maxSamples) {
|
|
|
691
691
|
//#endregion
|
|
692
692
|
//#region src/version.ts
|
|
693
693
|
/** Single-source plugin version, bumped by `scripts/release.mjs`. @module dsh-fast/version */
|
|
694
|
-
const VERSION = "0.2.
|
|
694
|
+
const VERSION = "0.2.6";
|
|
695
695
|
//#endregion
|
|
696
696
|
//#region src/index.ts
|
|
697
697
|
const name = "fast";
|
package/lib/types/version.d.ts
CHANGED
package/lib/types/version.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-fast",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.6",
|
|
4
4
|
"description": "Read-only performance diagnostics for DeepSeek Harness: session load (open/restore) timing, spill-hit counts, compaction count and trigger, context-injection volume (AGENTS.md/skills/tool-schema token share), and LLM cache hit rate 閳?surfaced via the /fast command and the fast_report tool, persisted as reconstructable fast/* session events with async sampling off the model path.",
|
|
5
5
|
"author": "dsh-fast contributors",
|
|
6
6
|
"repository": {
|
package/src/version.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
/** Single-source plugin version, bumped by `scripts/release.mjs`. @module dsh-fast/version */
|
|
2
|
-
export const VERSION = '0.2.
|
|
2
|
+
export const VERSION = '0.2.6'
|