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 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 storage stack rows mirror dsh-fast: the plugin injects `storageDomain`,
7
- # so a bare profile needs the hub + a JSON backend + the domain form mounted.
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.5";
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
@@ -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.5";
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
@@ -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.5';
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.5",
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",
package/src/version.ts CHANGED
@@ -5,7 +5,7 @@
5
5
  */
6
6
 
7
7
  /** The package version reported in persisted reports. */
8
- export const VERSION = '0.3.5'
8
+ export const VERSION = '0.3.6'
9
9
 
10
10
  /**
11
11
  * Version of the persisted report schema. Bump it whenever a report's