dsh-data-quality 0.3.5 → 0.3.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 +4 -15
- 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.3.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.3.5] - 2026-09-04
|
|
9
15
|
|
|
10
16
|
### Changed
|
package/cordis.patch.yml
CHANGED
|
@@ -3,22 +3,11 @@
|
|
|
3
3
|
#
|
|
4
4
|
# Every key below is a Config field (Schemastery schema); invalid values fail
|
|
5
5
|
# the profile load loudly. See README.md "Configuration" for the full table.
|
|
6
|
-
# The
|
|
7
|
-
#
|
|
6
|
+
# The shipped profiles (web/headless/sdk/acp) compose the storage stack
|
|
7
|
+
# (storage + storage-json + storage-domain) through the dsh-base bundle, so
|
|
8
|
+
# this patch mounts only the plugin row. A bare profile without dsh-base must
|
|
9
|
+
# compose the storage stack itself.
|
|
8
10
|
- insert:
|
|
9
|
-
- id: storage
|
|
10
|
-
name: '@deepseek-ai/dsh-storage'
|
|
11
|
-
|
|
12
|
-
- id: storage-json
|
|
13
|
-
name: '@deepseek-ai/dsh-storage-json'
|
|
14
|
-
config:
|
|
15
|
-
root: !!js dshHomePath('storages')
|
|
16
|
-
|
|
17
|
-
- id: storage-domain
|
|
18
|
-
name: '@deepseek-ai/dsh-storage-domain'
|
|
19
|
-
config:
|
|
20
|
-
backend: json
|
|
21
|
-
|
|
22
11
|
- id: dsh-data-quality
|
|
23
12
|
name: dsh-data-quality
|
|
24
13
|
config:
|
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.6";
|
|
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.6";
|
|
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.6';
|
|
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.6",
|
|
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",
|