| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 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. | |||
| 2015-06-07 | Fixed #16860 -- Added password validation to django.contrib.auth. | Erik Romijn | |
| 2015-06-06 | Fixed #24910 -- Added createsuperuser support for non-unique USERNAME_FIELDs | Alasdair Nicol | |
| Clarified docs to say that a non-unique USERNAME_FIELD is permissable as long as the custom auth backend can support it. | |||
| 2015-06-05 | Capitalized "Python" in docs. | Tim Graham | |
| 2015-06-05 | Added release notes for feature added in fe21fb81 | Russell Keith-Magee | |
| 2015-06-05 | Merge pull request #4757 from sergei-maertens/ticket_18166 | Russell Keith-Magee | |
| Fixed #18166 -- Added ability to pass kwargs to the form constructor in a formset. | |||
| 2015-06-04 | Fixed #24159 -- Made compilemessages run across all apps. | Matthew Somerville | |
| Updated the command to match the documentation, which states it runs over all .po files. | |||
| 2015-06-04 | Fixed #18166 -- Added form_kwargs support to formsets. | Sergei Maertens | |
| By specifying form_kwargs when instantiating the formset, or overriding the `get_form_kwargs` method on a formset class, you can pass extra keyword arguments to the underlying `Form` instances. Includes tests and documentation update. | |||
| 2015-06-02 | Fixed #24230 -- Added translated language name for i18n template tag/filter. | Tomáš Ehrlich | |
| 2015-06-02 | Added headings to i18n template tags and filters. | Tim Graham | |
| 2015-06-01 | Simplified wording in QuerySet.update() docs. | Maximiliano | |
| 2015-05-29 | Optimise the rest of the PNGs in docs | Curtis | |
| 2015-05-27 | Removed unused import in example code in docs/topics/auth/default.txt | Kevin Marsh | |
| 2015-05-25 | Fixed #24773 -- Added a json() method on test client responses. | Andy McKay | |
| 2015-05-25 | Fixed typos in HTTP decorator docs. | I am Clinton | |
| 2015-05-22 | Fixed #16891 -- Made Model/QuerySet.delete() return the number of deleted ↵ | Alexander Sosnovskiy | |
| objects. | |||
| 2015-05-22 | Fixed mistakes in docs/topics/forms/formsets.txt examples. | I am Clinton | |
| 2015-05-22 | Fixed settings docs to match list/tuple changes in #24149. | Chris Schur | |
| 2015-05-22 | Fixed typo in docs/topics/auth/default.txt | Tim Graham | |
| 2015-05-21 | Enhanced registration/login.html example template. | Laurent Peuch | |
| 2015-05-21 | Fixed #17085, #24783 -- Refactored template library registration. | Preston Timmons | |
| * Converted the ``libraries`` and ``builtins`` globals of ``django.template.base`` into properties of the Engine class. * Added a public API for explicit registration of libraries and builtins. | |||
| 2015-05-20 | Fixed #24652 -- Disallowed query execution in SimpleTestCase subclasses. | Simon Charette | |
| Thanks to Tim and Anssi for the review. | |||
| 2015-05-18 | Added docs for assertRaisesMessage as context manager. | Tim Graham | |
| 2015-05-17 | Fixed typo in docs/topics/http/sessions.txt | Tim Graham | |
| 2015-05-17 | Fixed #23820 -- Supported per-database time zone. | Aymeric Augustin | |
| The primary use case is to interact with a third-party database (not primarily managed by Django) that doesn't support time zones and where datetimes are stored in local time when USE_TZ is True. Configuring a PostgreSQL database with the TIME_ZONE option while USE_TZ is False used to result in silent data corruption. Now this is an error. | |||
| 2015-05-14 | Minor edits to docs/topics/http/urls.txt | I am Clinton | |
| 2015-05-13 | Fixed #24789 -- Fixed wrong positional args order in doc example | Charles Dee Rice | |
| Arguments shown in example code (signal, sender, instance) appeared to be the incorrect positional arguments for a post_save signal (which might start as: sender, instance, created), as documented: https://docs.djangoproject.com/en/1.8/ref/signals/#post-save | |||
