pkgsrc-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: pkgsrc/www/py-django-tastypie
Module Name: pkgsrc
Committed By: rodent
Date: Thu Jan 12 01:13:12 UTC 2017
Modified Files:
pkgsrc/www/py-django-tastypie: Makefile PLIST distinfo
Log Message:
v0.13.3
Date: 2016-02-17
Bugfixes
Permit changing existing value on a ToOneField to None. (Closes #1449)
v0.13.2
Date: 2016-02-14
Bugfixes
Fix in Resource.save_related: related_obj can be empty in patch requests (introduced in #1378). (Fixes #1436)
Fixed bug that prevented fitlering on related resources. apply_filters hook now used in obj_get. (Fixes #1435, Fixes #1443)
Use build_filters in obj_get. (Fixes #1444)
Updated DjangoAuthorization to disallow read unless a user has change permission. (#1407, PR #1409)
Authorization classes now handle usernames containing spaces. Closes #966.
Cleaned up old, unneeded code. (closes PR #1433)
Reuse Django test Client.patch(). (@SeanHayes, closes #1442)
Just a typo fix in the testing docs (by @bezidejni, closes #810)
Removed references to patterns() (by @SeanHayes, closes #1437)
Removed deprecated methods Resource.apply_authorization_limits and Authorization.apply_limits from code and documentation. (by @SeanHayes, closes #1383, #1045, #1284, #837)
Updates docs/cookbook.rst to make sure it's clear which url to import. (by @yuvadm, closes #716)
Updated docs/tutorial.rst. Without "null=True, blank=True" parameters in Slugfield, expecting "automatic slug generation" in save method is pointless. (by @orges, closes #753)
Cleaned up Riak docs. (by @SeanHayes, closes #275)
Include import statement for trailing_slash. (by @ljosa, closes #770)
Fix docs: Meta.filtering is actually a dict. (by @georgedorn, closes #807)
Fix load data command. (by @blite, closes #357, #358)
Related schemas no longer raise error when not URL accessible. (Fixes PR #1439)
Avoid modifying Field instances during request/response cycle. (closes #1415)
Removing the Manager dependency in ToManyField.dehydrate(). (Closes #537)
v0.13.1
Date: 2016-01-25
Bugfixes
Prevent muting non-tastypie's exceptions (#1297, PR #1404)
Gracefully handle UnsupportFormat exception (#1154, PR #1417)
Add related schema urls (#782, PR #1309)
Repr value must be str in Py2 (#1421, PR #1422)
Fixed assertHttpAccepted (PR #1416)
v0.13.0
Date: 2016-01-12
Dropped Django 1.5-1.6 support, added Django 1.9.
Bugfixes
Various performance improvements (#1330, #1335, #1337, #1363)
More descriptive error messages (#1201)
Throttled requests now include Retry-After header. (#1204)
In DecimalField.hydrate, catch decimal.InvalidOperation and raise ApiFieldError (#862)
Add 'primary_key' Field To Schema (#1141)
ContentTypes: Remove 'return' in __init__; remove redundant parentheses (#1090)
Allow callable strings for ToOneField.attribute (#1193)
Ensure Tastypie doesn't return extra data it received (#1169)
In DecimalField.hydrate, catch decimal.InvalidOperation and raise ApiFieldError (#862)
Fixed tastypie's losing received microseconds. (#1126)
Data leakage fix (#1203)
Ignore extra related data (#1336)
Suppress Content-Type header on HTTP 204 (see #111) (#1054)
Allow creation of related resources that have an 'items' related_name (supercedes #1000) (#1340)
Serializers: remove unimplemented to_html/from_html (#1343)
If GEOS is not installed then exclude geos related calls. (#1348)
Fixed Resource.deserialize() to honor format parameter (#1354 #1356, #1358)
Raise ValueError when trying to register a Resource class instead of a Resource instance. (#1361)
Fix hydrating/saving of related resources. (#1363)
Use Tastypie DateField for DateField on the model. (SHA: b248e7f)
ApiFieldError on empty non-null field (#1208)
Full schema (all schemas in a single request) (#1207)
Added verbose_name to API schema. (#1370)
Fixes Reverse One to One Relationships (Replaces #568) (#1378)
Fixed "GIS importerror vs improperlyconfigured" (#1384)
Fixed bug which occurs when detail_uri_name field has a default value (Issue #1323) (#1387)
Fixed disabling cache using timeout=0, fixes #1213, #1212 (#1399)
Removed Django 1.5-1.6 support, added 1.9 support. (#1400)
stop using django.conf.urls.patterns (#1402)
Fix for saving related items when resource_uri is provided but other unique data is not. (#1394) (#1410)
v0.12.2
Date: 2015-07-16
Dropped Python 2.6 support, added Django 1.8.
Bugfixes
Dropped support for Python 2.6
Added support for Django 1.8
Fix stale data caused by prefetch_related cache (SHA: b78661d)
To generate a diff of this commit:
cvs rdiff -u -r1.7 -r1.8 pkgsrc/www/py-django-tastypie/Makefile
cvs rdiff -u -r1.2 -r1.3 pkgsrc/www/py-django-tastypie/PLIST
cvs rdiff -u -r1.4 -r1.5 pkgsrc/www/py-django-tastypie/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-tastypie/Makefile
diff -u pkgsrc/www/py-django-tastypie/Makefile:1.7 pkgsrc/www/py-django-tastypie/Makefile:1.8
--- pkgsrc/www/py-django-tastypie/Makefile:1.7 Wed Jun 8 17:43:48 2016
+++ pkgsrc/www/py-django-tastypie/Makefile Thu Jan 12 01:13:12 2017
@@ -1,6 +1,6 @@
-# $NetBSD: Makefile,v 1.7 2016/06/08 17:43:48 wiz Exp $
+# $NetBSD: Makefile,v 1.8 2017/01/12 01:13:12 rodent Exp $
-DISTNAME= django-tastypie-0.12.1
+DISTNAME= django-tastypie-0.13.3
PKGNAME= ${PYPKGPREFIX}-${DISTNAME}
CATEGORIES= python www
MASTER_SITES= ${MASTER_SITE_PYPI:=d/django-tastypie/}
Index: pkgsrc/www/py-django-tastypie/PLIST
diff -u pkgsrc/www/py-django-tastypie/PLIST:1.2 pkgsrc/www/py-django-tastypie/PLIST:1.3
--- pkgsrc/www/py-django-tastypie/PLIST:1.2 Sun Nov 9 21:57:00 2014
+++ pkgsrc/www/py-django-tastypie/PLIST Thu Jan 12 01:13:12 2017
@@ -1,8 +1,9 @@
-@comment $NetBSD: PLIST,v 1.2 2014/11/09 21:57:00 rodent Exp $
+@comment $NetBSD: PLIST,v 1.3 2017/01/12 01:13:12 rodent Exp $
${PYSITELIB}/${EGG_INFODIR}/PKG-INFO
${PYSITELIB}/${EGG_INFODIR}/SOURCES.txt
${PYSITELIB}/${EGG_INFODIR}/dependency_links.txt
${PYSITELIB}/${EGG_INFODIR}/not-zip-safe
+${PYSITELIB}/${EGG_INFODIR}/pbr.json
${PYSITELIB}/${EGG_INFODIR}/requires.txt
${PYSITELIB}/${EGG_INFODIR}/top_level.txt
${PYSITELIB}/tastypie/__init__.py
@@ -86,15 +87,6 @@ ${PYSITELIB}/tastypie/resources.pyo
${PYSITELIB}/tastypie/serializers.py
${PYSITELIB}/tastypie/serializers.pyc
${PYSITELIB}/tastypie/serializers.pyo
-${PYSITELIB}/tastypie/south_migrations/0001_initial.py
-${PYSITELIB}/tastypie/south_migrations/0001_initial.pyc
-${PYSITELIB}/tastypie/south_migrations/0001_initial.pyo
-${PYSITELIB}/tastypie/south_migrations/0002_add_apikey_index.py
-${PYSITELIB}/tastypie/south_migrations/0002_add_apikey_index.pyc
-${PYSITELIB}/tastypie/south_migrations/0002_add_apikey_index.pyo
-${PYSITELIB}/tastypie/south_migrations/__init__.py
-${PYSITELIB}/tastypie/south_migrations/__init__.pyc
-${PYSITELIB}/tastypie/south_migrations/__init__.pyo
${PYSITELIB}/tastypie/templates/tastypie/basic.html
${PYSITELIB}/tastypie/templates/tastypie/detail.html
${PYSITELIB}/tastypie/templates/tastypie/list.html
Index: pkgsrc/www/py-django-tastypie/distinfo
diff -u pkgsrc/www/py-django-tastypie/distinfo:1.4 pkgsrc/www/py-django-tastypie/distinfo:1.5
--- pkgsrc/www/py-django-tastypie/distinfo:1.4 Wed Nov 4 02:47:26 2015
+++ pkgsrc/www/py-django-tastypie/distinfo Thu Jan 12 01:13:12 2017
@@ -1,6 +1,6 @@
-$NetBSD: distinfo,v 1.4 2015/11/04 02:47:26 agc Exp $
+$NetBSD: distinfo,v 1.5 2017/01/12 01:13:12 rodent Exp $
-SHA1 (django-tastypie-0.12.1.tar.gz) = 10b58b575cae643b96e51ce0ba3408579c7e87bf
-RMD160 (django-tastypie-0.12.1.tar.gz) = 53c47d518f7bcee4e1a4fe5b443b6401a27e45f0
-SHA512 (django-tastypie-0.12.1.tar.gz) = f1d23e3c8f974a5438552c587727577efc7fa4dce419f6f8ce00bcf41fa73774465a66767f30bd24481e9f93a33252b4fe714a9bb8b52942d01cbce0d5137c0a
-Size (django-tastypie-0.12.1.tar.gz) = 730543 bytes
+SHA1 (django-tastypie-0.13.3.tar.gz) = 56711762ac4fab62e0de9939a388915c6bf759c4
+RMD160 (django-tastypie-0.13.3.tar.gz) = ca858583a2b90ab7740f53a1b56b580ff192aa34
+SHA512 (django-tastypie-0.13.3.tar.gz) = 5e510c9898d5805d6bf732cfdf2c8efde05ac5eed6c9ef37117eb80b49c55244f9eb2e20b5c10f77eb30d6b867f9294b445ea00676e927af625d851edd6fdf1f
+Size (django-tastypie-0.13.3.tar.gz) = 144649 bytes
Home |
Main Index |
Thread Index |
Old Index