pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/www/py-django



Module Name:    pkgsrc
Committed By:   adam
Date:           Mon May  8 04:58:58 UTC 2017

Modified Files:
        pkgsrc/www/py-django: Makefile PLIST distinfo

Log Message:
Changes 1.11.1:

Allowed disabling server-side cursors on PostgreSQL

Bugfixes:
Made migrations respect Index’s name argument. If you created a named index with Django 1.11, makemigrations will create a migration to recreate the index with the correct name.
Fixed a crash when using a __icontains lookup on a ArrayField.
Fixed a crash when using a two-tuple in EmailMessage’s attachments argument.
Fixed QuerySet.filter() crash when it references the name of a OneToOneField primary key.
Fixed empty POST data table appearing instead of “No POST data” in HTML debug page.
Restored BoundFields without any choices evaluating to True.
Prevented SessionBase.cycle_key() from losing session data if _session_cache isn’t populated.
Fixed layout of ReadOnlyPasswordHashWidget (used in the admin’s user change page).
Allowed prefetch calls on managers with custom ModelIterable subclasses.
Fixed change password link in the contrib.auth admin for el, es_MX, and pt translations.
Restored the output of the class attribute in the <ul> of widgets that use the multiple_input.html template. This fixes ModelAdmin.radio_fields with admin.HORIZONTAL.
Fixed crash in BaseGeometryWidget.subwidgets().
Fixed exception reraising in ORM query execution when cursor.execute() fails and the subsequent cursor.close() also fails.
Fixed a regression where CheckboxSelectMultiple, NullBooleanSelect, RadioSelect, SelectMultiple, and Select localized option values.
Corrected the stack level of unordered queryset pagination warnings.
Fixed a regression causing incorrect queries for __in subquery lookups when models use ForeignKey.to_field.
Fixed crash when overriding the template of django.views.static.directory_index().
Fixed a regression in formset min_num validation with unchanged forms that have initial data.
Prepared for cx_Oracle 6.0 support.
Updated the contrib.postgres SplitArrayWidget to use template-based widget rendering.
Fixed crash in BaseGeometryWidget.get_context() when overriding existing attrs.
Prevented AddIndex and RemoveIndex from mutating model state.
Prevented migrations from dropping database indexes from Meta.indexes when changing Field.db_index to False.
Fixed a regression in choice ordering in form fields with grouped and non-grouped options.
Fixed crash in BaseInlineFormSet._construct_form() when using save_as_new.
Fixed a regression where Model._state.db wasn’t set correctly on multi-table inheritance parent models after saving a child model.
Corrected the return type of ArrayField(CITextField()) values retrieved from the database.
Fixed QuerySet.prefetch_related() crash when fetching relations in nested Prefetch objects.
Prevented hiding GDAL errors if it’s not installed when using contrib.gis. (It’s a required dependency as of Django 1.11.)
Fixed a regression causing __in lookups on a foreign key to fail when using the foreign key’s parent model as the lookup


To generate a diff of this commit:
cvs rdiff -u -r1.84 -r1.85 pkgsrc/www/py-django/Makefile
cvs rdiff -u -r1.42 -r1.43 pkgsrc/www/py-django/PLIST
cvs rdiff -u -r1.65 -r1.66 pkgsrc/www/py-django/distinfo

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/www/py-django/Makefile
diff -u pkgsrc/www/py-django/Makefile:1.84 pkgsrc/www/py-django/Makefile:1.85
--- pkgsrc/www/py-django/Makefile:1.84  Wed Apr  5 17:08:48 2017
+++ pkgsrc/www/py-django/Makefile       Mon May  8 04:58:58 2017
@@ -1,9 +1,9 @@
-# $NetBSD: Makefile,v 1.84 2017/04/05 17:08:48 adam Exp $
+# $NetBSD: Makefile,v 1.85 2017/05/08 04:58:58 adam Exp $
 
-DISTNAME=      Django-1.11
+DISTNAME=      Django-1.11.1
 PKGNAME=       ${PYPKGPREFIX}-${DISTNAME:tl}
 CATEGORIES=    www python
