chore: update rhiza to v0.15.3#779
Merged
Merged
Conversation
Contributor
There was a problem hiding this comment.
Pull request overview
Updates the repository’s Rhiza template configuration and sync artifacts to newer upstream versions, and adds shell completion scripts for Rhiza Make targets under .rhiza/.
Changes:
- Bump Rhiza template ref to
v0.15.3and update the synced template lock metadata. - Bump
.rhiza/.rhiza-versionto0.16.1. - Add Bash/Zsh completion scripts (and README) for tab-completing Rhiza Make targets.
Reviewed changes
Copilot reviewed 5 out of 6 changed files in this pull request and generated 4 comments.
Show a summary per file
| File | Description |
|---|---|
.rhiza/template.yml |
Updates the Rhiza template ref to v0.15.3. |
.rhiza/template.lock |
Updates template sync lock (sha/ref, file manifest, synced timestamp). |
.rhiza/completions/rhiza-completion.zsh |
Adds Zsh completion for make targets in Rhiza-based projects. |
.rhiza/completions/rhiza-completion.bash |
Adds Bash completion for make targets in Rhiza-based projects. |
.rhiza/completions/README.md |
Documents installation/usage for the new completion scripts. |
.rhiza/.rhiza-version |
Bumps the Rhiza CLI version used by make sync/validate. |
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Comment on lines
18
to
+20
| - .github/dependabot.yml | ||
| - .github/pull_request_template.md | ||
| - .github/release.yml |
Comment on lines
+255
to
+259
| ## See Also | ||
|
|
||
| - [Tools Reference](../../docs/reference/TOOLS_REFERENCE.md) - Complete command reference | ||
| - [Quick Reference](../../docs/guides/QUICK_REFERENCE.md) - Quick command reference | ||
| - [Extending Rhiza](../../docs/guides/EXTENDING_RHIZA.md) - How to add custom targets |
Comment on lines
+13
to
+16
| local cur prev opts | ||
| COMPREPLY=() | ||
| cur="${COMP_WORDS[COMP_CWORD]}" | ||
| prev="${COMP_WORDS[COMP_CWORD-1]}" |
| opts="$opts $vars" | ||
|
|
||
| # Generate completions | ||
| COMPREPLY=( $(compgen -W "${opts}" -- ${cur}) ) |
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.
Summary
template-branchtov0.15.3in.rhiza/template.yml.rhiza/.rhiza-versionto0.16.1make syncto apply upstream template changes