| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-08-10 | Fixed #25160 -- Moved unsaved model instance data loss check to Model.save() | Tim Graham | |
| This mostly reverts 5643a3b51be338196d0b292d5626ad43648448d3 and 81e1a35c364e5353d2bf99368ad30a4184fbb653. Thanks Carl Meyer for review. | |||
| 2015-08-08 | Updated various links in docs | Claude Paroz | |
| 2015-08-08 | Updated Wikipedia links to use https | Claude Paroz | |
| 2015-08-07 | Fixed #25175 -- Renamed the postgresql_psycopg2 database backend to postgresql. | Caio Ariede | |
| 2015-08-05 | Fixed #25229 -- Clarified how an iterable works with @permission_required | Tim Graham | |
| 2015-08-05 | Fixed #22404 -- Added a view that exposes i18n catalog as a JSON | Sergey Kolosov | |
| Added django.views.i18n.json_catalog() view, which returns a JSON response containing translations, formats, and a plural expression for the specified language. | |||
| 2015-08-05 | Fixed #25213 -- Discouraged use of QuerySet.extra() | Tim Graham | |
| Thanks Anssi Kääriäinen for the draft text and Simon Charette for review. | |||
| 2015-08-05 | Fixed #25212 -- Documented the RawSQL expression. | Tim Graham | |
| 2015-08-04 | Fixed password_reset signature in docs | Alasdair Nicol | |
| 2015-08-04 | Fixed #25136 -- Documented Count('X', distinct=True) in aggregate topic guide. | Caio Ariede | |
| 2015-08-01 | Fixed #25146 -- Allowed method_decorator() to decorate classes. | Rigel Di Scala | |
| 2015-07-31 | Clarified assertRaisesMessage() behavior with respect to the message. | Tim Graham | |
| 2015-07-31 | Fixed #25174 -- Moved some details of CheckMessage to the reference guide. | Tim Graham | |
| 2015-07-31 | Fixed #25202 -- Fixed typo in docs/topics/auth/customizing.txt | Tim Graham | |
| 2015-07-30 | Fixed #25190 -- Deprecated callable_obj parameter to assertRaisesMessage(). | Tim Graham | |
| Thanks Aymeric Augustin for review. | |||
| 2015-07-29 | Fixed #25185 -- Added support for functools.partial serialization in migrations | Piper Merriam | |
| 2015-07-27 | Fixed #21127 -- Started deprecation toward requiring on_delete for ↵ | Flavio Curella | |
| ForeignKey/OneToOneField | |||
| 2015-07-27 | Fixed #25159 -- Removed brackets from class/function/method signatures in docs. | Tim Graham | |
| Thanks hellbeast for the initial patch. | |||
| 2015-07-27 | Fixed #25142 -- Added PermissionRequiredMixin.has_permission() to allow ↵ | Akis Kesoglou | |
| customization. | |||
| 2015-07-27 | Fixed #24127 -- Changed the default current_app to the current namespace. | Marten Kenbeek | |
| Changed the url template tag to use request.resolver_match.namespace as a default for the current_app argument if request.current_app is not set. | |||
| 2015-07-25 | Fixed #25166 -- Clarified how auth permissions are created. | Tim Graham | |
| Thanks Baptiste Mispelon for report and review. | |||
| 2015-07-25 | Fixed malformed Sphinx directives. | Tim Graham | |
| 2015-07-24 | Converted tabs to spaces in topics/auth/default.txt | Tim Graham | |
| 2015-07-21 | Fixed #25156 -- Mentioned django.setup() in the settings overview for ↵ | James Bennett | |
| standalone Django use. | |||
| 2015-07-21 | Fixed #24126 -- Deprecated current_app parameter to auth views. | lukasz.wojcik | |
| 2015-07-21 | Normalized indentation and line lengths in docs/topics/auth/default.txt. | Tim Graham | |
| 2015-07-20 | Refs #16860 -- Moved password_changed() logic to AbstractBaseUser. | Tim Graham | |
| Thanks Carl Meyer for review. | |||
| 2015-07-16 | Fixed typo in docs/topics/i18n/translation.txt | Rafał Selewońko | |
| 2015-07-13 | Fixed #24375 -- Added Migration.initial attribute | Andrei Kulakov | |
| The new attribute is checked when the `migrate --fake-initial` option is used. initial will be set to True for all initial migrations (this is particularly useful when initial migrations are split) as well as for squashed migrations. | |||
| 2015-07-10 | Fixed #25082 -- Documented where to register system checks. | Tim Graham | |
| 2015-07-10 | Fixed #25083 -- Added SessionAuthenticationMiddleware to auth installation docs | Nick Sweeting | |
| 2015-07-03 | Fixed #23190 -- Made Paginator.page_range an iterator | Rigel Di Scala | |
| 2015-07-01 | Fixed #20916 -- Added Client.force_login() to bypass authentication. | Jon Dufresne | |
| 2015-07-01 | Fixed #21695 -- Added asvar option to blocktrans. | Matthew Somerville | |
| Thanks Bojan Mihelac for the initial patch. | |||
| 2015-06-30 | Fixed #21803 -- Added support for post-commit callbacks | Andreas Pelme | |
| Made it possible to register and run callbacks after a database transaction is committed with the `transaction.on_commit()` function. This patch is heavily based on Carl Meyers django-transaction-hooks <https://django-transaction-hooks.readthedocs.org/>. Thanks to Aymeric Augustin, Carl Meyer, and Tim Graham for review and feedback. | |||
| 2015-06-25 | Updated release process for new release schedule. | Tim Graham | |
| 2015-06-24 | Renamed RemovedInDjangoXYWarnings for new roadmap. | Tim Graham | |
| Forwardport of ae1d663b7913f6da233c55409c4973248372d302 from stable/1.8.x plus more. | |||
| 2015-06-22 | Updated indentation of example template in docs/topics/i18n/translation.txt. | Wim Feijen | |
| 2015-06-20 | Fixed #14200 -- Added a fallback if HttpRequest.urlconf is None. | Marten Kenbeek | |
| Made BaseHandler fall back to settings.ROOT_URLCONF if HttpRequest.urlconf is set to None, rather than raising ImproperlyConfigured. | |||
| 2015-06-19 | Fixed #20197 -- Made XML serializer fail loudly when outputting ↵ | Claude Paroz | |
| unserializable chars Thanks Tim Graham for the review. | |||
| 2015-06-17 | Fixed #24914 -- Added authentication mixins for CBVs | Markus Holtermann | |
| Added the mixins LoginRequiredMixin, PermissionRequiredMixin and UserPassesTestMixin to contrib.auth as counterparts to the respective view decorators. The authentication mixins UserPassesTestMixin, LoginRequiredMixin and PermissionRequiredMixin have been inspired by django-braces <https://github.com/brack3t/django-braces/> Thanks Raphael Michel for the initial patch, tests and docs on the PR and Ana Balica, Kenneth Love, Marc Tamlyn, and Tim Graham for the review. | |||
| 2015-06-17 | Fixed outdated Python version support info in docs/topics/install.txt | Tim Graham | |
| 2015-06-17 | Removed usage of string-based url() in auth docs. | Tim Graham | |
| 2015-06-16 | Refs #24987 -- Documented that Client.login() rejects inactive users. | Tim Graham | |
| 2015-06-12 | Fixed #24965 -- Made LiveServerTestCase.live_server_url accessible from class | Moritz Sichert | |
| 2015-06-10 | Refs #16860 -- Minor edits and fixes to password validation. | Tim Graham | |
| 2015-06-09 | Fixed typos in docs/topics/python3.txt | Nik Nyby | |
| 2015-06-08 | Fixed #21927 -- Made application and instance namespaces more distinct. | Marten Kenbeek | |
| Made URL application namespaces be set in the included URLconf and instance namespaces in the call to include(). Deprecated other ways to set application and instance namespaces. | |||
| 2015-06-08 | Fixed #24929 -- Allowed permission_required decorator to take any iterable | Raphael Michel | |
| 2015-06-08 | Fixed #24796 -- Added a hint on placement of SecurityMiddleware in ↵ | Marissa Zhou | |
| MIDDLEWARE_CLASSES. Also moved it in the project template. | |||
