aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-02-11Merge branch 'version-3.1' of ↵version-3.1Tom Christie
https://github.com/tomchristie/django-rest-framework into version-3.1
2015-02-11Fix incorrect HTML parsing for DictFieldTom Christie
2015-02-09Merge pull request #2534 from JoarLeth/version-3.1Tom Christie
Fix typo in 3.1 announcement
2015-02-09Fix typo in 3.1 announcementJoar Leth
2015-02-09Merge masterTom Christie
2015-02-09Drop django master from the build matrix.Tom Christie
Currently always going to be a know failure case. We can add it back when we start to consdier Django 1.9 support.
2015-02-09Merge pull request #2530 from tomchristie/attribute-proxying-fixTom Christie
Fix misleading `AttributeError` tracebacks on `Request` objects.
2015-02-09Fix .gitignoreTom Christie
2015-02-09Fixes for latest version of pep8Tom Christie
2015-02-09pep8 fixTom Christie
2015-02-09Py3 compat fixTom Christie
2015-02-09Fix misleading AttributeErrorsTom Christie
2015-02-09Minor docs workTom Christie
2015-02-06Minor internal API cleanpuTom Christie
2015-02-06Minor cleanups/improvements to ModelSerializer APITom Christie
2015-02-06Merge pull request #2460 from mmarvick/masterJosé Padilla
Small fixes to the tutorial
2015-02-06Fix typoTom Christie
2015-02-06Minor cleanupTom Christie
2015-02-06Merge branch 'version-3.1' of ↵Tom Christie
git://github.com/jpadilla/django-rest-framework into version-3.1
2015-02-06Upgrade pending deprecations to deprecationsTom Christie
2015-02-06Merge pull request #2527 from linovia/feature/secured_pypi_uploadTom Christie
Use twine to upload to pypi.
2015-02-06Pagination imagesTom Christie
2015-02-06Add Twine to the requirements.Xavier Ordoquy
2015-02-06Add Twine to the requirements.Xavier Ordoquy
2015-02-06Internationalization docsTom Christie
2015-02-06Fixed a typo.Xavier Ordoquy
2015-02-06Use twine to upload to pypi.Xavier Ordoquy
2015-02-06Add trim_whitespace to CharField #2517José Padilla
If set to `True` then leading and trailing whitespace is trimmed. Defaults to `True`.
2015-02-05Revert some of the changes made in 1-serialization.mdMichael Marvick
2015-02-06Link to ModelSerializer APITom Christie
2015-02-06Merge branch 'version-3.1' of ↵Tom Christie
https://github.com/tomchristie/django-rest-framework into version-3.1
2015-02-06Tweak gitignoreTom Christie
2015-02-06Drop 2.x announcementsTom Christie
2015-02-05Merge pull request #2524 from Kaptian/patch-1Xavier Ordoquy
Allow non-standard User models with Throttling
2015-02-05Update throttling.pyKaptian
Use pk pseudo attribute for identifying the user (in case the user model is not the default and has a different column name for the unique id)
2015-02-05Merge pull request #2496 from jpadilla/version-3.1Tom Christie
Support for Django 1.8 ArrayField
2015-02-05Fix possible nested array fieldsJosé Padilla
2015-02-04Merge remote-tracking branch 'upstream/version-3.1' into version-3.1José Padilla
2015-02-04Add child to ListField when using ArrayFieldJosé Padilla
2015-02-05Minor bits of test cleanupTom Christie
2015-02-05Merge branch 'brandoncazander-version-3.1-2489' into version-3.1Tom Christie
2015-02-05Fix NamespaceVersioning with hyperlinked serializer fieldsTom Christie
2015-02-04Merge branch 'version-3.1-2489' of ↵Tom Christie
git://github.com/brandoncazander/django-rest-framework into brandoncazander-version-3.1-2489
2015-02-04Updating release notesTom Christie
2015-02-04Merge pull request #2518 from longhotsummer/patch-1Tom Christie
FIX: Don't default to list in method args
2015-02-04Parens around if clauseGreg Kempe
2015-02-04Merge pull request #2519 from Ofir-Purple/optimize-token-auth-queriesTom Christie
Prefetching the user object when getting the token in TokenAuthentication
2015-02-04Use inline ifGreg Kempe
2015-02-04Prefetching the user object when getting the token in TokenAuthentication.Ofir Ovadia
Since the user object is fetched 4 lines after getting Token from the database, this removes a DB query for each token-authenticated request.
2015-02-04FIX: Don't default to list in method argsGreg Kempe
Fixes @list_route and @detail_route so that they don't initialize their `methods` parameter as a list. In some cases the list gets cleared, and the result is that default parameter is now empty, and may get reused unexpectedly.