aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2015-01-19Fix timedelta JSON serialization on Python 2.6.Fabien Bochu
2015-01-19Merge pull request #2427 from DavidMuller/pytest_version_bumpsXavier Ordoquy
Preliminary Support For Django 1.8 Alpha
2015-01-18Save objects before assigning them in InheritedModelSerializationTests; ↵David Muller
Django 1.8 now throws an error when assigning unsaved objects to Foreign Key, GenericForeignKey, and OneToOneFields
2015-01-18Add Django 1.8 alpha to test matrixDavid Muller
2015-01-18Bump pytest version in tox.ini to 2.6.4David Muller
2015-01-18Bump pytest-django version in tox.ini to 2.8.0David Muller
2015-01-18Bump pytest version to 2.6.4David Muller
2015-01-18Bump pytest-django version to 2.8.0David Muller
2015-01-14Preserve ordering on relationship drop-down choices. Closes #2408.Tom Christie
2015-01-13Merge pull request #2407 from philipn/filters_link_fixCarlton Gibson
Fix link to `django-rest-framework-filters`
2015-01-13Fix link to `django-rest-framework-filters` (formerlyPhilip Neustrom
`django-rest-framework-chain`)
2015-01-12Merge pull request #2399 from askholme/masterTom Christie
Fix for FileUploadParser with 3.x
2015-01-12Merge pull request #2401 from jpadilla/masterTom Christie
Fix ident format when using HTTP_X_FORWARDED_FOR
2015-01-12Fix error when NUM_PROXIES is greater than oneJosé Padilla
2015-01-11Fix ident format when using HTTP_X_FORWARDED_FORJosé Padilla
If NUM_PROXIES setting is set to None, HTTP_X_FORWARDED_FOR might be used as is, which might contain spaces and cause errors on cache backends like memcached.
2015-01-10Merge pull request #2398 from sloria/readme-linksJosé Padilla
Fix broken links in README
2015-01-10Make FileUploadParser work with standard django APIAsk Holme
Output from parsers ends up in a Django MergeDict and they exists elements to be dicts - not None
2015-01-10Fix broken links in READMESteven Loria
2015-01-10Merge pull request #2397 from travelton/TweakTutorialDocsTom Christie
Tweaked a few issues in the tutorial documentation.
2015-01-10Merge pull request #2385 from linovia/release/3.0.33.0.3Xavier Ordoquy
Release 3.0.3
2015-01-09Tweaked a few issues in the tutorial documentation.Travis Swientek
2015-01-08Update the release note with latest fixes.Xavier Ordoquy
Add the link to the 3.0.3 milestone.
2015-01-08Merge remote-tracking branch 'origin/master' into release/3.0.3Xavier Ordoquy
2015-01-08Ammend docstring to use python2/3 compatible example.Tom Christie
2015-01-08Fix broken 1.7.3. It's 1.7.2 - 1.7.3 is documented but not yet on PyPI.Tom Christie
2015-01-08Minimum 1.6.x version is 1.6.3Tom Christie
2015-01-08Minimum Django 1.5 version issue 1.5.6Tom Christie
2015-01-08Ensure urlparse is not publically exposed in compat.py - less chance of ↵Tom Christie
accidental conflict.
2015-01-08Merge branch 'master' of https://github.com/tomchristie/django-rest-frameworkTom Christie
2015-01-08Minor docs updatesTom Christie
2015-01-07Merge pull request #2386 from linovia/bugfix/drop_egg_supportTom Christie
Mark Django REST Framework as incompatible with eggs
2015-01-07Update project-management.mdTom Christie
2015-01-07Update project-management.mdTom Christie
2015-01-07Make Django REST Framework as zip unsafe.Xavier Ordoquy
2015-01-07Bumped the version to 3.0.3.Xavier Ordoquy
2015-01-07Release notes for 3.0.3Xavier Ordoquy
2015-01-07Merge pull request #2382 from JocelynDelalande/patch-1Tom Christie
fixed doc : DEFAULT_AUTHENTICATION_CLASSES -> DEFAULT_AUTHENTICATION
2015-01-07fixed doc : DEFAULT_AUTHENTICATION_CLASSES -> DEFAULT_AUTHENTICATIONJocelynDelalande
+ It is consistent with docs about DEFAULT_PERMISSION_CLASSES
2015-01-07Merge pull request #2379 from Gaffney/fix-compat-commentTom Christie
Fix compatibility comment regarding OrderedDict
2015-01-06Fix compatibility comment regarding OrderedDictRyan Gaffney
2015-01-06Update exception docs. Closes #2378.Tom Christie
2015-01-05Minor docs update. Refs #2375.Tom Christie
2015-01-05Pass init arguments through to serializer from pagination serializer.Tom Christie
Closes #2355. Normally a serializer won't need these arguments on __init__, but if a user has customized __init__ they may expect them to be available.
2015-01-05Udpate docstringTom Christie
2015-01-05required=False allows omission of value for output. Closes #2342Tom Christie
2015-01-05Ensure no invalid min_length/min_value/max_value arguments. Closes #2369.Tom Christie
2015-01-02Merge pull request #2371 from robbyt/patch-4Tom Christie
fix the serializer widget style formatting documentation
2015-01-01fix widget style formattingRob Terhaar
2014-12-30Merge pull request #2363 from kdazzle/models_meta-cleanupTom Christie
First pass at refactoring get_field_info in utils.model_meta
2014-12-29First pass at refactoring get_field_info in utils.model_metaKyle Valade