-MASTER_SITES=  http://www.djangoproject.com/m/releases/${PKGVERSION_NOREV}/
+MASTER_SITES=  http://www.djangoproject.com/m/releases/${PKGVERSION_NOREV:R}/
 
 MAINTAINER=    joerg%NetBSD.org@localhost
 HOMEPAGE=      http://www.djangoproject.com/

Index: pkgsrc/www/py-django/PLIST
diff -u pkgsrc/www/py-django/PLIST:1.42 pkgsrc/www/py-django/PLIST:1.43
--- pkgsrc/www/py-django/PLIST:1.42     Wed Apr  5 17:08:48 2017
+++ pkgsrc/www/py-django/PLIST  Mon May  8 04:58:58 2017
@@ -1,4 +1,4 @@
-@comment $NetBSD: PLIST,v 1.42 2017/04/05 17:08:48 adam Exp $
+@comment $NetBSD: PLIST,v 1.43 2017/05/08 04:58:58 adam Exp $
 bin/django-admin${PYVERSSUFFIX}
 bin/django-admin${PYVERSSUFFIX}.py
 ${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
@@ -2995,6 +2995,7 @@ ${PYSITELIB}/django/contrib/postgres/fun
 ${PYSITELIB}/django/contrib/postgres/indexes.py
 ${PYSITELIB}/django/contrib/postgres/indexes.pyc
 ${PYSITELIB}/django/contrib/postgres/indexes.pyo
+${PYSITELIB}/django/contrib/postgres/jinja2/postgres/widgets/split_array.html
 ${PYSITELIB}/django/contrib/postgres/locale/ar/LC_MESSAGES/django.mo
 ${PYSITELIB}/django/contrib/postgres/locale/ar/LC_MESSAGES/django.po
 ${PYSITELIB}/django/contrib/postgres/locale/be/LC_MESSAGES/django.mo
@@ -3113,6 +3114,7 @@ ${PYSITELIB}/django/contrib/postgres/sea
 ${PYSITELIB}/django/contrib/postgres/signals.py
 ${PYSITELIB}/django/contrib/postgres/signals.pyc
 ${PYSITELIB}/django/contrib/postgres/signals.pyo
+${PYSITELIB}/django/contrib/postgres/templates/postgres/widgets/split_array.html
 ${PYSITELIB}/django/contrib/postgres/utils.py
 ${PYSITELIB}/django/contrib/postgres/utils.pyc
 ${PYSITELIB}/django/contrib/postgres/utils.pyo

Index: pkgsrc/www/py-django/distinfo
diff -u pkgsrc/www/py-django/distinfo:1.65 pkgsrc/www/py-django/distinfo:1.66
--- pkgsrc/www/py-django/distinfo:1.65  Wed Apr  5 17:08:48 2017
+++ pkgsrc/www/py-django/distinfo       Mon May  8 04:58:58 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.65 2017/04/05 17:08:48 adam Exp $
+$NetBSD: distinfo,v 1.66 2017/05/08 04:58:58 adam Exp $
 
-SHA1 (Django-1.11.tar.gz) = 7f6f1f8c7275cd503058cd847b80ffad9321f7d4
-RMD160 (Django-1.11.tar.gz) = d8e897f1c3dd394b40e90458516fc1d2febdc3a4
-SHA512 (Django-1.11.tar.gz) = 31e14ec186d1b0dade0b7c0132c38177c4d5a3f5e8f755b81b556b6884912674bd1a3f8488194f4d7647804426a06663f0a19e2d56502a84c75553a459a64c55
-Size (Django-1.11.tar.gz) = 7853479 bytes
+SHA1 (Django-1.11.1.tar.gz) = c12f28ce78926b70241102391d86a92cf07110f1
+RMD160 (Django-1.11.1.tar.gz) = 9c66c59172240f57920c8cfee720311b6dea69e8
+SHA512 (Django-1.11.1.tar.gz) = d0e7e272835a453d010fa449d7affdf3b1572ed009871c6cd156e7f093f15737d8c5f8c80ba6e879d467b278b27c095a3d95d8720d64cc1f891629c0254a7291
+Size (Django-1.11.1.tar.gz) = 7857868 bytes



Home | Main Index | Thread Index | Old Index