v1.1.2
Strata v1.1.2 is a patch release focused on CI/CD maintenance and AI agent convention improvements.
CI / Infrastructure
Section titled “CI / Infrastructure”GitHub Actions upgraded to Node.js 24
Section titled “GitHub Actions upgraded to Node.js 24”All three CI jobs (Backend, Frontend, Documentation) and the Desktop build job have been updated to use Node.js 24-compatible action versions:
| Action | Old | New |
|---|---|---|
actions/checkout | @v4 (node20) | @v5 (node24) |
actions/setup-node | @v4 (node20) | @v5 (node24) |
codecov/codecov-action | @v4 (node20) | @v5 (composite) |
The Desktop build job additionally moves from node-version: 20 to node-version: "24", aligning it with the rest of the project.
Why: GitHub deprecated Node.js 20 action runtimes and will remove them from runners in September 2026. Running the old versions produced deprecation warnings on every CI run.
Agent conventions
Section titled “Agent conventions”AGENTS.md: conventions 10, 11, and 14 added
Section titled “AGENTS.md: conventions 10, 11, and 14 added”Three conventions previously living only in the checklist instructions file are now formally documented in AGENTS.md:
- Convention 10 — Infra Test Gate: Dockerfile / docker-compose / build-script changes must be verified by running the affected command before declaring done.
- Convention 11 — Do-No-Harm Baseline: For optimization tasks, document the working baseline before changing anything; run command before and after.
- Convention 14 — Semver Release Rule: Every completed plan must be followed by
npm run release -- X.Y.Z.
Checklist instructions consolidated
Section titled “Checklist instructions consolidated”The planning checklist (agents-plan-checklist.instructions.md) now includes row 14 for the Semver Release Rule, making it a complete mirror of AGENTS.md at-a-glance.