dsh-dlp 0.8.1 → 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/lib/index.js +6 -1
- package/package.json +1 -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>",
|