Path to this page:
./
www/py-django,
Django, a high-level Python Web framework
Branch: CURRENT,
Version: 5.1.3,
Package name: py312-django-5.1.3,
Maintainer: pkgsrc-usersDjango is a high-level Python Web framework that encourages rapid development
and clean, pragmatic design. Django was designed to make common Web-development
tasks fast and easy.
DEINSTALL [+/-]#!/bin/sh
case $STAGE in
DEINSTALL)
@PY_MANAGE_EGGS@ unregister @DJANGOEGG@
;;
esac
Required to run:[
devel/py-setuptools] [
time/py-pytz] [
lang/python37]
Required to build:[
pkgtools/cwrappers]
Master sites:
Filesize: 10447.771 KB
Version history: (Expand)
- (2024-11-05) Updated to version: py312-django-5.1.3
- (2024-10-08) Updated to version: py312-django-5.1.2
- (2024-09-06) Updated to version: py312-django-5.1.1
- (2024-08-06) Updated to version: py311-django-5.0.8
- (2024-07-11) Updated to version: py311-django-5.0.7
- (2024-05-07) Updated to version: py311-django-5.0.6
CVS history: (Expand)
2024-04-05 12:40:17 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-django: updated to 5.0.4
Django 5.0.4 fixes several bugs in 5.0.3.
Bugfixes
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 "%"
|
2024-03-04 16:49:51 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-django: updated to 5.0.3
Django 5.0.3 fixes a security issue with severity “moderate” and several \
bugs in 5.0.2.
CVE-2024-27351: Potential regular expression denial-of-service in \
django.utils.text.Truncator.words()
django.utils.text.Truncator.words() method (with html=True) and \
truncatewords_html template filter were subject to a potential regular \
expression denial-of-service attack using a suitably crafted string (follow up \
to CVE-2019-14232 and CVE-2023-43665).
Bugfixes
Fixed a regression in Django 5.0.2 where intcomma template filter could return a \
leading comma for string representation of floats.
Fixed a bug in Django 5.0 that caused a crash of Signal.asend() and \
asend_robust() when all receivers were asynchronous functions.
Fixed a regression in Django 5.0.1 where ModelAdmin.lookup_allowed() would \
prevent filtering against foreign keys using lookups like __isnull when the \
field was not included in ModelAdmin.list_filter.
Fixed a regression in Django 5.0 that caused a crash of @sensitive_variables and \
@sensitive_post_parameters decorators on functions loaded from .pyc files.
Fixed a regression in Django 5.0 that caused a crash when reloading a test \
database and a base queryset for a base manager used prefetch_related().
Fixed a bug in Django 5.0 where facet filters in the admin would crash on a \
SimpleListFilter using a queryset without primary keys.
|
2024-02-09 11:34:29 by Adam Ciarcinski | Files touched by this commit (4) |
Log message:
Replace databases/py-mysqldb with databases/py-mysqlclient
|
2024-02-08 23:43:53 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-django: updated to 5.0.2
Django 5.0.2 fixes a security issue with severity “moderate” and several \
bugs in 5.0.1. Also, the latest string translations from Transifex are \
incorporated.
CVE-2024-24680: Potential denial-of-service in intcomma template filter
The intcomma template filter was subject to a potential denial-of-service attack \
when used with very long strings.
Bugfixes
Reallowed, following a regression in Django 5.0.1, filtering against local \
foreign keys not included in ModelAdmin.list_filter
Fixed a regression in Django 5.0 where links in the admin had an incorrect color
Fixed a bug in Django 5.0 that caused a crash of Model.full_clean() on models \
with a GeneratedField
Fixed a regression in Django 5.0 that caused a crash of FilteredRelation() with \
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()
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
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
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. Running \
makemigrations might generate no-op AlterField operations for fields using \
db_default
|
2024-01-09 13:56:11 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-django: updated to 4.2.9
4.2.9
Bugfixes
Fixed a regression in Django 4.2.8 where admin fields on the same line could \
overflow the page and become non-interactive
|
2023-12-04 18:25:15 by Adam Ciarcinski | Files touched by this commit (2) | |
Log message:
py-django: updated to 4.2.8
Django 4.2.8 fixes several bugs in 4.2.7 and adds compatibility with Python 3.12.
Bugfixes
Fixed a regression in Django 4.2 that caused makemigrations --check to stop \
displaying pending migrations
Fixed a regression in Django 4.2 that caused a crash of QuerySet.aggregate() \
with aggregates referencing other aggregates or window functions through \
conditional expressions
Fixed a regression in Django 4.2 that caused a crash when annotating a QuerySet \
with a Window expressions composed of a partition_by clause mixing field types \
and aggregation expressions
Fixed a regression in Django 4.2 where the admin’s change list page had \
misaligned pagination links and inputs when using list_editable
Fixed a regression in Django 4.2 where checkboxes in the admin would be centered \
on narrower screen widths
Fixed a regression in Django 4.2 that caused a crash of querysets with \
aggregations on MariaDB when the ONLY_FULL_GROUP_BY SQL mode was enabled
Fixed a regression in Django 4.2 where the admin’s read-only password widget \
and some help texts were incorrectly aligned at tablet widths
Fixed a regression in Django 4.2 that caused a migration crash on SQLite when \
altering unsupported Meta.db_table_comment
|
2023-11-01 21:14:52 by Adam Ciarcinski | Files touched by this commit (3) | |
Log message:
py-django: updated to 4.2.7
4.2.7
CVE-2023-46695: Potential denial of service vulnerability in UsernameField on Windows
|
2023-10-04 23:37:14 by Adam Ciarcinski | Files touched by this commit (6) |
Log message:
py-django: added version 4.2.6
What’s new in Django 4.2
Psycopg 3 support
Comments on columns and tables
Mitigation for the BREACH attack
In-memory file storage
Custom file storages
|