Releases: clokep/django-querysetsequence
Releases · clokep/django-querysetsequence
0.17 (2023-06-27)
Bugfixes
None
values are now appropriately sorted first or last (depending on database support. Contributed by @vuongdv-spinshell.
(#97)
Improvements
- Initial support for asynchronous queries. (#99, #103)
Maintenance
v0.16 (2022-04-01)
v0.15
v0.14
0.14 (2021-02-26)
Improvements
- Support Django 3.2. (#78, #81)
- Support Python 3.9. (#78)
- Support the
values()
andvalues_list()
methods. (#73, #74) - Support the
distinct()
method when eachQuerySet
instance is from a unique model. Contributed by @jpic. (#77, #80) - Add Sphinx documentation which is available at Read the Docs.
Bugfixes
- Support calling
filter()
withQ()
objects. Contributed by @jpic. (#76)
Maintenance
v0.13
v0.12
v0.11
0.11 (2019-04-25)
Improvements
Maintenance
- Support Django 2.2. Contributed by @michael-k. (#51)
- Support Django REST Framework 3.9. Contributed by @michael-k. (#51)
- Support Python 3.7. Contributed by @michael-k. (#51)
- Drop support for Django REST Framework < 3.6.3. Contributed by @michael-k. (#51)
- Drop support for Python 3.4. Contributed by @michael-k. (#51)
v0.10
0.10 (2018-10-09)
Improvements
- Support
first()
,last()
,latest()
, andearliest()
methods. (#40, #49) - Support the [
&
and|
operators. (#41) - Support
defer()
andonly()
methods to control which fields are returned. (#44) - Support calling
using()
to switch databases for an entireQuerySetSequence
. (#44) - Support calling
extra()
,update()
, andannotate()
which get applied to eachQuerySet
. (#46, #47) - Support calling
explain()
on Django >= 2.1. (#48)
Bugfixes
v0.9
0.9 (2018-09-20)
Bugfixes
- Stop using the internals of
QuerySet
for better forward compatibility. This change means thatQuerySetSequence
is no longer a sub-class ofQuerySet
and should improve interactions with other packages which modifyQuerySet
. (#38)