Patrick Cloke
Patrick Cloke
See [Django 4.1 release notes](https://docs.djangoproject.com/en/dev/releases/4.1/#models): > [`QuerySet.iterator()`](https://docs.djangoproject.com/en/dev/ref/models/querysets/#django.db.models.query.QuerySet.iterator) now supports prefetching related objects as long as the `chunk_size` argument is provided. In older versions, no prefetching was done.
See [Django 4.1 release notes](https://docs.djangoproject.com/en/dev/releases/4.1/#models): > [`QuerySet.bulk_create()`](https://docs.djangoproject.com/en/dev/ref/models/querysets/#django.db.models.query.QuerySet.bulk_create) now supports updating fields when a row insertion fails uniqueness constraints. This is supported on MariaDB, MySQL, PostgreSQL, and SQLite 3.24+. > The...
See [Django 4.1 release notes](https://docs.djangoproject.com/en/dev/releases/4.1/#asynchronous-orm-interface) and the [corresponding documentation](https://docs.djangoproject.com/en/dev/topics/db/queries/#async-queries) and the [list of methods](https://docs.djangoproject.com/en/dev/ref/models/querysets/#methods-that-do-not-return-querysets).
#3 added initial support for JInja2, but did not add support for the `extends` tag. This should be supported (along with using `{{ super() }}`.
[StackOverflow 2687173](http://stackoverflow.com/questions/2687173/django-how-can-i-get-a-block-from-a-template) has an interesting use case using a templatetag that we could easily support: ``` python @register.tag def include_block(parser, token): try: tag_name, include_file, block_name = token.split_contents() except ValueError: raise...
## Scope and purpose Fixes #10276 Adds missing type hints to `twisted.internet._resolver`, as part of this it updates the type hints for `IHostnameResolver.resolveHostName` to be correct: * `addressTypes` is a...
- [x] I have read the [Filing Issues](https://docs.getpelican.com/en/latest/contribute.html#filing-issues) and subsequent “How to Get Help” sections of the documentation. - [x] I have searched the [issues](https://github.com/getpelican/pelican/issues?q=is%3Aissue) (including closed ones) and believe...
[Rendered](https://github.com/matrix-org/matrix-spec-proposals/blob/clokep/threads-list-api/proposals/3856-threads-list-api.md) ---- Synapse implementation: matrix-org/synapse#13394
[Rendered](https://github.com/matrix-org/matrix-spec-proposals/blob/clokep/threads-read-receipts/proposals/3771-read-receipts-for-threads.md)
[Rendered](https://github.com/matrix-org/matrix-spec-proposals/blob/clokep/threads-notifications/proposals/3773-notifications-for-threads.md)