Merged
Conversation
…deleted and retrieved submissions
…op-conditions Add stop conditions for `AutoReviewPoller` and `DownstreamPoller` queries
…ox-normalization Handle edge case where Form Extraction bounding boxes are floats
Improve `retry()` type hints
…-deepcopy Prediction Deep Copy / Replace
(But still keep v6.14 locked as the default)
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.
Merge the following PRs into
mainand publish asv7.2.3:AutoReviewPollerandDownstreamPollerqueries #223retry()type hints #224Note
Medium Risk
Behavior changes in polling (skipping
filesDeleted/retrievedsubmissions) and new__deepcopy__/__replace__semantics forPrediction/Resultcould affect downstream automation and copying behavior; dependency range expansion toindico-client<8.0.0may introduce compatibility changes.Overview
Publishes v7.2.3 (version bumps in
__init__.py/pyproject.toml, updatedpoetry.lock) and widens theindico-clientconstraint to<8.0.0.Updates polling GraphQL queries to exclude submissions that are
filesDeletedorretrievedfrom both auto-review and downstream polling, so unprocessable submissions drop out without DB failures.Hardens results handling by normalizing Form Extraction bounding box edges that arrive as
floattointand by adding efficient__deepcopy__support acrossPredictionsubclasses andResult, plus a Python 3.13copy.replace()workaround viaPrediction.__replace__(removing the oldPrediction.copy()).Separately simplifies the generic return typing in the
retry()decorator and updates test fixture data to include float bbox edge cases.Written by Cursor Bugbot for commit b42e591. This will update automatically on new commits. Configure here.