Skip to content

Update django to v6.1.1 - #533

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/django
Open

renovate[bot] wants to merge 1 commit into
mainfrom
renovate/django

Conversation

@renovate

@renovate renovate Bot commented Sep 1, 2026

Copy link
Copy Markdown
Contributor

This PR contains the following updates:

Package Change Age Confidence
django (changelog) ==6.0.7==6.1.1 age confidence
django-stubs (changelog) ==6.0.7==6.1.1 age confidence
django-stubs-ext (changelog) ==6.0.7==6.1.1 age confidence

Release Notes

django/django (django)

v6.1.1

Compare Source

v6.1

Compare Source

v6.0.8

Compare Source

typeddjango/django-stubs (django-stubs)

v6.1.1

Compare Source

Highlight

This release does some changes around Manager / RelatedManager and the auto generated objects attribute to work better with typechecker like pyright / ty / pyrefly and be more strict about the fact that MyModel().objects is not valid.

However, to support that, existing broad annotations of related managers need to be narrowed or access to these related managers will be flagged as an error. For ex:

from django.db import models
from django_stubs_ext.db.models.manager import ManyRelatedManager, RelatedManager

class Article(models.Model):
-    category_set: Manager[Category]
+    category_set: RelatedManager[Category]
-    tags: Manager[Tag, ArticleTag]
+    tags: ManyRelatedManager[Tag, ArticleTag]

If you use the mypy plugin, you should also be able to drop these annotation completely in most cases. The plugin infers these types automatically.

See https://github.com/typeddjango/django-stubs#do-i-need-to-annotate-reverse-relations

What's Changed

New Contributors

Full Changelog: typeddjango/django-stubs@6.1.0...6.1.1

v6.1.0

Compare Source

What's Changed

This is the first Django 6.1 release 🎉

Django 6.0 and 5.2 are now in partial support mode.
Django 5.1 and 5.0 support was dropped (techically they would still work, but we don't test them no more).
Python 3.10 support was dropped.

Feedback is very welcome! 👍

Full Changelog: typeddjango/django-stubs@6.0.9...6.1.0

v6.0.9

Compare Source

What's Changed

6.0.8 was supposed to be the last 6.0.x release, but we found several regressions that we wanted to fix.
Now we are working on 6.1.0 release :)

Full Changelog: typeddjango/django-stubs@6.0.8...6.0.9

v6.0.8

Compare Source

This is the last release with Django 6.0 full support.
The next release will be focused on Django 6.1 support with Django 6.0 partial support.

What's Changed

New Contributors

Full Changelog: typeddjango/django-stubs@6.0.7...6.0.8


Configuration

📅 Schedule: (UTC)

  • Branch creation
    • Between 12:00 AM and 03:59 AM, on day 1 of the month (* 0-3 1 * *)
  • Automerge
    • At any time (no schedule defined)

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about these updates again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate
renovate Bot force-pushed the renovate/django branch from 9f0f437 to 204e8cc Compare September 1, 2026 14:24
@renovate renovate Bot changed the title Update django Update django to v6.1.0 Sep 1, 2026
@renovate
renovate Bot force-pushed the renovate/django branch 2 times, most recently from 5dbcb7b to 13473d3 Compare September 1, 2026 19:59
@renovate renovate Bot changed the title Update django to v6.1.0 Update django Sep 1, 2026
@renovate
renovate Bot force-pushed the renovate/django branch from 13473d3 to 8348a4c Compare September 2, 2026 17:50
@renovate renovate Bot changed the title Update django Update django to v6.1.0 Sep 2, 2026
@renovate
renovate Bot force-pushed the renovate/django branch from 8348a4c to 5891c98 Compare September 2, 2026 18:11
@renovate renovate Bot changed the title Update django to v6.1.0 Update django Sep 2, 2026
@renovate
renovate Bot force-pushed the renovate/django branch 4 times, most recently from f28fa51 to e0b3ab8 Compare September 9, 2026 03:03
@renovate renovate Bot changed the title Update django Update django to v6.1.0 Sep 9, 2026
@renovate
renovate Bot force-pushed the renovate/django branch from e0b3ab8 to 88e673d Compare September 9, 2026 09:06
@renovate renovate Bot changed the title Update django to v6.1.0 Update django Sep 9, 2026
@renovate renovate Bot changed the title Update django Update django to v6.1.1 Sep 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants