Bump boto3, rich, av, typer, hatch and ruff to latest#60
Merged
Conversation
Updates the dependency set in one pass: boto3/botocore 1.43.18 to 1.43.24, rich 14.3.4 to 15.0.0 (raising the pyproject ceiling from <15 to <16), av 17.0.1 to 17.1.0, typer 0.16.1 to 0.26.7, hatch 1.16.5 to 1.17.0 and ruff 0.15.15 to 0.15.16. Typer 0.26 now returns its own typer.testing.Result from CliRunner.invoke rather than a click.testing.Result subclass, so the test helpers import Result from typer.testing. Ruff 0.15.16 flags RUF043 on two pytest.raises match patterns that contain regex metacharacters, now marked as raw strings, and auto-simplifies two conditional expressions to or-expressions.
This was referenced Jun 7, 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.
Batches the five open Dependabot updates (#55–#59) into a single branch, since they all touch
uv.lock(and the rich bump also touchespyproject.toml), making sequential merges conflict-prone.Bumps
<15→<16)Required follow-on fixes
CliRunner.invoketo returntyper.testing.Result(no longer aclick.testing.Resultsubclass), which broke 44 mypy checks in the e2e tests. The test helpers now importResultfromtyper.testing.pytest.raises(match=...)patterns containing regex metacharacters (now raw strings) and auto-simplifies two conditional expressions toor-expressions.Verification
Supersedes and closes #55, #56, #57, #58, #59.