mjolnir-qa 1.0.3 → 1.0.4
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/dist/cli.d.mts +1 -1
- package/dist/cli.mjs +2 -2
- package/dist/mcp/stdio.mjs +2 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,12 @@ Rule behavior changes (new rules, FP-rate changes against the corpus,
|
|
|
9
9
|
severity changes) are first-class entries here — rule IDs are immutable
|
|
10
10
|
once shipped, so this file is the record of what changed between versions.
|
|
11
11
|
|
|
12
|
+
## [1.0.4] — 2026-09-10
|
|
13
|
+
|
|
14
|
+
### Changes since 1
|
|
15
|
+
|
|
16
|
+
- P15: adversarial suites — parser fuzz, determinism soak, bench advisory CI (#72)
|
|
17
|
+
|
|
12
18
|
## [1.0.3] — 2026-09-10
|
|
13
19
|
|
|
14
20
|
### Changes since 1
|
package/dist/cli.d.mts
CHANGED
|
@@ -880,7 +880,7 @@ declare const runScan: typeof runScan$1, buildUniversalRules: typeof buildUniver
|
|
|
880
880
|
* `scripts/sync-sarif-version.cjs` on release and guarded by
|
|
881
881
|
* `tests/version-consistency.spec.ts` locally.
|
|
882
882
|
*/
|
|
883
|
-
declare const CLI_VERSION = "1.0.
|
|
883
|
+
declare const CLI_VERSION = "1.0.4";
|
|
884
884
|
/** A usage-error detail: the offending token, when one exists. */
|
|
885
885
|
interface UsageErrorDetail {
|
|
886
886
|
/** The unknown flag or rejected value (e.g. `--nope`, `loud`). */
|
package/dist/cli.mjs
CHANGED
|
@@ -13254,7 +13254,7 @@ function renderSarif(result, repoRootUri) {
|
|
|
13254
13254
|
tool: { driver: {
|
|
13255
13255
|
name: "Mjölnir",
|
|
13256
13256
|
informationUri: "https://github.com/Sergey-Bar/Mjolnir",
|
|
13257
|
-
version: "1.0.
|
|
13257
|
+
version: "1.0.4",
|
|
13258
13258
|
rules: [...rules.values()].map((r) => {
|
|
13259
13259
|
const meta = RULES.find((x) => x.id === r.id);
|
|
13260
13260
|
return {
|
|
@@ -19711,7 +19711,7 @@ const { runScan, buildUniversalRules, fallbackWorkspace, pathMatchesGlob, isVali
|
|
|
19711
19711
|
* `scripts/sync-sarif-version.cjs` on release and guarded by
|
|
19712
19712
|
* `tests/version-consistency.spec.ts` locally.
|
|
19713
19713
|
*/
|
|
19714
|
-
const CLI_VERSION = "1.0.
|
|
19714
|
+
const CLI_VERSION = "1.0.4";
|
|
19715
19715
|
function parseArgs(argv, onError) {
|
|
19716
19716
|
const args = {
|
|
19717
19717
|
target: ".",
|
package/dist/mcp/stdio.mjs
CHANGED
|
@@ -13253,7 +13253,7 @@ function renderSarif(result, repoRootUri) {
|
|
|
13253
13253
|
tool: { driver: {
|
|
13254
13254
|
name: "Mjölnir",
|
|
13255
13255
|
informationUri: "https://github.com/Sergey-Bar/Mjolnir",
|
|
13256
|
-
version: "1.0.
|
|
13256
|
+
version: "1.0.4",
|
|
13257
13257
|
rules: [...rules.values()].map((r) => {
|
|
13258
13258
|
const meta = RULES.find((x) => x.id === r.id);
|
|
13259
13259
|
return {
|
|
@@ -19286,7 +19286,7 @@ const { runScan, buildUniversalRules, fallbackWorkspace, pathMatchesGlob, isVali
|
|
|
19286
19286
|
* `scripts/sync-sarif-version.cjs` on release and guarded by
|
|
19287
19287
|
* `tests/version-consistency.spec.ts` locally.
|
|
19288
19288
|
*/
|
|
19289
|
-
const CLI_VERSION = "1.0.
|
|
19289
|
+
const CLI_VERSION = "1.0.4";
|
|
19290
19290
|
function parseArgs(argv, onError) {
|
|
19291
19291
|
const args = {
|
|
19292
19292
|
target: ".",
|
package/package.json
CHANGED