We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9338014 commit 92d3de1Copy full SHA for 92d3de1
CHANGELOG.md
@@ -1,5 +1,11 @@
1
# Django CTE change log
2
3
+## 1.3.3 - 2024-06-07
4
+
5
+- Handle empty result sets in CTEs ([#92](https://github.com/dimagi/django-cte/pull/92)).
6
+- Fix `.explain()` in Django >= 4.0 ([#91](https://github.com/dimagi/django-cte/pull/91)).
7
+- Fixed bug in deferred loading ([#90](https://github.com/dimagi/django-cte/pull/90)).
8
9
## 1.3.2 - 2023-11-20
10
11
- Work around changes in Django 4.2 that broke CTE queries due to internally
django_cte/__init__.py
@@ -3,4 +3,4 @@
from .cte import CTEManager, CTEQuerySet, With # noqa
-__version__ = "1.3.2"
+__version__ = "1.3.3"
0 commit comments