chore(ci): enable and group Dependabot version updates - #336
Merged
Merged
Conversation
jplbrun
marked this pull request as ready for review
September 15, 2026 17:27
jeanscherf
reviewed
Sep 15, 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.
Description
Enables Dependabot version updates for the
pipecosystem (previously security-updates only) and groups them by update level to keep PR volume low.Previously the
pipblock ignored all regular version updates (version-update:semver-major/minor/patch), so only repo-level Dependabot Security Updates produced PRs. Dependencies could silently drift between security advisories.This change:
version-minor-patch). Major updates are intentionally not grouped — with noignorerule in place, they fall through to individual PRs so each breaking bump can be reviewed in isolation.securitygroup (applies-to: security-updates) so security fixes arrive as one consolidated PR rather than one-per-dependency.Grouping is level-only (no prod/dev split): the prod/dev boundary in this repo is blurred because several packages (
cryptography,httpx,starlette, the web-framework extras) are declared in both[project]and[dependency-groups] dev.Related Issue
N/A
Type of Change
How to Test
version-minor-patchPR is opened for batched minor/patch bumps, and that any available major bump appears as its own separate PR.Checklist
Breaking Changes
None
Additional Notes
None