| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-03-02 | Support for running the test suite with py.test | Andreas Pelme | |
| * Get rid of runtests.py * Moved test code from rest_framework/tests and rest_framework/runtests to tests * Invoke py.test from setup.py * Invoke py.test from Travis * Invoke py.test from tox * Changed setUpClass to be just plain setUp in test_permissions.py * Updated contribution guideline to show how to invoke py.test | |||
| 2014-02-28 | Merge pull request #1437 from Keats/master | Tom Christie | |
| Display the media type of the API response on the browsable API | |||
| 2014-02-27 | Allow 'None' to pass as a null value in RelatedFields | Dustin Farris | |
| 2014-02-26 | Display the media type of the API response on the browsable API | Keats | |
| 2014-02-26 | Demonstrate problem post/put'ing serialized data that contains 'None' | Dustin Farris | |
| 2014-02-13 | Merge pull request #1397 from amezhenin/issue_1386 | Tom Christie | |
| update regex for matching URLs, fixes issue #1386 | |||
| 2014-02-13 | (I hope) tests are fixed, issue #1386 | Artem Mezhenin | |
| 2014-02-13 | change regex back, issue #1386 | Artem Mezhenin | |
| 2014-02-11 | Test and fix for #1210. World's lowest hanging fruit. | Carlton Gibson | |
| 2014-02-11 | Test and quick fix for #1257 | Carlton Gibson | |
| 2014-02-09 | issue #1386 | Artem Mezhenin | |
| * regex for matching URLs was rewritten * added unittests | |||
| 2014-01-28 | Add file upload test for APIRequestFactory | Ian Foote | |
| Remove test_compat | |||
| 2014-01-28 | Import force_bytes on django >= 1.5 | Ian Foote | |
| 2014-01-17 | Merge pull request #1361 from ross/x_method_override | Tom Christie | |
| always obey X-HTTP-METHOD-OVERRIDE header | |||
| 2014-01-17 | always obey X-HTTP-METHOD-OVERRIDE header | Ross McFarland | |
| required to support old flash/flex clients that need to do everything as GET requests (apparently to allow for any error handlings) | |||
| 2014-01-17 | Encode django QuerySets to lists and not dicts in JSONEncoder | Mathieu Pillard | |
| 2014-01-15 | Security update to OrderingFilter2.3.12 | Tom Christie | |
| 2014-01-14 | Merge branch 'master' of git://github.com/sprymak/django-rest-framework into ↵ | Tom Christie | |
| sprymak-master | |||
| 2014-01-14 | Test for customizable HyperlinkedModelSerializer url field name | S.Prymak | |
| 2014-01-14 | Added write_only and write_only_fields. Refs #1306 | Tom Christie | |
| 2014-01-13 | Merge branch 'testing-nested-serializers' of ↵ | Tom Christie | |
| git://github.com/dustinfarris/django-rest-framework into dustinfarris-testing-nested-serializers | |||
| 2014-01-13 | Move ImportingModelSerializerTests and add comments. | Dustin Farris | |
| 2014-01-13 | Move models.resolve_model to serializers._resolve_model | Dustin Farris | |
| 2014-01-12 | Add a sanity check to avoid running into unresolved related models. | Dustin Farris | |
| 2014-01-09 | Test case for #1129 | Xavier Ordoquy | |
| 2014-01-09 | Move serializer import to top-level causes test error | Dustin Farris | |
| 2014-01-08 | Testing nested serializers with models that have str foreign key references. | Dustin Farris | |
| 2013-12-23 | can't save genericrelations via nested serializers in django 1.6 | S. Andrew Sheppard | |
| 2013-12-23 | Tweak test style | Tom Christie | |
| 2013-12-23 | Updated tests to pass in python 3 | Tom Christie | |
| 2013-12-23 | fix url double quoted in Django 1.6 | Yin Jifeng | |
| get_full_path returns unicode, so we use build_absolute_uri which returns iri_to_uri'ed one | |||
| 2013-12-21 | Merge pull request #1309 from lukaszb/errors-for-renamed-fields | Tom Christie | |
| Should it be that way? | |||
| 2013-12-21 | Additional test for 'source' behaviour. Refs #1302 | Tom Christie | |
| 2013-12-20 | Should it be that way? | Lukasz Balcerzak | |
| 2013-12-20 | Merge pull request #1308 from lukaszb/missing-custom-validation-method-test | Tom Christie | |
| Added missing custom validation method test | |||
| 2013-12-20 | Added missing custom validation method test | Lukasz Balcerzak | |
| 2013-12-20 | Updated test class name to be unique | Lukasz Balcerzak | |
| 2013-12-16 | Merge branch 'nullbooleanfield_testcase' of ↵ | Tom Christie | |
| git://github.com/dpetzel/django-rest-framework into dpetzel-nullbooleanfield_testcase Conflicts: rest_framework/tests/test_serializer.py | |||
| 2013-12-16 | Fix expansion of writable nested serializers where the inner fields have ↵ | Craig de Stigter | |
| source set. | |||
| 2013-12-13 | Compat fixes for django-oauth-plus versions 2.0-2.2.1 | Tom Christie | |
| 2013-12-13 | Merge branch 'master' of git://github.com/philipforget/django-rest-framework ↵ | Tom Christie | |
| into philipforget-master | |||
| 2013-12-13 | Fix default values always being False for browsable API | Kevin Brown | |
| This fixes a bug that was introduced in 28ff6fb [1] for the browsable API, specifically with how it handled default values for boolean fields. Previously, it had a global default for boolean fields set to `False`, which was different than the standard None that was used elsewhere. Because this only needed to be done for the browsable API, a fix was put into place that only set the default to `False` when form data was passed into the serializer. This had the unintended side effect of overriding any default set on the boolean field. This fixes #1101 [2] by only overriding the default if the default is `None`, which is the default for all fields. [1]: https://github.com/tomchristie/django-rest-framework/commit/28ff6fb1ec02b7a04c4a0db54885f3735b6dd43f [2]: https://github.com/tomchristie/django-rest-framework/issues/1101 | |||
| 2013-12-13 | Merge pull request #1234 from linovia/bugfix/nested_models_without_related_name | Tom Christie | |
| Fixed the nested model serializers in case of the related_name isn’t set... | |||
| 2013-12-09 | Fix compat issues for #1231 | Tom Christie | |
| 2013-12-09 | Merge branch 'issue-1231-jsonencoder' of ↵ | Tom Christie | |
| git://github.com/mbox/django-rest-framework into mbox-issue-1231-jsonencoder | |||
| 2013-12-09 | Merge master | Tom Christie | |
| 2013-12-09 | Drop unneeded assert | Tom Christie | |
| 2013-12-09 | Catch and mask ParseErrors that occur during rendering of the BrowsableAPI. | Tom Christie | |
| 2013-12-06 | Version 2.3.102.3.10 | Tom Christie | |
| 2013-12-06 | Raise appropriate error in serializer when making a partial update to set a ↵ | Chuck Harmston | |
| required RelatedField to null (issue #1158) | |||
