| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2012-11-05 | Version 2.1.0. Adding release notes.2.1.0 | Tom Christie | |
| 2012-11-05 | slug_url_kwarg should default to same as slug_field | Tom Christie | |
| 2012-11-05 | Merge pull request #347 from minddust/master | Tom Christie | |
| support for passing custom slug options to HyperlinkedRelatedField | |||
| 2012-11-05 | Drop unneccesarily lenient dictionary-containing-instances serialization. | Tom Christie | |
| 2012-11-05 | fixed typo | Stephan Groß | |
| 2012-11-05 | added testcase for custom slug field in hyperlinkedrelatedfield | Stephan Groß | |
| 2012-11-05 | `queryset` argument is now optional on writable model fields. | Tom Christie | |
| 2012-11-05 | Tidy up serializer fields now we no longer use dynamic fields | Tom Christie | |
| 2012-11-05 | Add note on * import | Tom Christie | |
| 2012-11-05 | Swap position of `instance` and `data` keyword arguments. | Tom Christie | |
| 2012-11-05 | Merge remote-tracking branch 'upstream/master' | Stephan Groß | |
| 2012-11-05 | Include queryset missing exception on writable SlugField | Tom Christie | |
| 2012-11-05 | Merge pull request #364 from mjs7231/master | Tom Christie | |
| Fix for bug #363: ChoiceField missing in renderers.py | |||
| 2012-11-04 | Fix for bug #363: ChoiceField missing in renderers.py | Michael Shepanski | |
| 2012-11-04 | Remove `request' from response instance while | Jacob Magnusson | |
| testing caching | |||
| 2012-11-04 | Remove attributes that are not needed when caching | Jacob Magnusson | |
| the Response object. This fixes #346 | |||
| 2012-11-04 | Add tests for caching of GET/HEAD requests using | Jacob Magnusson | |
| Django's built in caching framework. Currently fails as some attributes on the Response object are not pickable | |||
| 2012-11-03 | Added test for ModelSerializer Meta fields | Jacob Magnusson | |
| returning as expected | |||
| 2012-11-03 | Added test that makes sure that fields with | Jacob Magnusson | |
| dictionaries as data are returned as expected and not turned into string representations | |||
| 2012-11-03 | Bye bye star import | Jacob Magnusson | |
| 2012-11-02 | Merge pull request #359 from tomchristie/relationship_tests | Tom Christie | |
| Relationship tests | |||
| 2012-11-02 | Tweaks | Tom Christie | |
| 2012-11-02 | foreign key tests | Tom Christie | |
| 2012-11-02 | Apply to_native on dictionary keys as well | Jacob Magnusson | |
| 2012-11-02 | Don't convert dictionary into a string representation | Jacob Magnusson | |
| 2012-11-02 | Initial PK relationship tests | Tom Christie | |
| 2012-11-02 | Fix issues with pk related fields in the browsable API.2.0.2 | Tom Christie | |
| 2012-11-01 | Tweaks fields docs, and fix 2.0.1 version.2.0.1 | Tom Christie | |
| 2012-11-01 | Merge master | Tom Christie | |
| 2012-11-01 | Relational field support in browseable API. | Tom Christie | |
| Add slug relational fields. Add quickstart. | |||
| 2012-11-01 | Merge pull request #351 from asfaltboy/fix_trans_choices | Tom Christie | |
| Return choices as unicode and not string | |||
| 2012-11-01 | Merge pull request #352 from asfaltboy/cleanup_MultipleObjectBaseView | Tom Christie | |
| cleanup MultipleObjectBaseView remains | |||
| 2012-11-01 | since MultipleObjectBaseView was renamed MultipleObjectAPIView, it stands to ↵ | Pavel Savchenko | |
| reason to complete the renaming in docs and comments as well. | |||
| 2012-11-01 | return choices as unicode and not string, | Pavel Savchenko | |
| might as well have jsonp return unicode | |||
| 2012-10-31 | fix 'from_native' method when rel is None | Otto Yiu | |
| 'NoneType' object has no attribute 'to' | |||
| 2012-10-31 | PUT as create should return 201. Fixes #340. | Tom Christie | |
| 2012-10-31 | added support for custom slug field and kwargs | Stephan Groß | |
| without subclassing HyperlinkedRelatedField and overwriting slug_url_kwarg and slug_field there is no possibility to use other fields / arguments. now you can do something like this: url(r'^users/(?P<username>\w[\w-]*)$', UserInstance.as_view(), name='user-detail') class ProjectSerializer(serializers.HyperlinkedModelSerializer): created_by = serializers.HyperlinkedRelatedField(view_name='user-detail', slug_url_kwargs='username', slug_field='username') | |||
| 2012-10-30 | Final docs tweaks for 2.0 | Tom Christie | |
| 2012-10-30 | Raise nicer exception if queryset not Set on writable related field. Refs: #338 | Tom Christie | |
| 2012-10-30 | Merge fixes for 'blank=True' fields. Fixes #324, Fixes #325 | Tom Christie | |
| Thanks to @Roarster. | |||
| 2012-10-30 | Allow use of absolute URLs when deserializing hyperlinked fields | Tom Christie | |
| 2012-10-30 | Hyperlinked serializer tests | Tom Christie | |
| 2012-10-30 | Merge pull request #335 from tomchristie/related-field-as-instance | Tom Christie | |
| Writable related fields should return a model instance from .from_native... | |||
| 2012-10-30 | Merge pull request #336 from markotibold/null_is_true_model_fields | Tom Christie | |
| Null is true model fields | |||
| 2012-10-30 | Fix some typos. | Marko Tibold | |
| 2012-10-30 | Set a ModelSerializer field to required=False if the ModelField has ↵ | Marko Tibold | |
| null=True set. | |||
| 2012-10-30 | Adding failing tests that show null=True model fields are won't validate if ↵ | Marko Tibold | |
| their value is omitted. | |||
| 2012-10-29 | Fix slug based put as create test | Tom Christie | |
| 2012-10-29 | Merge branch 'restframework2' of ↵ | Tom Christie | |
| https://github.com/tomchristie/django-rest-framework into restframework2 | |||
| 2012-10-29 | Fixes for urls with suffixes | Tom Christie | |
