chore(deps): bump agentfield floor to 0.1.79#69
Merged
Conversation
0.1.79 contains the pause-aware reasoner timeout fix (Agent-Field/agentfield#552). The build reasoner sits inside app.pause() while waiting for hax-sdk plan approvals, so any review that took longer than default_execution_timeout (7200s) was billed against the reasoner budget and surfaced as "Reasoner 'build' timed out after 7200.0s". The constraint string is what bumps it — Docker layer-cache keys off the requirements file contents, so leaving it at >=0.1.77 would let the cached pip-install layer keep installing 0.1.77 even though 0.1.79 is on PyPI. Forcing the string to >=0.1.79 invalidates that layer and pulls the fix on the next build. Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
agentfieldSDK floor from>=0.1.77to>=0.1.79acrossrequirements.txt,requirements-docker.txt, andpyproject.toml.Why this matters
0.1.79 contains the pause-aware reasoner-timeout fix (Agent-Field/agentfield#552). The
buildreasoner sits insideapp.pause()while waiting for hax-sdk plan approvals, so any review that took longer thandefault_execution_timeout(7200s) was billed against the reasoner budget and surfaced asReasoner 'build' timed out after 7200.0s. With 0.1.79, time spent inpause()is subtracted from elapsed before the watchdog compares against the budget.Why bumping the constraint string is required
Docker layer caching keys off the requirements file contents. Leaving the constraint at
>=0.1.77would let the cachedpip installlayer keep installing whatever it last resolved (0.1.77) even though 0.1.79 is now on PyPI. Forcing the string to>=0.1.79invalidates that layer and pulls the fix on the next image build.Test plan
agentfieldresolves to 0.1.79+ in the running container (pip show agentfield)🤖 Generated with Claude Code