dsh-research-report 0.3.11 → 0.3.12

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.3.12] - 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.3.11] - 2026-09-18
9
18
 
10
19
  ### Added
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-research-report",
3
- "version": "0.3.11",
3
+ "version": "0.3.12",
4
4
  "description": "Verifiable research-report engine for DeepSeek Harness: a content-addressed evidence ledger (claim 閳?snapshot binding, tamper-evident) plus versioned sealed reports where every claim carries a verification verdict and the manifest hash seals the directory. Retrieval orchestration reuses the official ctx.web / ctx.jobs seams 閳?no deep-research loop.",
5
5
  "author": "dsh-research-report contributors",
6
6
  "repository": {
@@ -156,6 +156,7 @@
156
156
  "lint": "oxlint",
157
157
  "prepare": "node scripts/prepare.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
  "verify:readme-sync": "node scripts/check-readme-sync.mjs",
161
162
  "verify:frozen-contract": "node scripts/verify-frozen-contract.mjs",