chore: update rhiza to v1.5.0 - #101
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Syncs this repository’s Rhiza template from jebel-quant/rhiza@v1.4.2 to @v1.5.0, updating only template-managed infrastructure/config so the repo continues to track Rhiza’s standardized CI, tooling, and governance.
Changes:
- Repins Rhiza reusable workflow stubs from
@v1.4.2→@v1.5.0(including updated release finalisationif:logic and reduced permissions for the paper workflow stub). - Moves the Makefile shim into template ownership and bumps the task-runner pin (
RHIZA_TASK) torhiza-task@1.1.0, directing repo-specific targets tolocal.mk. - Updates pre-commit hook revisions and adds
groupsplus the newcheck-managed-fileshook to enforce template ownership.
Reviewed changes
Copilot reviewed 13 out of 15 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| Makefile | Template-owned rhiza-task shim; updates pin to rhiza-task@1.1.0 and preserves bootstrap behavior. |
| docs/paper/README.md | Documents the new durable-paper approach via the built site (book asset), not a paper branch. |
| .rhiza/template.yml | Updates Rhiza template ref to v1.5.0. |
| .rhiza/template.lock | Updates template lock metadata and adds Makefile to the managed files: list. |
| .pre-commit-config.yaml | Bumps hook revisions; adds groups and introduces check-managed-files. |
| .gitignore | Adds guidance comments re: local.mk being intentionally committed/not ignored. |
| .github/workflows/rhiza_weekly.yml | Repins reusable workflow to @v1.5.0. |
| .github/workflows/rhiza_scorecard.yml | Repins reusable workflow to @v1.5.0. |
| .github/workflows/rhiza_release.yml | Repins reusable workflow to @v1.5.0 and updates finalise-job condition. |
| .github/workflows/rhiza_paper.yml | Repins reusable workflow to @v1.5.0 and reduces contents permission to read-only. |
| .github/workflows/rhiza_marimo.yml | Repins reusable workflow to @v1.5.0. |
| .github/workflows/rhiza_codeql.yml | Repins reusable workflow to @v1.5.0. |
| .github/workflows/rhiza_ci.yml | Repins reusable workflow to @v1.5.0. |
| .github/workflows/rhiza_book.yml | Repins reusable workflow to @v1.5.0. |
| .github/workflows/rhiza_benchmark.yml | Repins reusable workflow to @v1.5.0. |
💡 Add a code-review agent skill or configure MCP servers for context-aware, tailored reviews. Learn more in the docs.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Syncs
jebel-quant/rhizafrom v1.4.2 → v1.5.0. Template-owned files only; nothingrepo-owned was touched.
What changed (14 files)
@v1.5.0.Makefileis now template-owned. v1.5.0 adds it to the lock'sfiles:list, so theshim this repo generated with
uvx rhiza-task shimis replaced by the template's copy andwill be overwritten by every future sync.
RHIZA_TASKmoves with it:rhiza-task@0.3.1→
rhiza-task@1.1.0. Repo-specific targets now belong inlocal.mk(deliberately notgitignored), repo-specific tasks in a
rhiza_task.tasksentry point.rhiza_paper.ymlno longer pushes the PDF to an orphanpaperbranch (rhiza #1494) —a
refs/heads/paperref cannot coexist with anypaper/<topic>branch. Its permissiondrops from
contents: writetocontents: read. The durable copy now ships as a siteasset via the book.
rhiza_release.yml: the finalise job gains!cancelled() &&, without which theneeds.*.resultOR was silently ANDed with an implicitsuccess()— a conda failurestranded the GitHub release as a draft (#1537).
.pre-commit-config.yaml: hooks gaingroups:tags; ruffv0.16.2 → v0.16.4,betterleaks
v1.7.4 → v1.8.1, uv-pre-commit0.12.3 → 0.12.5, validate-pyprojectv0.25 → 0.26, rhiza-hooksv1.2.0 → v1.3.0, and the newcheck-managed-fileshookthat refuses commits touching lock-listed paths.
docs/paper/README.md,.gitignore: documentation of the two changes above.Conflicts
One —
.gitignore— resolved by taking upstream, per the rule that a rhiza-managed fileis the template's to own. The block was an added comment about
local.mknot being ignored;no local content was lost.
Left unstaged
Nothing. The working tree is clean.
Follow-ups for a human (not done here)
origin/paperstill exists (86f4e92) and is now nobody's job to update. Once nothinglinks to it:
git push origin --delete paper.CLAUDE.mdrule 4 lists the rhiza-managed paths and does not yet includeMakefile; itsCommands section also describes
RHIZA_TASKas "the whole version contract" pinned in arepo-owned Makefile. Both are now stale.
CLAUDE.mdis repo-owned, so this PR leaves italone.
No gates were run —
/updatesyncs, it does not score. Run/rhiza:qualityfor ascorecard, and note the
rhiza-taskmajor bump makes a localmake allworth doing beforemerge.