chore(llm-security): v7.8.2 — security patch release

Bumps package.json, .claude-plugin/plugin.json and the README badge to
7.8.2; adds the release entry to CHANGELOG.md, docs/version-history.md,
the README recent-versions table and the CLAUDE.md highlights block.

Also fixes test pollution introduced with the ide-extension regression
suite: its temp roots used an `llmsec-jb-plugin-` prefix, and
jetbrains-parser.test.mjs asserts globally that no `llmsec-jb-*`
directory survives anywhere in tmpdir. The shared prefix made that
assertion fail depending on test order — it passed on the first full run
and failed on the next. Prefix is now `llmsec-nullmanifest-`.

npm test: 1901/1901 green, three consecutive runs.

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Claude-Session: https://claude.ai/code/session_01TcQyMTQfyrsAapaCMPxTtQ
This commit is contained in:
Kjell Tore Guttormsen 2026-07-18 09:33:40 +02:00
commit f4c65070ff
7 changed files with 146 additions and 6 deletions

View file

@ -23,7 +23,10 @@ after(async () => {
});
async function makePluginRoot(name) {
const root = await mkdtemp(join(tmpdir(), 'llmsec-jb-plugin-'));
// Prefix must NOT start with `llmsec-jb-`: jetbrains-parser.test.mjs asserts
// that no `llmsec-jb-*` directory survives anywhere in tmpdir, and that
// assertion is global, so a shared prefix collides depending on test order.
const root = await mkdtemp(join(tmpdir(), 'llmsec-nullmanifest-'));
created.push(root);
const dir = join(root, name);
await mkdir(dir, { recursive: true });