mjolnir-qa 1.0.0 → 1.0.1

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,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.1] — 2026-09-09
13
+
14
+ ### Changes since 0
15
+
16
+ - chore(release): v1.0.0 — Core Certification cut (WI-16)
17
+
12
18
  ## [1.0.0] — 2026-09-09
13
19
 
14
20
  ### Added
package/dist/cli.d.mts CHANGED
@@ -826,7 +826,7 @@ declare const runScan: typeof runScan$1, buildUniversalRules: typeof buildUniver
826
826
  * `scripts/sync-sarif-version.cjs` on release and guarded by
827
827
  * `tests/version-consistency.spec.ts` locally.
828
828
  */
829
- declare const CLI_VERSION = "1.0.0";
829
+ declare const CLI_VERSION = "1.0.1";
830
830
  /** A usage-error detail: the offending token, when one exists. */
831
831
  interface UsageErrorDetail {
832
832
  /** The unknown flag or rejected value (e.g. `--nope`, `loud`). */
package/dist/cli.mjs CHANGED
@@ -12753,7 +12753,7 @@ function renderSarif(result, repoRootUri) {
12753
12753
  tool: { driver: {
12754
12754
  name: "Mjölnir",
12755
12755
  informationUri: "https://github.com/Sergey-Bar/Mjolnir",
12756
- version: "1.0.0",
12756
+ version: "1.0.1",
12757
12757
  rules: [...rules.values()].map((r) => {
12758
12758
  const meta = RULES.find((x) => x.id === r.id);
12759
12759
  return {
@@ -19157,7 +19157,7 @@ const { runScan, buildUniversalRules, fallbackWorkspace, pathMatchesGlob, isVali
19157
19157
  * `scripts/sync-sarif-version.cjs` on release and guarded by
19158
19158
  * `tests/version-consistency.spec.ts` locally.
19159
19159
  */
19160
- const CLI_VERSION = "1.0.0";
19160
+ const CLI_VERSION = "1.0.1";
19161
19161
  function parseArgs(argv, onError) {
19162
19162
  const args = {
19163
19163
  target: ".",
@@ -12752,7 +12752,7 @@ function renderSarif(result, repoRootUri) {
12752
12752
  tool: { driver: {
12753
12753
  name: "Mjölnir",
12754
12754
  informationUri: "https://github.com/Sergey-Bar/Mjolnir",
12755
- version: "1.0.0",
12755
+ version: "1.0.1",
12756
12756
  rules: [...rules.values()].map((r) => {
12757
12757
  const meta = RULES.find((x) => x.id === r.id);
12758
12758
  return {
@@ -18732,7 +18732,7 @@ const { runScan, buildUniversalRules, fallbackWorkspace, pathMatchesGlob, isVali
18732
18732
  * `scripts/sync-sarif-version.cjs` on release and guarded by
18733
18733
  * `tests/version-consistency.spec.ts` locally.
18734
18734
  */
18735
- const CLI_VERSION = "1.0.0";
18735
+ const CLI_VERSION = "1.0.1";
18736
18736
  function parseArgs(argv, onError) {
18737
18737
  const args = {
18738
18738
  target: ".",
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mjolnir-qa",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
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": {