| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-04-13 | Merge pull request #2819 from xrmx/update-2.4-docs-urlversion-2.4.x | Xavier Ordoquy | |
| Update 2.4 docs url | |||
| 2015-04-10 | Update 2.4 docs url | Riccardo Magliocchetti | |
| Point to version 2 docs instead of the latest and greatest docs. | |||
| 2015-04-08 | Merge pull request #2755 from rouge8/tab-switching-backport | Xavier Ordoquy | |
| Backport 7872d0acbffeea5f4420aae5627f8767c6418ba3 to 2.4.x | |||
| 2015-03-24 | Pin flake8 2.4.0 and pep8 1.5.7 | Andy Freeland | |
| 2015-03-24 | Version bump and release notes update for 2.4.5 | Andy Freeland | |
| 2015-03-23 | Escape tab switching cookie | Tom Christie | |
| 2014-11-27 | Merge pull request #2140 from sicarrots/fix_get_component | Tom Christie | |
| Fixed get_component method in Field to get working with subclassess of collections.Mapping | |||
| 2014-11-27 | Fixed get_component method in Field to get working with subclassess of ↵ | Karol Sikora | |
| collections.Mapping | |||
| 2014-11-03 | Fix URL escaping2.4.4 | Tom Christie | |
| 2014-11-03 | Version 2.4.4 | Tom Christie | |
| 2014-11-03 | Properly escape URLs when replacing query parameter | Tom Christie | |
| 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 #1922 from JonesChi/fix_follow | Tom Christie | |
| Fix follow does not work on get of APIRequestFactory | |||
| 2014-10-31 | Merge pull request #1785 from gdoermann/master | Tom Christie | |
| Frameworks throws AssertionError saying you cannot set required=True and... | |||
| 2014-10-29 | Merge pull request #1997 from agconti/patch-1 | Xavier Ordoquy | |
| docs(api-guide/authentication): updated to reflect new standards in Django 1.7 | |||
| 2014-10-29 | Update authentication.md | Andrew Conti | |
| Based on the [new documentation](https://docs.djangoproject.com/en/dev/topics/auth/customizing/#django.contrib.auth.get_user_model) for Django 1.7 we should now use: ```python @receiver(post_save, sender=settings.AUTH_USER_MODEL) ``` instead of: ```python @receiver(post_save, sender=get_user_model()) ``` because `get_user_model()` only works once Django has imported all models. Otherwise you'll get: ```python django.core.exceptions.AppRegistryNotReady: Models aren't loaded yet. ``` When trying to start your sever after adding token authentication. From the Docs, ( linked above as well ) : >New in Django 1.7: >When connecting to signals sent by the User model, you should specify the custom model using the AUTH_USER_MODEL setting. | |||
| 2014-10-29 | Merge pull request #1993 from jpadilla/master | Carlton Gibson | |
| Use PYTHONDONTWRITEBYTECODE=1 on tox environment | |||
| 2014-10-28 | Use PYTHONDONTWRITEBYTECODE=1 on tox environment | José Padilla | |
| This fixes bad marshal data errors after running tests with tox and later running tests manually via runtests.py. Fixes #1957 | |||
| 2014-10-22 | Merge pull request #1969 from erikcw/ordered | Tom Christie | |
| Maintain order of views on router for api root view. | |||
| 2014-10-20 | Used Django utils SortedDict instead of stdlib's OrderedDict for | Erik Wickstrom | |
| wider compatability. | |||
| 2014-10-19 | Maintain order of views on router for api root view. | Erik Wickstrom | |
| 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-10-17 | Merge pull request #1967 from jpadilla/master | Tom Christie | |
| Add docs regarding linking third party packages | |||
| 2014-10-17 | Add docs regarding linking third party packages | José Padilla | |
| 2014-10-16 | Merge pull request #1959 from konradhalas/add-djoser-to-docs | Tom Christie | |
| Add djoser to authentication docs | |||
| 2014-10-16 | Add to main 3rd party resources list. | konradhalas | |
| 2014-10-16 | Add djoser to authentication docs. | konradhalas | |
| 2014-10-06 | Fix follow does not work on APIClient | Jones Chi | |
| Handle follow just like Django's Client. | |||
| 2014-10-05 | Merge pull request #1925 from kevinlondon/patch-5 | Tom Christie | |
| Update links in 2.4-announcement.md | |||
| 2014-10-04 | Update links in 2.4-announcement.md | Kevin London | |
| The links to Django Rest Framework pages were 404ing because the URLs include a slash. | |||
| 2014-10-02 | Merge pull request #1905 from ya-mouse/master | Carlton Gibson | |
| [templates/rest_framework/base.html] Separate IDs for POST and PUT forms | |||
| 2014-09-29 | Update index.md | Tom Christie | |
| 2014-09-29 | Update README.md | Tom Christie | |
| 2014-09-26 | [templates/rest_framework/base.html] Separate `object-form' and ↵ | Anton D. Kachalov | |
| `generic-content-form' IDs for POST and PUT forms Signed-off-by: Anton D. Kachalov <mouse@yandex-team.ru> | |||
| 2014-09-24 | Merge pull request #1900 from jpadilla/pr_1507 | Tom Christie | |
| Correctly propagate cloned_request for OPTIONS | |||
| 2014-09-24 | Merge pull request #1899 from collinanderson/urls | Tom Christie | |
| Remove patterns and strings from urls in tutorial. | |||
| 2014-09-23 | Remove left unicode strings | José Padilla | |
| 2014-09-23 | Correctly propagate cloned_request for OPTIONS | José Padilla | |
| Update to fix pending changes in #1507 | |||
| 2014-09-23 | remove patterns and strings from urls #1898 | Collin Anderson | |
| 2014-09-19 | Drop 'No major point releases are currently planned.', cos they are. | Tom Christie | |
| 2014-09-19 | Version 2.4.32.4.3 | Tom Christie | |
| 2014-09-18 | Merge pull request #1887 from ↵ | Tom Christie | |
| pipermerriam/piper/decorate_as_view_response_from_viewsets Fix missing CSRF exemption on viewsets | |||
| 2014-09-18 | Merge pull request #1882 from mattjmorrison/patch-2 | Tom Christie | |
| Clarify "raised inside REST framework" | |||
| 2014-09-18 | Fix missing CSRF exemption on viewsets | Piper Merriam | |
| 2014-09-17 | Fixed code formatting | Matthew J Morrison | |
| 2014-09-17 | Update routers.py | Tom Christie | |
| 2014-09-17 | Merge pull request #1865 from mskrajnowski/default-router-listless-viewset | Tom Christie | |
| DefaultRouter support for viewsets without an implemented default action | |||
| 2014-09-17 | Merge pull request #1883 from jpadilla/master | Tom Christie | |
| Update authtoken latest Django 1.7 migration | |||
| 2014-09-17 | Update initial migration to work on Python 3 | José Padilla | |
| 2014-09-17 | Update authtoken latest Django 1.7 migration | José Padilla | |
