chore(recipes): bump MIN_RUNNER_VERSION to 0.3.5#4449
Merged
Conversation
recipe-runner-rs v0.3.5 (rysweet/amplihack-recipe-runner#92) fixes the condition parser so postfix access (.field, ['k'], [i], .method()) works inside method/function call arguments, resolving the 'Parse error: unexpected token: LBracket' symptom reported in amplihack#4398 (and amplihack-rs#313) for users running pre-#71/#81 binaries. Also includes a transitive bump of rustls-webpki to 0.103.13 for RUSTSEC-2026-0104. Bumping the minimum here so ensure_rust_recipe_runner() auto-updates existing installs to the fixed binary. Co-authored-by: Copilot <223556219+Copilot@users.noreply.github.com>
Contributor
Repo Guardian - PassedAll changed files in this PR passed the ephemeral content check.
No point-in-time documents or temporary scripts were detected.
|
This was referenced Apr 23, 2026
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
Bumps the minimum required
recipe-runner-rsfrom 0.3.4 → 0.3.5 soensure_rust_recipe_runner()auto-updates existing installs to the fixed binary.Why
recipe-runner-rs v0.3.5 (rysweet/amplihack-recipe-runner#92) fixes the condition parser so postfix access (
.field,['k'],[i],.method()) works inside method/function call arguments.This resolves the
Parse error: unexpected token: LBracketsymptom reported in #4398 (and rysweet/amplihack-rs#313) for users running pre-#71/#81 binaries — e.g. whendefault-workflowstep-07-write-tests orquality-audit-cycle.yamlevaluated conditions likevalidated_findings and validated_findings['confirmed_count'] > 0.v0.3.5 also includes a transitive bump of rustls-webpki to 0.103.13 (RUSTSEC-2026-0104).
Verification
MIN_RUNNER_VERSIONis the only literal pin in this repo (rust_runner.pyre-exports the constant; recipe YAMLs do not pin a version).tests/recipes/test_rust_runner_binary.pyuse the constant via import, so they continue to enforce the new minimum.Closes
Will close #4398 (with cross-reference to recipe-runner-rs#92) once this lands.
Co-authored-by: Copilot 223556219+Copilot@users.noreply.github.com