From 8d95a55b59b888fe3c489a3917fb0004f90551c0 Mon Sep 17 00:00:00 2001 From: Wang Mingyu Date: Mon, 19 Feb 2024 17:02:22 +0800 Subject: python3-django: upgrade 5.0.1 -> 5.0.2 Changelog: =========== -Reallowed, following a regression in Django 5.0.1, filtering against local foreign keys not included in ModelAdmin.list_filter (#35087). -Fixed a regression in Django 5.0 where links in the admin had an incorrect color (#35121). -Fixed a bug in Django 5.0 that caused a crash of Model.full_clean() on models with a GeneratedField (#35127). -Fixed a regression in Django 5.0 that caused a crash of FilteredRelation() with querysets as right-hand sides (#35135). FilteredRelation() now raises a ValueError on querysets as right-hand sides. -Fixed a regression in Django 5.0 that caused a crash of the dumpdata management command when a base queryset used prefetch_related() (#35159). -Fixed a regression in Django 5.0 that caused the request_finished signal to sometimes not be fired when running Django through an ASGI server, resulting in potential resource leaks (#35059). -Fixed a bug in Django 5.0 that caused a migration crash on MySQL when adding a BinaryField, TextField, JSONField, or GeometryField with a db_default (#35162). -Fixed a bug in Django 5.0 that caused a migration crash on models with a literal db_default of a complex type such as dict instance of a JSONField. Signed-off-by: Wang Mingyu Signed-off-by: Khem Raj --- meta-python/recipes-devtools/python/python3-django_5.0.1.bb | 9 --------- meta-python/recipes-devtools/python/python3-django_5.0.2.bb | 9 +++++++++ 2 files changed, 9 insertions(+), 9 deletions(-) delete mode 100644 meta-python/recipes-devtools/python/python3-django_5.0.1.bb create mode 100644 meta-python/recipes-devtools/python/python3-django_5.0.2.bb (limited to 'meta-python/recipes-devtools/python') diff --git a/meta-python/recipes-devtools/python/python3-django_5.0.1.bb b/meta-python/recipes-devtools/python/python3-django_5.0.1.bb deleted file mode 100644 index eed1e6edc6..0000000000 --- a/meta-python/recipes-devtools/python/python3-django_5.0.1.bb +++ /dev/null @@ -1,9 +0,0 @@ -require python-django.inc -inherit setuptools3 - -SRC_URI[sha256sum] = "8c8659665bc6e3a44fefe1ab0a291e5a3fb3979f9a8230be29de975e57e8f854" - -RDEPENDS:${PN} += "\ - ${PYTHON_PN}-sqlparse \ - ${PYTHON_PN}-asgiref \ -" diff --git a/meta-python/recipes-devtools/python/python3-django_5.0.2.bb b/meta-python/recipes-devtools/python/python3-django_5.0.2.bb new file mode 100644 index 0000000000..318b624082 --- /dev/null +++ b/meta-python/recipes-devtools/python/python3-django_5.0.2.bb @@ -0,0 +1,9 @@ +require python-django.inc +inherit setuptools3 + +SRC_URI[sha256sum] = "b5bb1d11b2518a5f91372a282f24662f58f66749666b0a286ab057029f728080" + +RDEPENDS:${PN} += "\ + ${PYTHON_PN}-sqlparse \ + ${PYTHON_PN}-asgiref \ +" -- cgit v1.2.3-54-g00ecf