chore(deps): enable Renovate lock file maintenance + refresh uv.lock#323
Merged
Conversation
Add lockFileMaintenance (enabled + automerge). Renovate's per-dependency PRs only bump direct deps within their constraints, leaving the transitive pins in uv.lock to go stale. This adds a scheduled (weekly by default) full re-resolution of uv.lock so indirect deps stay current. The refresh runs uv, so it honors [tool.uv] exclude-newer; transitive bumps are therefore subject to the same 7-day cooldown. With that plus green CI, the lock-refresh PR auto-merges.
One-time catch-up equivalent to a lock file maintenance run. aiohttp stays at 3.14.0 because 3.14.1 is still inside the cooldown window. Bumped: - aiohappyeyeballs 2.6.1 -> 2.6.2 - attrs 25.4.0 -> 26.1.0 - idna 3.15 -> 3.18 - packaging 26.0 -> 26.2 - propcache 0.4.1 -> 0.5.2 - pytest-asyncio 1.3.0 -> 1.4.0 - ruff 0.15.4 -> 0.15.16 - soupsieve 2.8.3 -> 2.8.4 - yarl 1.23.0 -> 1.24.2 Verified: ruff check + ruff format --check clean, 200 tests pass.
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.
What
lockFileMaintenance, enabled + automerge): a weekly full re-resolution ofuv.lockso transitive/indirect pins stay current. Renovate's normal PRs only bump direct deps within their constraints.uv.locknow (a one-time catch-up), within the 7-day cooldown.Dependency refresh
aiohttp stays at 3.14.0 (3.14.1 is still inside the cooldown). Bumped:
Why it composes with the cooldown
The maintenance job runs uv, so it honors
[tool.uv] exclude-newer; transitive bumps are subject to the same 7-day cooldown. With that plus green CI, the scheduled lock-refresh PR auto-merges.Verification
uv run pytestreports 200 passed;ruff checkandruff format --checkare clean on the bumped ruff 0.15.16.