| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-10-31 | Merge pull request #1963 from carljm/lazy-fields | Tom Christie | |
| Set up serializer fields lazily on-demand. | |||
| 2014-10-31 | Merge pull request #1785 from gdoermann/master | Tom Christie | |
| Frameworks throws AssertionError saying you cannot set required=True and... | |||
| 2014-10-17 | Set up serializer fields lazily on-demand. | Carl Meyer | |
| This avoids AppRegistryNotReady problems in Django 1.7 with nested serializers, which are instantiated at import time, possibly before Django's app registry is fully populated. | |||
| 2014-09-01 | Generator implementation of class mapping. | Timo Tuominen | |
| 2014-09-01 | Add utility function to match classes in dictionary. | Timo Tuominen | |
| 2014-09-01 | Traverse the method resolution order when mapping serializer fields. | Timo Tuominen | |
| 2014-09-01 | Add subclass matching to serializer field mapping. | Timo Tuominen | |
| 2014-08-20 | Frameworks throws AssertionError saying you cannot set required=True and ↵ | Greg Doermann | |
| read_only=True on editable=False model fields. We should not make the field required if editable=False. | |||
| 2014-08-19 | Drop six from compat. 1.4.2 is now the lowest supported version. | Tom Christie | |
| 2014-08-19 | Code linting and added runtests.py | Tom Christie | |
| 2014-08-19 | Merge master | Tom Christie | |
| 2014-08-13 | ModelSerializer.restore_object - errors as list | John Whitlock | |
| When a ValueError is raised in ModelSerializer.restore_object, the error is set to a one-element list, rather than a bare string. | |||
| 2014-06-23 | Merge remote-tracking branch 'origin/master' into 2.4.0 | Xavier Ordoquy | |
| Conflicts: .travis.yml docs/api-guide/viewsets.md rest_framework/serializers.py rest_framework/throttling.py tests/test_generics.py tests/test_serializers.py tox.ini | |||
| 2014-05-22 | Fix _resolve_model to work with unicode strings | Piper Merriam | |
| 2014-05-19 | fix pep8 | allenhu | |
| 2014-05-16 | Added missing import. | Xavier Ordoquy | |
| 2014-04-30 | Merge remote-tracking branch 'origin/master' into 2.4.0 | Xavier Ordoquy | |
| Conflicts: .travis.yml rest_framework/serializers.py rest_framework/tests/test_authentication.py | |||
| 2014-04-29 | Merge remote-tracking branch 'upstream/master' | Emanuele Pucciarelli | |
| Conflicts: rest_framework/tests/models.py | |||
| 2014-04-24 | Add help_text and verbose_name attribute mapping for related field | Sergey Sinitsyn | |
| 2014-04-13 | Use setattr for adding fields to a new instance | Ian Foote | |
| Add test for restoring a GenericForeignKey | |||
| 2014-04-13 | Merge remote-tracking branch 'origin/master' into 2.4.0 | Xavier Ordoquy | |
| Conflicts: .travis.yml docs/api-guide/fields.md docs/api-guide/routers.md docs/topics/release-notes.md rest_framework/authentication.py rest_framework/serializers.py rest_framework/templatetags/rest_framework.py rest_framework/tests/test_authentication.py rest_framework/tests/test_filters.py rest_framework/tests/test_hyperlinkedserializers.py rest_framework/tests/test_serializer.py rest_framework/tests/test_testing.py rest_framework/utils/encoders.py tox.ini | |||
| 2014-04-12 | Set GenericForeignKey fields on object before save | Ian Foote | |
| * A model with a required GenericForeignKey can be saved if the field is set | |||
| 2014-03-31 | Merge pull request #1477 from vlastv/patch-1 | Xavier Ordoquy | |
| Writable star source with instance | |||
| 2014-03-28 | Do not check model_field's attributes if it is None | Emanuele Pucciarelli | |
| 2014-03-24 | Use help_text, verbose_name, editable attributes for related fields | Emanuele Pucciarelli | |
| 2014-03-20 | Merge pull request #1474 from elmehdikarami/master | Tom Christie | |
| Update serializers.py | |||
| 2014-03-20 | Fixed copy-paste | Vladislav Vlastovskiy | |
| 2014-03-20 | Moved get component from object after test source is star | Vladislav Vlastovskiy | |
| 2014-03-19 | Update serializers.py | elmkarami | |
| 2014-03-19 | Update serializers.py | elmkarami | |
| Prevent iterating over a string that is supposed to be an iterable <==> Prevent read_only_fields = ('some_string) | |||
| 2014-03-19 | Update serializers.py | elmkarami | |
| Prevent iterating over a string that is supposed to be an iterable <==> Prevent read_only_fields = ('some_string) | |||
| 2014-03-06 | Fixed the validation for optional fields that have a value. | Xavier Ordoquy | |
| 2014-03-05 | Fix typo | Rodolfo Carvalho | |
| 2014-02-11 | Test and quick fix for #1257 | Carlton Gibson | |
| 2014-02-04 | Fixes typo (Implicit instead of Implict). | juroe | |
| 2014-01-15 | Nicer write_only fields implementation. Closes #1355 | Tom Christie | |
| 2014-01-14 | Merge branch 'master' of git://github.com/sprymak/django-rest-framework into ↵ | Tom Christie | |
| sprymak-master | |||
| 2014-01-14 | Added write_only and write_only_fields. Refs #1306 | Tom Christie | |
| 2014-01-14 | Override HyperlinkedModelSerializerOptions url field name with ↵ | S.Prymak | |
| URL_FIELD_NAME setting | |||
| 2014-01-13 | Minor tweaks | Tom Christie | |
| 2014-01-13 | Move models.resolve_model to serializers._resolve_model | Dustin Farris | |
| 2014-01-13 | Make HyperlinkedModelSerializer `url` field name customizable | S.Prymak | |
| 2014-01-12 | Add a sanity check to avoid running into unresolved related models. | Dustin Farris | |
| 2014-01-12 | Check the modelfield's class instead | Yuri Prezument | |
| 2014-01-12 | Set `allow_none = True` for CharFields with null=True | Yuri Prezument | |
| 2014-01-02 | FIX BaseSerializer.from_native has an altered signature | Steven Cummings | |
| * base classes define it with one parameter * BaseSerializer currently defines a second parameter, which we make optional here for method-dispatch passivity | |||
| 2013-12-23 | fix for genericrelation saving | S. Andrew Sheppard | |
| 2013-12-23 | Merge branch 'bennbollay-patch-1' into 2.4.0 | Tom Christie | |
| Conflicts: .travis.yml docs/api-guide/routers.md rest_framework/compat.py tox.ini | |||
| 2013-12-21 | Less brittle through relationship testing. Closes #1292. | Tom Christie | |
| 2013-12-16 | Merge pull request #1184 from dpetzel/nullbooleanfield_fix | Tom Christie | |
| Fix infered field type for models.NullBooleanField | |||
