mjolnir-qa 0.5.7 → 0.5.8

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
@@ -74,6 +74,13 @@ scan`. Unknown categories are a usage error (exit 10).
74
74
  - help registry gained `why`, `handoff`, `install` and the new flags;
75
75
  site/reference/cli.md documents the handoff trust model.
76
76
 
77
+ ## [0.5.8] — 2026-09-06
78
+
79
+ ### Changes since 0.5.7
80
+
81
+ - Merge pull request #41 from Sergey-Bar/eng/mcp-transport-2.2
82
+ - feat: MCP stdio transport — pure transport over the machine contract (blueprint §21, Phase 4)
83
+
77
84
  ## [0.5.7] — 2026-09-06
78
85
 
79
86
  ### Changes since 0.5.6
package/dist/cli.d.mts CHANGED
@@ -699,7 +699,7 @@ declare const runScan: typeof runScan$1, buildUniversalRules: typeof buildUniver
699
699
  * `scripts/sync-sarif-version.cjs` on release and guarded by
700
700
  * `tests/version-consistency.spec.ts` locally.
701
701
  */
702
- declare const CLI_VERSION = "0.5.7";
702
+ declare const CLI_VERSION = "0.5.8";
703
703
  /** A usage-error detail: the offending token, when one exists. */
704
704
  interface UsageErrorDetail {
705
705
  /** The unknown flag or rejected value (e.g. `--nope`, `loud`). */
package/dist/cli.mjs CHANGED
@@ -12575,7 +12575,7 @@ function renderSarif(result, repoRootUri) {
12575
12575
  tool: { driver: {
12576
12576
  name: "Mjölnir",
12577
12577
  informationUri: "https://github.com/Sergey-Bar/Mjolnir",
12578
- version: "0.5.7",
12578
+ version: "0.5.8",
12579
12579
  rules: [...rules.values()].map((r) => {
12580
12580
  const meta = RULES.find((x) => x.id === r.id);
12581
12581
  return {
@@ -17000,7 +17000,7 @@ const { runScan, buildUniversalRules, fallbackWorkspace, pathMatchesGlob, isVali
17000
17000
  * `scripts/sync-sarif-version.cjs` on release and guarded by
17001
17001
  * `tests/version-consistency.spec.ts` locally.
17002
17002
  */
17003
- const CLI_VERSION = "0.5.7";
17003
+ const CLI_VERSION = "0.5.8";
17004
17004
  function parseArgs(argv, onError) {
17005
17005
  const args = {
17006
17006
  target: ".",
@@ -0,0 +1 @@
1
+ export {}