dsh-dlp 0.8.0 → 0.8.2
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/README.md +1 -1
- package/lib/index.js +6 -1
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -76,7 +76,7 @@ dsh --profile <name> --dump-config # the dsh-dlp row should appear
|
|
|
76
76
|
|
|
77
77
|
Any harness from `0.1.0-rc.6` onwards in the `0.1.x` line works, prereleases included. CI drives
|
|
78
78
|
the end-to-end suite against every published rc the peer ranges admit — `0.1.0-rc.6`, `rc.7`,
|
|
79
|
-
`rc.8`, `0.1.1-rc.1`, `0.1.1-rc.2
|
|
79
|
+
`rc.8`, `0.1.1-rc.1`, `0.1.1-rc.2`. The `0.1.2` prerelease line is watched by a non-blocking job
|
|
80
80
|
line without running it end to end.
|
|
81
81
|
|
|
82
82
|
Pin `@deepseek-ai/dsh-headless` explicitly — its npm `latest` tag still points at `0.0.1-rc.1`.
|
package/lib/index.js
CHANGED
|
@@ -397,6 +397,11 @@ export function apply(ctx, config) {
|
|
|
397
397
|
});
|
|
398
398
|
}
|
|
399
399
|
return redacted.record;
|
|
400
|
-
|
|
400
|
+
// Prepended for the reason the other two seams are: a listener that
|
|
401
|
+
// returns without calling `next()` deletes every listener behind it, and
|
|
402
|
+
// this one is the only thing standing between an exported telemetry
|
|
403
|
+
// record and the wire. Best-effort, as at the mutation snapshot: another
|
|
404
|
+
// plugin registering later with the same option lands ahead again.
|
|
405
|
+
}, { prepend: true });
|
|
401
406
|
}
|
|
402
407
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsh-dlp",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.2",
|
|
4
4
|
"description": "Data-loss-prevention plugin for DeepSeek Harness: a non-configurable tool guard floor, tool-result redaction, and fail-closed telemetry redaction",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Ivan Tyshchenko <nsof@protonmail.com>",
|
|
@@ -51,10 +51,10 @@
|
|
|
51
51
|
},
|
|
52
52
|
"peerDependencies": {
|
|
53
53
|
"@deepseek-ai/cordis": "^4.0.1",
|
|
54
|
-
"@deepseek-ai/dsh-llm": "
|
|
55
|
-
"@deepseek-ai/dsh-session": "
|
|
56
|
-
"@deepseek-ai/dsh-session-telemetry": "
|
|
57
|
-
"@deepseek-ai/dsh-tools": "
|
|
54
|
+
"@deepseek-ai/dsh-llm": "^0.1.0-rc.6 || ~0.1.1-rc.0",
|
|
55
|
+
"@deepseek-ai/dsh-session": "^0.1.0-rc.6 || ~0.1.1-rc.0",
|
|
56
|
+
"@deepseek-ai/dsh-session-telemetry": "^0.1.0-rc.6 || ~0.1.1-rc.0",
|
|
57
|
+
"@deepseek-ai/dsh-tools": "^0.1.0-rc.6 || ~0.1.1-rc.0"
|
|
58
58
|
},
|
|
59
59
|
"dependencies": {
|
|
60
60
|
"@deepseek-ai/schemastery": "3.18.1",
|