memento-mori-jester 0.1.29 → 0.1.30
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 +5 -0
- package/ROADMAP.md +1 -0
- package/dist/cli.js +1 -1
- package/docs/GITHUB_ACTIONS.md +3 -3
- package/docs/RELEASE_NOTES_v0.1.30.md +27 -0
- package/examples/github-action.yml +1 -1
- package/examples/github-code-scanning.yml +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,11 @@ All notable changes to Memento Mori Jester are tracked here.
|
|
|
4
4
|
|
|
5
5
|
## Unreleased
|
|
6
6
|
|
|
7
|
+
## 0.1.30
|
|
8
|
+
|
|
9
|
+
- Updated GitHub workflows, generated workflow examples, and the composite action to Node 24-era Actions versions.
|
|
10
|
+
- Removed Node 20 GitHub Actions deprecation warnings without changing CLI, review, SARIF, or summary behavior.
|
|
11
|
+
|
|
7
12
|
## 0.1.29
|
|
8
13
|
|
|
9
14
|
- Added GitHub Action job summaries with verdict, issue counts, rule hits, highest-severity issue, and next tuning commands.
|
package/ROADMAP.md
CHANGED
|
@@ -8,6 +8,7 @@ Memento Mori Jester is usable today as a CLI, MCP server, GitHub Action, and git
|
|
|
8
8
|
|
|
9
9
|
## Recently Shipped
|
|
10
10
|
|
|
11
|
+
- Node 24 GitHub Actions cleanup for CI, generated workflows, and the composite action.
|
|
11
12
|
- GitHub Action job summaries for readable PR/code-scanning run output.
|
|
12
13
|
- Rule-hit summaries for seeing which checks fired before tuning a noisy rule.
|
|
13
14
|
- False-positive tuning helper for deciding when and how to mute noisy rules.
|
package/dist/cli.js
CHANGED
package/docs/GITHUB_ACTIONS.md
CHANGED
|
@@ -37,7 +37,7 @@ jobs:
|
|
|
37
37
|
|
|
38
38
|
steps:
|
|
39
39
|
- name: Checkout
|
|
40
|
-
uses: actions/checkout@
|
|
40
|
+
uses: actions/checkout@v6
|
|
41
41
|
with:
|
|
42
42
|
fetch-depth: 0
|
|
43
43
|
|
|
@@ -70,7 +70,7 @@ jobs:
|
|
|
70
70
|
|
|
71
71
|
steps:
|
|
72
72
|
- name: Checkout
|
|
73
|
-
uses: actions/checkout@
|
|
73
|
+
uses: actions/checkout@v6
|
|
74
74
|
with:
|
|
75
75
|
fetch-depth: 0
|
|
76
76
|
|
|
@@ -96,7 +96,7 @@ jobs:
|
|
|
96
96
|
|
|
97
97
|
steps:
|
|
98
98
|
- name: Checkout
|
|
99
|
-
uses: actions/checkout@
|
|
99
|
+
uses: actions/checkout@v6
|
|
100
100
|
with:
|
|
101
101
|
fetch-depth: 2
|
|
102
102
|
|
|
@@ -0,0 +1,27 @@
|
|
|
1
|
+
# v0.1.30 Release Notes
|
|
2
|
+
|
|
3
|
+
This release removes the GitHub Actions Node 20 deprecation warnings by moving the repo workflows, generated workflow examples, and composite action runtime to Node 24-era Actions versions.
|
|
4
|
+
|
|
5
|
+
## Changed
|
|
6
|
+
|
|
7
|
+
- CI now uses `actions/checkout@v6`, `actions/setup-node@v6`, and `node-version: 24`.
|
|
8
|
+
- The GitHub Release workflow now uses `actions/checkout@v6`.
|
|
9
|
+
- The composite action now uses `actions/setup-node@v6` and `node-version: 24`.
|
|
10
|
+
- `jester github-action`, GitHub Actions docs, and example workflows now use `actions/checkout@v6`.
|
|
11
|
+
|
|
12
|
+
## Unchanged
|
|
13
|
+
|
|
14
|
+
- No CLI command behavior changed.
|
|
15
|
+
- No MCP, config schema, review rule, playground, or npm publish behavior changed.
|
|
16
|
+
- SARIF output, job summaries, and `fail-on` exit behavior are preserved.
|
|
17
|
+
|
|
18
|
+
## Useful Commands
|
|
19
|
+
|
|
20
|
+
```powershell
|
|
21
|
+
npm.cmd test
|
|
22
|
+
npm.cmd run demo:svg:check
|
|
23
|
+
npm.cmd run pack:dry
|
|
24
|
+
git diff --check
|
|
25
|
+
node .\dist\cli.js github-action
|
|
26
|
+
git diff | node .\dist\cli.js diff --fail-on block --subject "v0.1.30 Node 24 GitHub Actions cleanup"
|
|
27
|
+
```
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "memento-mori-jester",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.30",
|
|
4
4
|
"description": "A local court-jester sidecar for AI coding agents: review plans, commands, diffs, and final claims before they get too pleased with themselves.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"repository": {
|