Changes 1.9.5:
Made MultiPartParser ignore filenames that normalize to an empty string to fix crash in MemoryFileUploadHandler on specially crafted user input. Fixed a race condition in BaseCache.get_or_set(). It now returns the default value instead of False if there’s an error when trying to add the value to the cache. Fixed data loss on SQLite where DurationField values with fractional seconds could be saved as None. The forms in contrib.auth no longer strip trailing and leading whitespace from the password fields. The change requires users who set their password to something with such whitespace after a site updated to Django 1.9 to reset their password. It provides backwards-compatibility for earlier versions of Django. Fixed a memory leak in the cached template loader. Fixed a regression that caused collectstatic --clear to fail if the storage doesn’t implement path(). Fixed a crash when using a reverse lookup with a subquery when a ForeignKey has a to_field set to something other than the primary key. Fixed a regression in CommonMiddleware that caused spurious warnings in logs on requests missing a trailing slash. Restored the functionality of the admin’s raw_id_fields in list_editable. Fixed a regression with abstract model inheritance and explicit parent links. Fixed a migrations crash on SQLite when renaming the primary key of a model containing a ForeignKey to 'self'. Fixed JSONField inadvertently escaping its contents when displaying values after failed form validation.
This commit is contained in:
parent
66cd6002a1
commit
27c171468d
2 changed files with 7 additions and 9 deletions
|
@ -1,6 +1,6 @@
|
|||
# $NetBSD: Makefile,v 1.70 2016/03/06 14:17:06 adam Exp $
|
||||
# $NetBSD: Makefile,v 1.71 2016/04/08 16:20:18 adam Exp $
|
||||
|
||||
DISTNAME= Django-1.9.4
|
||||
DISTNAME= Django-1.9.5
|
||||
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
|
||||
CATEGORIES= www python
|
||||
MASTER_SITES= http://www.djangoproject.com/m/releases/${PKGVERSION_NOREV:R}/
|
||||
|
@ -10,8 +10,6 @@ HOMEPAGE= http://www.djangoproject.com/
|
|||
COMMENT= Django, a high-level Python Web framework
|
||||
LICENSE= modified-bsd
|
||||
|
||||
PREV_PKGPATH= www/py-django-devel
|
||||
|
||||
PLIST_SUBST+= PYVERSSUFFIX=${PYVERSSUFFIX:Q}
|
||||
|
||||
USE_LANGUAGES= # empty
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
$NetBSD: distinfo,v 1.53 2016/03/06 14:17:06 adam Exp $
|
||||
$NetBSD: distinfo,v 1.54 2016/04/08 16:20:18 adam Exp $
|
||||
|
||||
SHA1 (Django-1.9.4.tar.gz) = 30848b412df1f07b35ef280545900864d4d61cc7
|
||||
RMD160 (Django-1.9.4.tar.gz) = 649f869ed0bbc456f89280a3bcb19a1b2d8f024f
|
||||
SHA512 (Django-1.9.4.tar.gz) = 04fad81a135d3a43f19b3a01dbb6c2f97081fc53b3935489c6a6f456cd8b71b091bebfa7da7c83efa87eb01ca06e0973fcd71beae4669ff0338cf42ee930f173
|
||||
Size (Django-1.9.4.tar.gz) = 7426995 bytes
|
||||
SHA1 (Django-1.9.5.tar.gz) = 76fd84704650dca90b9c5ee0f6b7ab1132dcb3f5
|
||||
RMD160 (Django-1.9.5.tar.gz) = 788166c589251ef1d008dba732bb23ecf2c93696
|
||||
SHA512 (Django-1.9.5.tar.gz) = 12ef1e3bc5fb5b9d30e92c2c5b91c68fc9b1bc88bd1428af53c34e1ed7f2899b69061405680a01b260f9aa2a4a316cc8f036bb27bfcbcb1ca785896b7e4e175b
|
||||
Size (Django-1.9.5.tar.gz) = 7430219 bytes
|
||||
|
|
Loading…
Reference in a new issue