aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
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-06Merge pull request #2460 from mmarvick/masterJosé Padilla
Small fixes to the tutorial
2015-02-06Merge pull request #2527 from linovia/feature/secured_pypi_uploadTom Christie
Use twine to upload to pypi.
2015-02-06Add Twine to the requirements.Xavier Ordoquy
2015-02-06Add Twine to the requirements.Xavier Ordoquy
2015-02-06Fixed a typo.Xavier Ordoquy
2015-02-06Use twine to upload to pypi.Xavier Ordoquy
2015-02-05Revert some of the changes made in 1-serialization.mdMichael Marvick
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-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.
2015-02-04Merge pull request #2512 from heywbj/docsXavier Ordoquy
Add django-rest-framework-recursive to docs
2015-02-03docsWarren Jin
2015-02-03Merge pull request #2509 from jamescooke/doc-fixesTom Christie
Small documentation fixes
2015-02-03Small documentation fixesJames Cooke
* Remove "you you" from viewsets API-guide * Fix link from routers API-guide to viewsets API-guide
2015-02-03Merge pull request #2503 from tail/missing-space-error-stringTom Christie
Fixed missing whitespace in error string.
2015-02-02Fixed missing whitespace in error string.Jason Yan
2015-02-02Merge pull request #2501 from thedrow/patch-10Xavier Ordoquy
Fixed typos in docstrings
2015-02-02Fixed typos in docstrings.Omer Katz
2015-02-01Merge pull request #2498 from dustinfarris/update-eda-linkTom Christie
Update link for ember-django-adapter
2015-02-01Update link for ember-django-adapterDustin Farris
2015-02-01Merge pull request #2497 from jpadilla/masterJosé Padilla
Fix base_template examples
2015-02-01Fix base_template name in exampleJosé Padilla
2015-02-01Fixes #2493José Padilla
2015-01-31Merge pull request #2492 from tomchristie/empty_closable_objectsTom Christie
_closable_objects as an empty list, not deleted
2015-01-31_closable_objects as an empty list, not deletedempty_closable_objectsTom Christie
2015-01-30Added 1.8-alpha to supported list.Tom Christie
2015-01-30Docs typo. Closes #2491.Tom Christie
2015-01-29Merge pull request #2486 from maryokhin/masterTom Christie
Cleanup '.model' shortcut from code and docs
2015-01-29Removed deprecated '.model' docsTymur Maryokhin
2015-01-29Removed router check for deprecated '.model' attributeTymur Maryokhin
2015-01-28Merge pull request #2482 from mareknaskret/patch-1Tom Christie
Update filtering.md
2015-01-28Update filtering.mdmareknaskret
Updated links for django-guardian package.
2015-01-28Merge pull request #2475 from sdreher/masterTom Christie
ManyRelatedField.get_value clearing field on partial update
2015-01-28Merge pull request #2479 from lucaswiman/custom_user_shim_db_tableTom Christie
Use the proper db_table argument when constructing meta
2015-01-28Merge pull request #2473 from tomchristie/reload-settingsTom Christie
Reload api_settings when using Django's 'override_settings'
2015-01-27Use the proper db_table argument when constructing metaLucas Wiman
2015-01-28Fix #2476Xavier Ordoquy
2015-01-27Merge pull request #2474 from linovia/release/3.0.43.0.4Xavier Ordoquy
Release notes for 3.0.4
2015-01-27reorganize importsSusan Dreher
2015-01-27reorganize importsSusan Dreher
2015-01-27:bug: ManyRelatedField get_value clearing field on partial updateSusan Dreher
A PATCH to a serializer's non-related CharField was clearing an ancillary StringRelatedField(many=True) field. The issue appears to be in the ManyRelatedField's get_value method, which was returning a [] instead of empty when the request data was a MultiDict. This fix mirrors code in fields.py, class Field, get_value, Ln. 272, which explicitly returns empty on a partial update. Tests added to demonstrate the issue.