Skip to content

Commit

Permalink
Changes 1.8.5:
Browse files Browse the repository at this point in the history
Made the development server’s autoreload more robust.
Fixed AssertionError in some delete queries with a model containing a field that is both a foreign and primary key.
Fixed AssertionError in some complex queries.
Fixed a migrations crash with GenericForeignKey.
Made translation.override() clear the overridden language when a translation isn’t initially active.
Fixed crash when using a value in ModelAdmin.list_display that clashed with a reverse field on the model.
Fixed autocompletion for options of non-argparse management commands.
Alphabetized ordering of imports in from django.db import migrations, models statement in newly created migrations.
Fixed migrations crash on MySQL when adding a text or a blob field with an unhashable default.
Changed Count queries to execute COUNT(*) instead of COUNT('*') as versions of Django before 1.8 did. This may fix a performance regression on some databases.
Fixed custom queryset chaining with values() and values_list().
Moved the unsaved model instance assignment data loss check on reverse relations to Model.save().
Readded inline foreign keys to form instances when validating model formsets.
Allowed using ORM write methods after disabling autocommit with set_autocommit(False).
Fixed the manage.py test --keepdb option on Oracle.
Fixed incorrect queries with multiple many-to-many fields on a model with the same ‘to’ model and with related_name set to ‘+’.
Fixed pickling a SimpleLazyObject wrapping a mode
  • Loading branch information
adam committed Oct 8, 2015
1 parent c56af36 commit 35d1ac6
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions www/py-django/Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# $NetBSD: Makefile,v 1.64 2015/08/24 10:45:22 adam Exp $
# $NetBSD: Makefile,v 1.65 2015/10/08 07:58:17 adam Exp $

DISTNAME= Django-1.8.4
DISTNAME= Django-1.8.5
PKGNAME= ${PYPKGPREFIX}-${DISTNAME:tl}
CATEGORIES= www python
MASTER_SITES= http://www.djangoproject.com/m/releases/${PKGVERSION_NOREV:R}/
Expand Down
8 changes: 4 additions & 4 deletions www/py-django/distinfo
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
$NetBSD: distinfo,v 1.46 2015/08/24 10:45:22 adam Exp $
$NetBSD: distinfo,v 1.47 2015/10/08 07:58:17 adam Exp $

SHA1 (Django-1.8.4.tar.gz) = 6399d89b84a09e70c0cdadb10b558172c3e182e3
RMD160 (Django-1.8.4.tar.gz) = da036bbd6eb5658bfca249073419ab34b0a59099
Size (Django-1.8.4.tar.gz) = 7265101 bytes
SHA1 (Django-1.8.5.tar.gz) = 86a0d2ab3c1a78b7d631aedbd97b2716aec493e8
RMD160 (Django-1.8.5.tar.gz) = 844abe2bd2200078a8698a210e0800315f88de14
Size (Django-1.8.5.tar.gz) = 7270297 bytes

0 comments on commit 35d1ac6

Please sign in to comment.