| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-05-16 | Added missing import. | Xavier Ordoquy | |
| 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-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-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-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 | |||
| 2013-12-16 | Fix expansion of writable nested serializers where the inner fields have ↵ | Craig de Stigter | |
| source set. | |||
| 2013-12-13 | Clean up implementation | Tom Christie | |
| 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-10 | Refine model manager behavior so as not to use the behavior in incorrect ↵ | Tom Christie | |
| cases. Closes #1205 | |||
| 2013-12-06 | Raise appropriate error in serializer when making a partial update to set a ↵ | Chuck Harmston | |
| required RelatedField to null (issue #1158) | |||
| 2013-11-18 | Another fix for nested writable serializers in case of the related_name ↵ | Xavier Ordoquy | |
| isn’t set on the ForeignKey. | |||
| 2013-11-17 | Fixed the nested model serializers in case of the related_name isn’t set. | Xavier Ordoquy | |
| 2013-11-11 | Typo on api-guide/fields.md and serializers.py | Doğan Çeçen | |
| 2013-11-08 | Merge pull request #1217 from benpbenp/master | Tom Christie | |
| Fix object creation with reverse M2M when related_name unspecified | |||
| 2013-11-08 | Fix object creation with reverse M2M when related_name unspecified | Ben Pietravalle | |
| It seems that field.related_query_name() does not return the related_name for reverse M2M relations when related_name is not explicitly set in the M2M field definition. So, change to use obj.get_accessor_name(), where obj is an instance of RelatedObject, as are returned by a model's _meta.get_all_related_many_to_many_objects(), or as in the tuples returned by _meta.get_all_m2m_objects_with_model(). | |||
| 2013-11-08 | Fixed a regression with ValidationError under Django 1.6 | Xavier Ordoquy | |
| 2013-11-05 | Improve handling of 'empty' values for ChoiceField | Mathieu Pillard | |
| The empty value defaults back to '' (for backwards-compatibility) but is changed automatically to None for ModelSerializers if the `null` property is set on the db field. | |||
| 2013-10-18 | This fix results in models.NullBooleanField rendering as a checkbox in the ↵ | dpetzel | |
| browsable API | |||
| 2013-10-17 | Merge pull request #1170 from craigds/write-into-foreignkey-with-source | Tom Christie | |
| fix writing into foreign key with non-null source | |||
| 2013-10-17 | Merge pull request #1112 from tamakisquare/issue-1111 | Tom Christie | |
| Test case and fix for issue 1111 | |||
| 2013-10-17 | Fix a docstring to reflect what the method does | Bruno Renié | |
| 2013-10-15 | [Fix]: Error with partial=True and validate_<name> | Colin Huang | |
| The error occurs when serializer is set with partial=True and a field-level validation is defined on a field, for which there's no corresponding update value in .data | |||
| 2013-10-11 | fix writing into foreign key with non-null source | Craig de Stigter | |
| 2013-10-10 | Merge branch 'master' of https://github.com/tomchristie/django-rest-framework | Tom Christie | |
| 2013-10-10 | Ensure read-only fields don't break with current HTML renderer behavior | Tom Christie | |
