Fixes the following security issues:
- CVE-2025-26699: Potential denial-of-service vulnerability in
django.utils.text.wrap()
For more information, see:
- https://nvd.nist.gov/vuln/detail/CVE-2025-26699
- 8dbb44d342
- CVE-2025-27556: Potential denial-of-service vulnerability in
LoginView, LogoutView, and set_language() on Windows
This CVE isn't related to buildroot has it is only applicable on
Windows but this package version bump fix it.
For more information, see:
- https://nvd.nist.gov/vuln/detail/CVE-2025-27556
- edc2716d01
For more details on the version bump, see the release notes:
- https://docs.djangoproject.com/en/5.1/releases/5.1.8/
- https://docs.djangoproject.com/en/5.1/releases/5.1.7/
- https://docs.djangoproject.com/en/5.1/releases/5.1.6/
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
Signed-off-by: Julien Olivain <ju.o@free.fr>
(cherry picked from commit f2b14baf25)
Signed-off-by: Thomas Perale <thomas.perale@mind.be>
19 lines
726 B
Makefile
19 lines
726 B
Makefile
################################################################################
|
|
#
|
|
# python-django
|
|
#
|
|
################################################################################
|
|
|
|
PYTHON_DJANGO_VERSION = 5.1.8
|
|
PYTHON_DJANGO_SOURCE = Django-$(PYTHON_DJANGO_VERSION).tar.gz
|
|
# The official Django site has an unpractical URL
|
|
PYTHON_DJANGO_SITE = https://files.pythonhosted.org/packages/00/40/45adc1b93435d1b418654a734b68351bb6ce0a0e5e37b2f0e9aeb1a2e233
|
|
PYTHON_DJANGO_LICENSE = BSD-3-Clause
|
|
PYTHON_DJANGO_LICENSE_FILES = LICENSE
|
|
PYTHON_DJANGO_CPE_ID_VENDOR = djangoproject
|
|
PYTHON_DJANGO_CPE_ID_PRODUCT = django
|
|
PYTHON_DJANGO_SETUP_TYPE = setuptools
|
|
PYTHON_DJANGO_BUILD_OPTS = --skip-dependency-check
|
|
|
|
$(eval $(python-package))
|