dsh-fast 0.2.13 → 0.2.14

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 CHANGED
@@ -5,6 +5,15 @@ 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.14] - 2026-09-19
9
+
10
+ ### Added
11
+
12
+ - `pnpm run check:lockfile` (`scripts/check-lockfile-drift.mjs`) fails fast when `package.json` and `pnpm-lock.yaml` disagree; the probe is read-only and the documented checks chain runs it alongside the other gates.
13
+
14
+ ### Changed
15
+
16
+ - The release workflow now publishes through **npm trusted publishing** (OIDC) instead of the long-lived `NPM_TOKEN` secret: `setup-node` no longer sets `registry-url` (its empty `_authToken` line made the registry answer 404 on PUT), npm is upgraded to >= 11.5.1 before publishing, and the "NPM_TOKEN is not set -> skip" guard is gone so a missing publisher cannot turn a release into a silent no-op.
8
17
  ## [0.2.13] - 2026-09-18
9
18
 
10
19
  ### Changed
package/lib/index.js CHANGED
@@ -784,7 +784,7 @@ function createOnceNotifier(sink) {
784
784
  //#endregion
785
785
  //#region src/version.ts
786
786
  /** Single-source plugin version, bumped by `scripts/release.mjs`. @module dsh-fast/version */
787
- const VERSION = "0.2.13";
787
+ const VERSION = "0.2.14";
788
788
  //#endregion
789
789
  //#region src/index.ts
790
790
  const name = "fast";
@@ -1,3 +1,3 @@
1
1
  /** Single-source plugin version, bumped by `scripts/release.mjs`. @module dsh-fast/version */
2
- export declare const VERSION = "0.2.13";
2
+ export declare const VERSION = "0.2.14";
3
3
  //# sourceMappingURL=version.d.ts.map
@@ -1,3 +1,3 @@
1
1
  /** Single-source plugin version, bumped by `scripts/release.mjs`. @module dsh-fast/version */
2
- export const VERSION = '0.2.13';
2
+ export const VERSION = '0.2.14';
3
3
  //# sourceMappingURL=version.js.map
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-fast",
3
- "version": "0.2.13",
3
+ "version": "0.2.14",
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": {
@@ -149,6 +149,7 @@
149
149
  "lint": "oxlint",
150
150
  "prepare": "node scripts/prepare.mjs",
151
151
  "verify:self-contained": "node scripts/verify-self-contained.mjs",
152
+ "check:lockfile": "node scripts/check-lockfile-drift.mjs",
152
153
  "verify:artifacts": "node scripts/verify-artifacts.mjs",
153
154
  "verify:readme-sync": "node scripts/check-readme-sync.mjs",
154
155
  "pack:check": "node scripts/prepare.mjs && pnpm pack"
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.13'
2
+ export const VERSION = '0.2.14'