From 0347cd1b9712012da5d408b3dce123ce6adeda5c Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Tue, 13 Jun 2023 09:40:12 +0800 Subject: python3-django: upgrade 4.2.1 -> 4.2.2 Changelog: ========== - Fixed a regression in Django 4.2 that caused an unnecessary DBMS_LOB.SUBSTR() wrapping in the __isnull and __exact=None lookups for TextField()/BinaryField() on Oracle (#34544). - Restored, following a regression in Django 4.2, get_prep_value() call in JSONField subclasses (#34539). - Fixed a regression in Django 4.2 that caused a crash of QuerySet.defer() when passing a ManyToManyField or GenericForeignKey reference. While doing so is a no-op, it was allowed in older version (#34570). - Fixed a regression in Django 4.2 that caused a crash of QuerySet.only() when passing a reverse OneToOneField reference (#34612). - Fixed a bug in Django 4.2 where makemigrations --update didn't respect the --name option (#34568). - Fixed a performance regression in Django 4.2 when compiling queries without ordering (#34580). - Fixed a regression in Django 4.2 where nonexistent stylesheet was linked on a "Congratulations!" page (#34588). - Fixed a regression in Django 4.2 that caused a crash of QuerySet.aggregate() with expressions referencing other aggregates (#34551). - Fixed a regression in Django 4.2 that caused a crash of QuerySet.aggregate() with aggregates referencing subqueries (#34551). - Fixed a regression in Django 4.2 that caused a crash of querysets on SQLite when filtering on DecimalField against values outside of the defined range (#34590). - Fixed a regression in Django 4.2 that caused a serialization crash on a ManyToManyField without a natural key when its Manager's base QuerySet used select_related() (#34620). Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-python/recipes-devtools/python/python3-django_4.2.1.bb | 9 --------- meta-python/recipes-devtools/python/python3-django_4.2.2.bb | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-django_4.2.1.bb create mode 100644 meta-python/recipes-devtools/python/python3-django_4.2.2.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-django_4.2.1.bb b/meta-python/recipes-devtools/python/python3-django_4.2.1.bb deleted file mode 100644 index b1474cf054..0000000000 --- a/meta-python/recipes-devtools/python/python3-django_4.2.1.bb +++ /dev/null @@ -1,9 +0,0 @@ -require python-django.inc -inherit setuptools3 - -SRC_URI[sha256sum] = "7efa6b1f781a6119a10ac94b4794ded90db8accbe7802281cd26f8664ffed59c" - -RDEPENDS:${PN} += "\ - ${PYTHON_PN}-sqlparse \ - ${PYTHON_PN}-asgiref \ -" diff --git a/meta-python/recipes-devtools/python/python3-django_4.2.2.bb b/meta-python/recipes-devtools/python/python3-django_4.2.2.bb new file mode 100644 index 0000000000..da65eb9c32 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-django_4.2.2.bb @@ -0,0 +1,9 @@ +require python-django.inc +inherit setuptools3 + +SRC_URI[sha256sum] = "2a6b6fbff5b59dd07bef10bcb019bee2ea97a30b2a656d51346596724324badf" + +RDEPENDS:${PN} += "\ + ${PYTHON_PN}-sqlparse \ + ${PYTHON_PN}-asgiref \ +" -- cgit v1.2.3-54-g00ecf