dsh-library 0.2.12 → 0.2.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +9 -0
  2. package/package.json +2 -1
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.13] - 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.12] - 2026-09-18
9
18
 
10
19
  ### Fixed
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-library",
3
- "version": "0.2.12",
3
+ "version": "0.2.13",
4
4
  "description": "Local document knowledge base for DeepSeek Harness: library_add/remove/list, hybrid semantic+keyword library_search with diversity re-ranking, relevance filtering and lost-in-the-middle avoidance, citation-aware injection, library_cite_check and library_diagnose —SQLite-backed index via the storage domain, local embedding, zero model downloads",
5
5
  "repository": {
6
6
  "type": "git",
@@ -156,6 +156,7 @@
156
156
  "lint": "oxlint",
157
157
  "check:readmes": "node scripts/check-readme-sync.mjs",
158
158
  "verify:self-contained": "node scripts/verify-self-contained.mjs",
159
+ "check:lockfile": "node scripts/check-lockfile-drift.mjs",
159
160
  "verify:artifacts": "node scripts/verify-artifacts.mjs"
160
161
  },
161
162
  "license": "Apache-2.0",