Skip to content

Bump django-stubs from 6.0.7 to 6.1.0 - #2265

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/django-stubs-6.1.0
Open

Bump django-stubs from 6.0.7 to 6.1.0#2265
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/pip/django-stubs-6.1.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 19, 2026

Copy link
Copy Markdown
Contributor

Bumps django-stubs from 6.0.7 to 6.1.0.

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Bumps [django-stubs](https://github.com/typeddjango/django-stubs) from 6.0.7 to 6.1.0.
- [Release notes](https://github.com/typeddjango/django-stubs/releases)
- [Commits](typeddjango/django-stubs@6.0.7...6.1.0)

---
updated-dependencies:
- dependency-name: django-stubs
  dependency-version: 6.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Aug 19, 2026
@claude

claude Bot commented Aug 19, 2026

Copy link
Copy Markdown

Review Summary

This is a routine Dependabot bump of django-stubs from 6.0.7 → 6.1.0 in requirements/local.txt — a dev-only type-stubs package, no production code affected. Single-line diff, low risk.

Code quality / best practices: N/A — pure version pin bump, follows the existing pinning convention (== with a source comment link).

Potential bugs: None expected from the stubs bump itself, but per the changelog this release includes "Support custom arguments in queryset update methods" and "Explicit through default manager" — these change how mypy type-checks certain Django ORM patterns (.update() with custom manager args, M2M through models). Worth running mypy (or the pre-commit hook that wraps it) locally to confirm no new type errors surface in code that relies on those patterns.

Performance: No runtime impact — stubs are type-check-time only, not shipped in production.

Security: No security concerns; this is a well-known, actively maintained typeddjango project.

Test coverage: N/A for this change. Recommend letting CI (which runs pre-commit/mypy) confirm the bump is clean before merging, per this repo's baseline commit rule of "make sure typescript compiles and pre-commits pass before committing new code" (analogous mypy check applies here).

Safe to merge once CI is green.

JSv4 added a commit that referenced this pull request Aug 20, 2026
…ired

`main`'s branch protection has no `required_status_checks` object at all, so
nothing gates a merge on CI having run, let alone passed. PR #2262 merged with
Backend CI never having run on its head commit at all -- and because nothing
was required, "no check reported" was not a blocker. The push that merged it
then failed at the linter, which skipped `pytest` (0s); `main` sat that way for
~30 hours, repaired only by accident when an unrelated PR's
`pre-commit run --all-files` happened to reformat the same file.

Requiring *something* is therefore the fix, but requiring the `pytest` job is
not, because it leaves a second hole open and opens a third:

  * GitHub reports a job skipped by its own `if:` as SUCCESS to branch
    protection. `pytest` is gated on `needs.linter.result == 'success'`, so a
    red linter skips it and a required `pytest` still reads green. This is not
    hypothetical: PRs #2260, #2264 and #2265 are all sitting at
    `linter=failure / pytest=skipped` right now, and would be mergeable under
    that policy with a red linter.
  * A workflow skipped by path filtering never reports its checks at all, so
    the required check hangs Pending forever. With `paths-ignore: docs/**` on
    the `pull_request` trigger, requiring any job here would make docs-only
    PRs permanently unmergeable.

So the requirable check has to always run and inspect the other jobs itself,
telling "skipped because this PR touches no backend code" apart from "skipped
because something upstream broke". That is the new `gate` job; its decision
table is `.github/scripts/backend_ci_gate.sh`, which carries a `--self-test`
that the job runs on every invocation -- a gate whose own logic has silently
inverted is worse than no gate.

`paths-ignore` is dropped from the `pull_request` trigger for the reason
above; the `changes` path filter still keeps the expensive jobs from running,
so a docs-only PR now costs two ubuntu-latest jobs of a few seconds.

`require_backend_ci_gate.sh` applies the protection change itself, because the
obvious `gh api` call is a footgun: `PUT .../branches/main/protection` replaces
the ENTIRE object (dropping review rules and the force-push/deletion bans
unless they are re-sent), and the narrower
`PATCH .../protection/required_status_checks` sub-resource 404s when no such
object exists yet. It refuses to require a context name that has never been
reported on the branch, since that would block every PR with no error anywhere.

Verified by replaying the gate over the last 60 Backend CI runs: it blocks all
8 PR runs with a red linter and both of the merge-commit runs from #2262's
window, and allows all 25 genuinely green runs and the 3 with no backend
changes.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
JSv4 added a commit that referenced this pull request Aug 20, 2026
…ired

`main`'s branch protection has no `required_status_checks` object at all, so
nothing gates a merge on CI having run, let alone passed. PR #2262 merged with
Backend CI never having run on its head commit at all -- and because nothing
was required, "no check reported" was not a blocker. The push that merged it
then failed at the linter, which skipped `pytest` (0s); `main` sat that way for
~30 hours, repaired only by accident when an unrelated PR's
`pre-commit run --all-files` happened to reformat the same file.

Requiring *something* is therefore the fix, but requiring the `pytest` job is
not, because it leaves a second hole open and opens a third:

  * GitHub reports a job skipped by its own `if:` as SUCCESS to branch
    protection. `pytest` is gated on `needs.linter.result == 'success'`, so a
    red linter skips it and a required `pytest` still reads green. This is not
    hypothetical: PRs #2260, #2264 and #2265 are all sitting at
    `linter=failure / pytest=skipped` right now, and would be mergeable under
    that policy with a red linter.
  * A workflow skipped by path filtering never reports its checks at all, so
    the required check hangs Pending forever. With `paths-ignore: docs/**` on
    the `pull_request` trigger, requiring any job here would make docs-only
    PRs permanently unmergeable.

So the requirable check has to always run and inspect the other jobs itself,
telling "skipped because this PR touches no backend code" apart from "skipped
because something upstream broke". That is the new `gate` job; its decision
table is `.github/scripts/backend_ci_gate.sh`, which carries a `--self-test`
that the job runs on every invocation -- a gate whose own logic has silently
inverted is worse than no gate.

`paths-ignore` is dropped from the `pull_request` trigger for the reason
above; the `changes` path filter still keeps the expensive jobs from running,
so a docs-only PR now costs two ubuntu-latest jobs of a few seconds.

`require_backend_ci_gate.sh` applies the protection change itself, because the
obvious `gh api` call is a footgun: `PUT .../branches/main/protection` replaces
the ENTIRE object (dropping review rules and the force-push/deletion bans
unless they are re-sent), and the narrower
`PATCH .../protection/required_status_checks` sub-resource 404s when no such
object exists yet. It refuses to require a context name that has never been
reported on the branch, since that would block every PR with no error anywhere.

Verified by replaying the gate over the last 60 Backend CI runs: it blocks all
8 PR runs with a red linter and both of the merge-commit runs from #2262's
window, and allows all 25 genuinely green runs and the 3 with no backend
changes.

Co-Authored-By: Claude Opus 5 <noreply@anthropic.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file python Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants