aboutsummaryrefslogtreecommitdiffstats
path: root/rest_framework
AgeCommit message (Collapse)Author
2014-10-01Use six.text_type instead of str everywhereTom Christie
2014-09-29Absolute URLs for file fieldsTom Christie
2014-09-29.validate() on serializer fieldsTom Christie
2014-09-29UniqueTogetherValidatorTom Christie
2014-09-29Uniqueness validationTom Christie
2014-09-26FileField and ImageFieldTom Christie
2014-09-26Simplify serialization slightlyTom Christie
2014-09-26Update version numberTom Christie
2014-09-26Added ListFieldTom Christie
2014-09-26Allow many, partial and context in BaseSerializerTom Christie
2014-09-26Release notesTom Christie
2014-09-26request.data attributeTom Christie
2014-09-25Partial supportTom Christie
2014-09-25Fix syntax errorTom Christie
2014-09-25Refuse to downcast from datetime to date or timeTom Christie
2014-09-25Check for redundant on SerializerMethodFieldTom Christie
2014-09-25Clean up bind - no longer needs to be called multiple times in nested fieldsTom Christie
2014-09-25Automatic field bindingTom Christie
2014-09-25Ensure proper sorting of 'choices' attribute on ChoiceFieldTom Christie
2014-09-24Enforce field_name != sourceTom Christie
2014-09-24Custom deepcopy on Field classesTom Christie
2014-09-24Merge branch 'master' into version-3.0Tom Christie
2014-09-24OPTIONS supportTom Christie
2014-09-23Merge pull request #1896 from dbrgn/csrf_responseTom Christie
Changed return status for CSRF failures to HTTP 403
2014-09-23NullBooleanFieldTom Christie
2014-09-23Tests for field choicesTom Christie
2014-09-23Changed return status for CSRF failures to HTTP 403Danilo Bargen
By default, Django returns "HTTP 403 Forbidden" responses when CSRF validation failed[1]. CSRF is a case of authorization, not of authentication. Therefore `PermissionDenied` should be raised instead of `AuthenticationFailed`. [1] https://docs.djangoproject.com/en/dev/ref/contrib/csrf/#rejected-requests
2014-09-22allow_blank, allow_nullTom Christie
2014-09-22Tests & tweaks for ChoiceFieldTom Christie
2014-09-22Tests and tweaks for choice fieldsTom Christie
2014-09-22More compat fixesTom Christie
2014-09-22Support format=None for date/time fieldsTom Christie
2014-09-22Tweaks to DecimalFieldTom Christie
2014-09-22Fix compat issuesTom Christie
2014-09-22Ensure 'messages' in fields are respected in preference to default validator ↵Tom Christie
messages
2014-09-22Tests and tweaks for text fieldsTom Christie
2014-09-22Field tests and associated cleanupTom Christie
2014-09-19Moar testsTom Christie
2014-09-19Version 2.4.32.4.3Tom Christie
2014-09-19Merge branch 'master' into version-3.0Tom Christie
2014-09-18Fix missing CSRF exemption on viewsetsPiper Merriam
2014-09-18Added a model update integration testTom Christie
2014-09-18ModelSerializer.create() to handle many to many by defaultTom Christie
2014-09-18First pass on ManyRelationTom Christie
2014-09-18Configuration correctness tests on ModelSerializerTom Christie
2014-09-18get_base_field() refactorTom Christie
2014-09-17Update routers.pyTom Christie
2014-09-17Merge pull request #1865 from mskrajnowski/default-router-listless-viewsetTom Christie
DefaultRouter support for viewsets without an implemented default action
2014-09-17Update initial migration to work on Python 3José Padilla
2014-09-17Update commentsTom Christie