| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-12-13 | Merge pull request #1281 from alanjds/router-prefix-patch | Tom Christie | |
| 'lookup_prefix' on SimpleRouter.get_lookup_regex, easing code de-duplication | |||
| 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-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-13 | Allow NUM_PROXIES=0 and include more docs | Tom Christie | |
| 2013-12-10 | SimpleRouter.get_lookup_regex got lookup_prefix | Alan Justino | |
| This allows @alanjds/drf-nested-routers to not duplicate/monkeypatch work made here | |||
| 2013-12-10 | Refine model manager behavior so as not to use the behavior in incorrect ↵ | Tom Christie | |
| cases. Closes #1205 | |||
| 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 | PEP8 Compliance | kahnjw | |
| 2013-12-06 | Add get_ident method to pass new tests. | kahnjw | |
| 2013-12-06 | Add tests to pass for get_ident method in BaseThrottle class. | kahnjw | |
| 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) | |||
| 2013-12-05 | Boilerplate cuteness | Tom Christie | |
| 2013-12-03 | Remove Content-Type header from empty responses. Fixes #1196 | Tom Christie | |
| 2013-12-03 | First pass at a test for ParseErrors breaking the browsable API | Tom Christie | |
| 2013-12-03 | Merge pull request #1250 from Ian-Foote/choice_field | Tom Christie | |
| Add choices to options metadata for ChoiceField. | |||
| 2013-12-03 | Catch errors during parsing and set empty .DATA/.FILES before re-raising. | Tom Christie | |
| 2013-12-03 | Adds pre_delete and post_delete hooks on | Pablo Recio | |
| 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-22 | Remove u from literals | Malcolm Box | |
| 2013-11-21 | Fix issue #1231: JSONEncoder doesn't handle dict-like objects | Malcolm Box | |
| Check for __getitem__ and then attempt to convert to a dict. The check for __getitem__ is there as there's no universal way to check if an object is a mapping type, but this is a likely proxy | |||
| 2013-11-21 | Merge pull request #1229 from jgomezb/patch-2 | Tom Christie | |
| Update urlpatterns.py | |||
| 2013-11-19 | Added handling of validation errors in PUT-as-create. | Krzysztof Jurewicz | |
| Fixes #1035. | |||
| 2013-11-18 | Removed the DynamicSerializerView duplication | Xavier Ordoquy | |
| 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-15 | add auth param to request client calls | Philip Forget | |
| 2013-11-15 | Version 2.3.92.3.9 | Tom Christie | |
| 2013-11-14 | pass oauth_timestamp to oauth_provider | Philip Forget | |
| 2013-11-14 | Update urlpatterns.py | jgomezb | |
| Allow numbers in format extension. | |||
| 2013-11-13 | Undo version bump | Alex | |
| 2013-11-12 | Bump version | Alex | |
| 2013-11-12 | Merge branch 'master' into allow-aggregate-ordering | Alex | |
| 2013-11-12 | Add queryset aggregates to allowed fields in OrderingFilter | Alex | |
| 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-06 | Drop u'' prefix for python 3.x compatibility | Mathieu Pillard | |
| 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-31 | Fixed exception handling with YAML and XML parsers. | Rob Hudson | |
