| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-11-27 | Fixed get_component method in Field to get working with subclassess of ↵ | Karol Sikora | |
| collections.Mapping | |||
| 2014-09-06 | Fixed #1533 - Resolved issue with integer keys on nested choices never ↵ | Christopher Adams | |
| validating. - Added unit test for nested `choices` argument. - Added unit test for non-nested `choices` argument. | |||
| 2014-09-05 | Use Serializer instead of ModelSerializer | Piotr Jakimiak | |
| 2014-09-05 | Fix comment | Piotr Jakimiak | |
| 2014-09-05 | Fix returning None when allow_none is True in CharField | Piotr Jakimiak | |
| 2014-08-19 | Drop six from compat. 1.4.2 is now the lowest supported version. | Tom Christie | |
| 2014-08-19 | Resolve linting issues | Tom Christie | |
| 2014-07-26 | Merge remote-tracking branch 'origin/master' into 2.4.0 | Xavier Ordoquy | |
| Conflicts: rest_framework/fields.py | |||
| 2014-06-27 | Merge branch 'master' into modelserialization-charfield-with-null | Serhiy Voyt | |
| 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-06-16 | typo in the docs | TankorSmash | |
| 2014-06-05 | Replace ChoiceField type_label | khamaileon | |
| 2014-05-22 | fields: allow help_text on SerializerMethodField | John Spray | |
| ...by passing through any extra *args and **kwargs to the parent constructor. Previously one couldn't assign help_text to a SerializerMethodField during construction. | |||
| 2014-05-20 | Merge pull request #1536 from Ian-Foote/choicefield_blank_display_value | Tom Christie | |
| Allow customising ChoiceField blank display value | |||
| 2014-05-09 | Merge pull request #1564 from alumni/master | Carlton Gibson | |
| Fixes #1535 (HTML widget missing `id` attribute) | |||
| 2014-05-08 | Merge pull request #1575 from ewdicus/iso8601 | Carlton Gibson | |
| Add colon to time zone offset in readable_datetime_formats | |||
| 2014-05-07 | Add colon to time zone offset in readable_datetime_formats | Elliott | |
| 2014-05-07 | In case of None value returns empty string instead of NoneType. | Serhiy Voyt | |
| 2014-05-06 | Charfied from_native method returns default instead of None. Updated tests. | Serhiy Voyt | |
| 2014-05-04 | Automatically set the field name as value for the HTML `id` attribute on the ↵ | Lucian Mocanu | |
| rendered widget. | |||
| 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-27 | Minor typo | Kamil Niski | |
| 2014-04-16 | Allow customising ChoiceField blank display value | Ian Foote | |
| 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-07 | Fixed comment. | Mauro de Carvalho | |
| 2014-02-27 | RelatedField default value handling fixed | Anton Shutik | |
| 2014-02-11 | Test and fix for #1210. World's lowest hanging fruit. | Carlton Gibson | |
| 2014-01-15 | Nicer write_only fields implementation. Closes #1355 | Tom Christie | |
| 2014-01-14 | Added write_only and write_only_fields. Refs #1306 | Tom Christie | |
| 2014-01-12 | CharField - add allow_null argument | Yuri Prezument | |
| 2014-01-12 | Possible fix for #1330 | Yuri Prezument | |
| Coerce None to '' in CharField.to_native() | |||
| 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-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 branch 'master' into 2.4.0 | Tom Christie | |
| Conflicts: .travis.yml docs/api-guide/routers.md docs/topics/release-notes.md rest_framework/compat.py | |||
| 2013-12-03 | Merge pull request #1250 from Ian-Foote/choice_field | Tom Christie | |
| Add choices to options metadata for ChoiceField. | |||
| 2013-11-27 | Updated the assertion message of the ImageField. | Omer Katz | |
| 2013-11-27 | Add unittests for ChoiceField metadata. | Ian Foote | |
| Rename 'name' to 'display_name'. | |||
| 2013-11-26 | Add more context to the ChoiceField metadata. | Ian Foote | |
| 2013-11-26 | Add choices to options metadata for ChoiceField. | Ian Foote | |
| 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-10 | Merge branch 'html-form-rendering' | Tom Christie | |
| 2013-10-10 | Ensure read-only fields don't break with current HTML renderer behavior | Tom Christie | |
| 2013-10-02 | Serializers can now be rendered directly to HTML | Tom Christie | |
| 2013-09-25 | Drop 1.3 support | Tom Christie | |
| 2013-09-13 | Try a more localised fix to the data=None problem | Philip Douglas | |
| 2013-08-30 | Merge master | Tom Christie | |
| 2013-08-29 | Make ChoiceField.from_native() follow IntegerField behaviour on empty values | Mathieu Pillard | |
| 2013-08-23 | Merge branch 'fix_937' of git://github.com/aburgel/django-rest-framework ↵ | Tom Christie | |
| into aburgel-fix_937 | |||
| 2013-08-21 | Merge master | Tom Christie | |
| 2013-08-19 | Only HTML forms should have implicit default False for boolean fields | Tom Christie | |
