| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-02-12 | Test for None in 'dotted.source' component. | Tom Christie | |
| Closes #643. | |||
| 2013-02-12 | Unicode literal fix | Tom Christie | |
| 2013-02-12 | Test for #637. | Tom Christie | |
| 2013-02-12 | Remove deprecated APIs from tests | Tom Christie | |
| 2013-02-11 | Merge pull request #651 from fernandogrd/master | Tom Christie | |
| DictWithMetadata.__getstate__ was never called (Fix for 645) | |||
| 2013-02-11 | Make use o issubclass instead of isinstance (fix issue #645) | Fernando Rocha | |
| Because __mro__ is a list of classes and not instances. DictWithMetadata.__getstate__ was never called Signed-off-by: Fernando Rocha <fernandogrd@gmail.com> | |||
| 2013-02-07 | Allow serializers to handle dicts as well as objects. Fixes #447. | Tom Christie | |
| 2013-02-07 | Use new style of `required=<bool>` not `blank` or `null` | Tom Christie | |
| 2013-02-07 | Use new many=True relations style. | Tom Christie | |
| 2013-02-04 | Merge branch 'master' into 2.2 | Tom Christie | |
| 2013-02-04 | Fix incorrect test name. Fixes #635 | Tom Christie | |
| 2013-02-04 | Cleanup imports | Tom Christie | |
| Mostly adding `from __future__ import unicode_literals` everywhere. | |||
| 2013-02-04 | Merge branch 'py3k' into 2.2 | Tom Christie | |
| Conflicts: rest_framework/relations.py rest_framework/serializers.py rest_framework/tests/relations_hyperlink.py rest_framework/tests/relations_slug.py | |||
| 2013-02-01 | 3.2, 3.3 compat | Tom Christie | |
| 2013-02-01 | Merge branch 'p3k' of https://github.com/linovia/django-rest-framework into ↵ | Tom Christie | |
| working Conflicts: rest_framework/authentication.py rest_framework/relations.py rest_framework/serializers.py rest_framework/settings.py rest_framework/tests/authentication.py rest_framework/tests/genericrelations.py rest_framework/tests/generics.py rest_framework/tests/relations_hyperlink.py rest_framework/tests/relations_nested.py rest_framework/tests/relations_pk.py rest_framework/tests/serializer.py | |||
| 2013-01-30 | Merge branch 'master' into many-fields | Tom Christie | |
| Conflicts: rest_framework/relations.py | |||
| 2013-01-28 | Ensure model field validation is performed for ModelSerializers with a ↵ | Tom Christie | |
| custom restore_object method. Fixes #623. | |||
| 2013-01-26 | Merge branch 'master' into many-fields | Tom Christie | |
| 2013-01-23 | Add separate test for failed custom validation | Stephan Groß | |
| 2013-01-21 | Add failed testcase for fieldvalidation | Stephan Groß | |
| 2013-01-18 | Starting migration from ManyField to Field(many=True) | Tom Christie | |
| 2013-01-04 | Validation errors instead of exceptions when serializers receive incorrect ↵ | Tom Christie | |
| types. Fixes #402. | |||
| 2013-01-03 | Merge pull request #541 from yprez/default_and_partial_serializers2 | Tom Christie | |
| Fix "default" values and partial serializers. Fixes #532. | |||
| 2013-01-02 | Fixed unicode errors. | Xavier Ordoquy | |
| 2013-01-02 | Merge remote-tracking branch 'reference/py3k' into p3k | Xavier Ordoquy | |
| 2012-12-29 | Merge pull request #515 from yprez/blank_fields_issue | Tom Christie | |
| Fix for #514 | |||
| 2012-12-25 | Regression test for #532 - values overriden by "default" setting | Yuri Prezument | |
| 2012-12-19 | Merge remote-tracking branch 'upstream/master' into related-required | Mark Aaron Shirley | |
| 2012-12-19 | urls, patterns, include imports move to compat to support incoming 1.3 thru ↵ | Tom Christie | |
| 1.6 import compatability | |||
| 2012-12-19 | Failing test with partial serializer and foreign keys | Yuri Prezument | |
| 2012-12-17 | Failing test case for #514 | Yuri Prezument | |
| Serializer errors are: {'title': [u'This field is required.']} | |||
| 2012-12-15 | Added test for "positive_integer in choices tuple does not get parsed if not ↵ | Joel Marcotte | |
| string". Signed-off-by: Joel Marcotte <skaner@gmail.com> | |||
| 2012-12-12 | Clean up field initialization. Fixes #497 | Tom Christie | |
| 2012-12-11 | Fix broken nested fields | Tom Christie | |
| 2012-12-11 | Added depth test | George Kappel | |
| 2012-12-10 | get_excluded_fieldnames() should respect Meta options' ability to be either ↵ | Marko Tibold | |
| a tuple or list. Fixes #490. Refactored `if self.opt.fields` out of the for loop. Updated and cleaned up the validation-tests. | |||
| 2012-12-07 | Merge pull request #451 from markotibold/#431 | Tom Christie | |
| Call model's .full_clean() method, eg. to validate uniqueness | |||
| 2012-12-06 | Merge pull request #477 from roberts81/master | Tom Christie | |
| Fix for #460 | |||
| 2012-12-06 | Merge branch 'master' of ↵ | Marko Tibold | |
| https://github.com/tomchristie/django-rest-framework into #431 | |||
| 2012-12-06 | cleaned up white space & docstring styling | Ben Roberts | |
| 2012-12-05 | cleaned up last commit | Ben Roberts | |
| 2012-12-05 | added tests and fix for unpickleable metadata in SortedDictWithMetadata | Ben Roberts | |
| 2012-12-02 | Merge remote-tracking branch 'reference/master' into p3k | Xavier Ordoquy | |
| 2012-11-30 | fix test response | Pavel Savchenko | |
| 2012-11-30 | add traverse_related feature + tests (fixes issue#461) | Pavel Savchenko | |
| 2012-11-26 | Added an assertion to the tests that checks the '.errors' value for the ↵ | Marko Tibold | |
| unique-test | |||
| 2012-11-22 | Added a validate_unique test. | Marko Tibold | |
| 2012-11-22 | Added _post_clean() behaviour by adding a .perform_model_validation() method. | Marko Tibold | |
| Fixed some tests that were failing due to extra strict validation. | |||
| 2012-11-22 | First passing test under p3k \o/ | Xavier Ordoquy | |
| 2012-11-21 | Merge remote-tracking branch 'upstream/master' into partial-update | Mark Aaron Shirley | |
