diff options
author | adam <adam@pkgsrc.org> | 2017-08-21 11:39:46 +0000 |
---|---|---|
committer | adam <adam@pkgsrc.org> | 2017-08-21 11:39:46 +0000 |
commit | 8bbb5b08134a146c6b90e48484402dd0d504a214 (patch) | |
tree | 9db9a79ae727c761edda0ae887432fb1afa76359 /www | |
parent | 5f45d4fa8d17e07f13dc4d714df3d6457a931af9 (diff) | |
download | pkgsrc-8bbb5b08134a146c6b90e48484402dd0d504a214.tar.gz |
2.0.10:
- Bugfix: Handling case of `None` user in request (@pawelad).
- Documentation corrections (@danielquinn).
- Bugfix: "invalid literal for int() with base 10: 'None'" for unversioned admin inline relations.
If, after updating, you still experience this issue, run the following in a Django shell:
.. code::
from reversion.models import Version
Version.objects.filter(object_id="None").delete()
**Important:** Ensure that none of your versioned models contain a string primary key where `"None"` is a valid value
before running this snippet!
Diffstat (limited to 'www')
-rw-r--r-- | www/py-django-reversion/Makefile | 8 | ||||
-rw-r--r-- | www/py-django-reversion/distinfo | 10 |
2 files changed, 9 insertions, 9 deletions
diff --git a/www/py-django-reversion/Makefile b/www/py-django-reversion/Makefile index 8406f6e979f..ae1c4f56314 100644 --- a/www/py-django-reversion/Makefile +++ b/www/py-django-reversion/Makefile @@ -1,6 +1,6 @@ -# $NetBSD: Makefile,v 1.18 2017/06/20 07:28:39 adam Exp $ +# $NetBSD: Makefile,v 1.19 2017/08/21 11:39:46 adam Exp $ -DISTNAME= django-reversion-2.0.9 +DISTNAME= django-reversion-2.0.10 PKGNAME= ${PYPKGPREFIX}-${DISTNAME} CATEGORIES= www python MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-reversion/} @@ -10,9 +10,9 @@ HOMEPAGE= https://github.com/etianen/django-reversion/ COMMENT= Version control facilities for Django LICENSE= modified-bsd -USE_LANGUAGES= # empty +DEPENDS+= ${PYPKGPREFIX}-django>=1.8:../../www/py-django -DEPENDS+= ${PYPKGPREFIX}-django-[0-9]*:../../www/py-django +USE_LANGUAGES= # empty .include "../../lang/python/egg.mk" .include "../../mk/bsd.pkg.mk" diff --git a/www/py-django-reversion/distinfo b/www/py-django-reversion/distinfo index fb3692608f3..282766034e2 100644 --- a/www/py-django-reversion/distinfo +++ b/www/py-django-reversion/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.17 2017/06/20 07:28:39 adam Exp $ +$NetBSD: distinfo,v 1.18 2017/08/21 11:39:46 adam Exp $ -SHA1 (django-reversion-2.0.9.tar.gz) = 332841e34bd55b6d46ab25989d84f8a6703d0ecb -RMD160 (django-reversion-2.0.9.tar.gz) = 30ecce219cde1a332a6c2ec3b251cf2caf14d34a -SHA512 (django-reversion-2.0.9.tar.gz) = d884a22f0e7f156428fc31c14711dbd23e1390aabb6cef6cabecafc95cd4c9696bee20ba3a6a4ca286af95df0cae7af41055932b4bb4e6f14ec17c2925c2dd7a -Size (django-reversion-2.0.9.tar.gz) = 62357 bytes +SHA1 (django-reversion-2.0.10.tar.gz) = 36097981547c8b89b39fc1244d4d8b7ae7b207e6 +RMD160 (django-reversion-2.0.10.tar.gz) = fa55d2a3b2b83a92ac4611fd81b66e4d1f0de2e5 +SHA512 (django-reversion-2.0.10.tar.gz) = 26ae3c592f42136f220d2c0e3a2bc43475f1d63380b22a0cc0f9dad7e8a33b4aca2852783b5091d040198152fa03c5535c0494e056dcfc5d69add1081204893c +Size (django-reversion-2.0.10.tar.gz) = 62695 bytes |