From 00e390e611b86c231ef257e22bb5a87df485957d Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Wed, 17 Apr 2024 09:40:30 +0800 Subject: python3-django: upgrade 5.0.3 -> 5.0.4 Changelog: =========== * Fixed a bug in Django 5.0 that caused a crash of "Model.full_clean()" on fields with expressions in "db_default". As a consequence, "Model.full_clean()" no longer validates for empty values in fields with "db_default" * Fixed a regression in Django 5.0 where the "AdminFileWidget" could be rendered with two "id" attributes on the "Clear" checkbox * Fixed a bug in Django 5.0 that caused a migration crash on PostgreSQL 15+ when adding a partial "UniqueConstraint" with "nulls_distinct" * Fixed a crash in Django 5.0 when performing queries involving table aliases and lookups on a "GeneratedField" of the aliased table * Fixed a bug in Django 5.0 that caused a migration crash when adding a "GeneratedField" relying on the "__contains" or "__icontains" lookups or using a "Value" containing a ""%"" Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-python/recipes-devtools/python/python3-django_5.0.3.bb | 9 --------- meta-python/recipes-devtools/python/python3-django_5.0.4.bb | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-django_5.0.3.bb create mode 100644 meta-python/recipes-devtools/python/python3-django_5.0.4.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-django_5.0.3.bb b/meta-python/recipes-devtools/python/python3-django_5.0.3.bb deleted file mode 100644 index 14c41a626f..0000000000 --- a/meta-python/recipes-devtools/python/python3-django_5.0.3.bb +++ /dev/null @@ -1,9 +0,0 @@ -require python-django.inc -inherit setuptools3 - -SRC_URI[sha256sum] = "5fb37580dcf4a262f9258c1f4373819aacca906431f505e4688e37f3a99195df" - -RDEPENDS:${PN} += "\ - python3-sqlparse \ - python3-asgiref \ -" diff --git a/meta-python/recipes-devtools/python/python3-django_5.0.4.bb b/meta-python/recipes-devtools/python/python3-django_5.0.4.bb new file mode 100644 index 0000000000..3139ed4682 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-django_5.0.4.bb @@ -0,0 +1,9 @@ +require python-django.inc +inherit setuptools3 + +SRC_URI[sha256sum] = "4bd01a8c830bb77a8a3b0e7d8b25b887e536ad17a81ba2dce5476135c73312bd" + +RDEPENDS:${PN} += "\ + python3-sqlparse \ + python3-asgiref \ +" -- cgit v1.2.3-54-g00ecf