mjolnir-qa 1.0.3 → 1.0.5

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
@@ -9,6 +9,18 @@ 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.5] — 2026-09-10
13
+
14
+ ### Changes since 1
15
+
16
+ - chore: resync managed surface stamp to v1.0.4
17
+
18
+ ## [1.0.4] — 2026-09-10
19
+
20
+ ### Changes since 1
21
+
22
+ - P15: adversarial suites — parser fuzz, determinism soak, bench advisory CI (#72)
23
+
12
24
  ## [1.0.3] — 2026-09-10
13
25
 
14
26
  ### 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.3";
883
+ declare const CLI_VERSION = "1.0.5";
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.3",
13257
+ version: "1.0.5",
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.3";
19714
+ const CLI_VERSION = "1.0.5";
19715
19715
  function parseArgs(argv, onError) {
19716
19716
  const args = {
19717
19717
  target: ".",
@@ -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.3",
13256
+ version: "1.0.5",
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.3";
19289
+ const CLI_VERSION = "1.0.5";
19290
19290
  function parseArgs(argv, onError) {
19291
19291
  const args = {
19292
19292
  target: ".",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mjolnir-qa",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "Mjölnir — the Verification Trust Engine for QA. Audits test suites and CI pipelines, reports a worthiness score and prioritized findings.",
5
5
  "type": "module",
6
6
  "engines": {