dsh-data-quality 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.
- package/CHANGELOG.md +9 -0
- package/lib/index.js +1 -1
- package/lib/types/version.d.ts +1 -1
- package/lib/types/version.js +1 -1
- package/package.json +2 -1
- package/src/version.ts +1 -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
|
### Fixed
|
package/lib/index.js
CHANGED
|
@@ -1172,7 +1172,7 @@ function computeAccuracy(stats, table, declaredSchema) {
|
|
|
1172
1172
|
* @module dsh-data-quality/version
|
|
1173
1173
|
*/
|
|
1174
1174
|
/** The package version reported in persisted reports. */
|
|
1175
|
-
const VERSION = "0.3.
|
|
1175
|
+
const VERSION = "0.3.12";
|
|
1176
1176
|
/**
|
|
1177
1177
|
* Version of the persisted report schema. Bump it whenever a report's
|
|
1178
1178
|
* canonical shape changes in a way old consumers cannot read (the durable
|
package/lib/types/version.d.ts
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @module dsh-data-quality/version
|
|
5
5
|
*/
|
|
6
6
|
/** The package version reported in persisted reports. */
|
|
7
|
-
export declare const VERSION = "0.3.
|
|
7
|
+
export declare const VERSION = "0.3.12";
|
|
8
8
|
/**
|
|
9
9
|
* Version of the persisted report schema. Bump it whenever a report's
|
|
10
10
|
* canonical shape changes in a way old consumers cannot read (the durable
|
package/lib/types/version.js
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
* @module dsh-data-quality/version
|
|
5
5
|
*/
|
|
6
6
|
/** The package version reported in persisted reports. */
|
|
7
|
-
export const VERSION = '0.3.
|
|
7
|
+
export const VERSION = '0.3.12';
|
|
8
8
|
/**
|
|
9
9
|
* Version of the persisted report schema. Bump it whenever a report's
|
|
10
10
|
* canonical shape changes in a way old consumers cannot read (the durable
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-data-quality",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.12",
|
|
4
4
|
"description": "Deterministic data profiling, cleaning, and verification for DeepSeek Harness: a ctx.dataQuality capability seam (Service Definition / local Provider / tool Consumers) with data_profile, data_clean, and data_verify model tools, a frozen cross-plugin verifyCitations contract, durable reports in a storage domain, and data-quality/* session events on hosts that support them.",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
@@ -139,6 +139,7 @@
|
|
|
139
139
|
"lint": "oxlint",
|
|
140
140
|
"prepare": "node scripts/prepare.mjs",
|
|
141
141
|
"verify:self-contained": "node scripts/verify-self-contained.mjs",
|
|
142
|
+
"check:lockfile": "node scripts/check-lockfile-drift.mjs",
|
|
142
143
|
"verify:artifacts": "node scripts/verify-artifacts.mjs",
|
|
143
144
|
"verify:readme-sync": "node scripts/check-readme-sync.mjs",
|
|
144
145
|
"pack:check": "node scripts/prepare.mjs && pnpm pack"
|