Skip to content

Correct docs: QuerySet.bulk_update() is supported #299

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 3 commits into from
May 9, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions docs/source/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ First steps
- :doc:`Installation <intro/install>`
- :doc:`Configuring a project <intro/configure>`
- :doc:`howto/contrib-apps`
- :doc:`topics/known-issues`

Getting help
============
Expand Down
1 change: 0 additions & 1 deletion docs/source/ref/models/querysets.rst
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ Supported ``QuerySet`` methods
All of Django's :doc:`QuerySet methods <django:ref/models/querysets>` are
supported, except:

- :meth:`bulk_update() <django.db.models.query.QuerySet.bulk_update>`
- :meth:`extra() <django.db.models.query.QuerySet.extra>`
- :meth:`prefetch_related() <django.db.models.query.QuerySet.prefetch_related>`

Expand Down
5 changes: 2 additions & 3 deletions docs/source/topics/known-issues.rst
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ Querying

- The following ``QuerySet`` methods aren't supported:

- :meth:`bulk_update() <django.db.models.query.QuerySet.bulk_update>`
- :meth:`extra() <django.db.models.query.QuerySet.extra>`
- :meth:`prefetch_related() <django.db.models.query.QuerySet.prefetch_related>`

Expand Down Expand Up @@ -98,8 +97,8 @@ Caching

:doc:`Database caching </topics/cache>` uses this library's
:djadmin:`createcachecollection` command rather Django's SQL-specific
:djadmin:`createcachetable`.
:djadmin:`createcachetable` command.

Secondly, you must use the :class:`django_mongodb_backend.cache.MongoDBCache`
backend rather than Django's built-in database cache backend,
``django.core.cache.backends.db.DatabaseCache``).
``django.core.cache.backends.db.DatabaseCache``.
Loading