| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-12-23 | Fixed #30998 -- Added ModelChoiceIteratorValue to pass the model instance to ↵ | Jon Dufresne | |
| ChoiceWidget.create_option(). | |||
| 2019-12-23 | Refs #30998 -- Doc'd ModelChoiceField/ModelMultipleChoiceField.iterator ↵ | Jon Dufresne | |
| attributes and ModelChoiceIterator. | |||
| 2019-12-23 | Fixed #31109 -- Disabled grouping by aliases on QuerySet.exists(). | Simon Charette | |
| Clearing the SELECT clause in Query.has_results was orphaning GROUP BY references to it. Thanks Thierry Bastian for the report and Baptiste Mispelon for the bisect. Regression in fb3f034f1c63160c0ff13c609acd01c18be12f80. | |||
| 2019-12-21 | Fixed #31110 -- Fixed typo in docs/ref/models/expressions.txt. | Taoup | |
| 2019-12-20 | Refs #30767 -- Improved deployment documentation. | Katie McLaughlin | |
| 2019-12-20 | Added example of assertNumQueries() with "using" kwarg in testing topics docs. | Garry Polley | |
| 2019-12-20 | Removed outdated information from contrib.sites docs. | Garry Polley | |
| 2019-12-19 | Refs #28954 -- Remove remaining Jython documentation. | Nick Pope | |
| There is still no further progress on Jython 3 since support for Jython was stripped in Django 2.0. The developers experimenting with Jython 3 have stated that they would need to start from scratch, so it doesn't look as though it will materialize for years to come. Python 2 and Django 1.11, the last version to support Python 2.7, will both be end-of-life before Django 3.1 is released. We should no longer instruct users to use an unsupported version of Django. | |||
| 2019-12-19 | Fixed #31094 -- Included columns referenced by subqueries in GROUP BY on ↵ | Simon Charette | |
| aggregations. Thanks Johannes Hoppe for the report. Regression in fb3f034f1c63160c0ff13c609acd01c18be12f80. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2019-12-18 | Fixed #30585 -- Added {% translate %} and {% blocktranslate %} template tags. | Mike Hansen | |
| 2019-12-18 | Corrected some typos in documentation. | Hasan Ramezani | |
| 2019-12-18 | Added stub release notes for 3.0.2. | Mariusz Felisiak | |
| 2019-12-18 | Updated Pytest example in upgrade documentation. | Adam Johnson | |
| Pytest changed their recommended entrypoint to 'pytest' in version 3.0.0 in 2016 : https://docs.pytest.org/en/latest/changelog.html#id1009. Also link the name since this is the only reference in the Django documentation at current. | |||
| 2019-12-18 | Added CVE-2019-19844 to the security archive. | Mariusz Felisiak | |
| 2019-12-18 | Fixed CVE-2019-19844 -- Used verified user email for password reset requests. | Simon Charette | |
| Co-Authored-By: Florian Apolloner <florian@apolloner.eu> | |||
| 2019-12-17 | Fixed #31086 -- Improved error message for admin model inlines with more ↵ | Shubham singh | |
| than one foreign key to the same parent. | |||
| 2019-12-16 | Fixed #31088 -- Added support for websearch searching in SearchQuery. | James Turk | |
| 2019-12-14 | Added Algerian Arabic language. | Rabah Saadi | |
| 2019-12-12 | Rewrote CSRF JavaScript example without jQuery. | Jon Dufresne | |
| 2019-12-12 | Fixed #31069, Refs #26431 -- Doc'd RegexPattern behavior change in passing ↵ | Hasan Ramezani | |
| optional named groups in Django 3.0. | |||
| 2019-12-12 | Fixed #30862 -- Allowed setting SameSite cookies flags to 'none'. | Osaetin Daniel | |
| Thanks Florian Apolloner and Carlton Gibson for reviews. | |||
| 2019-12-12 | Doc'd HttpResponse.set_cookie()'s secure argument. | Osaetin Daniel | |
| 2019-12-12 | Refs #6657 -- Corrected HttpResponse.set_cookie()/set_signed_cookie() ↵ | Osaetin Daniel | |
| signatures in docs. | |||
| 2019-12-12 | Fixed typos in 3.0 release notes and docs/ref/request-response.txt. | Hasan Ramezani | |
| 2019-12-11 | Refs #31073 -- Added release notes for 02eff7ef60466da108b1a33f1e4dc01eec45c99d. | Mariusz Felisiak | |
| 2019-12-11 | Fixed #31080 -- Removed redundant type="text/javascript" attribute from ↵ | Jon Dufresne | |
| <script> tags. | |||
| 2019-12-09 | Fixed #27430 -- Added -b/--buffer option to DiscoverRunner. | Baptiste Mispelon | |
| 2019-12-09 | Fixed typo in docs/releases/3.0.1.txt. | Ali Mirlou | |
| 2019-12-06 | Fixed #31060 -- Reallowed window expressions to be used in conditions ↵ | Alex Aktsipetrov | |
| outside of queryset filters. Regression in 4edad1ddf6203326e0be4bdb105beecb0fe454c4. Thanks utapyngo for the report. | |||
| 2019-12-06 | Fixed #23433 -- Deprecated django-admin.py entry point in favor of django-admin. | Jon Dufresne | |
| Unify on the entry point created by setuptools entry_points feature. | |||
| 2019-12-06 | Fixed #31061 -- Ignored positional args in django.urls.resolve() when all ↵ | Mariusz Felisiak | |
| optional named parameters are missing. Regression in 76b993a117b61c41584e95149a67d8a1e9f49dd1. Thanks Claude Paroz for the report and Carlton Gibson for reviews. | |||
| 2019-12-05 | Fixed #31039 -- Added support for contained_by lookup with AutoFields, ↵ | Hasan Ramezani | |
| SmallIntegerField, and DecimalField. | |||
| 2019-12-05 | Fixed #31010 -- Allowed subdomains of localhost in the Host header by ↵ | Gordon Pendleton | |
| default when DEBUG=True. | |||
| 2019-12-05 | Fixed #31062 -- Doc'd asgi.py in tutorials and project templates. | Mariusz Felisiak | |
| 2019-12-05 | Fixed typo in docs/releases/3.0.txt. | jsals1 | |
| 2019-12-04 | Fixed #23524 -- Allowed DATABASES['TIME_ZONE'] option on PostgreSQL. | Aymeric Augustin | |
| 2019-12-04 | Refs #23524 -- Unified BaseDatabaseWrapper.timezone. | Aymeric Augustin | |
| There was a special case in this property to return None when the database backend supports time zone. However, only the PostgreSQL backend supports time zones and it never uses this property. | |||
| 2019-12-04 | Fixed #20456 -- Added example of directly testing CBVs in topics docs. | Felipe Lee | |
| 2019-12-04 | Fixed #31024 -- Clarified {% firstof %} tag's handling of arguments. | Uttam Kini | |
| 2019-12-04 | Refs #20935 -- Removed inappropriate crosslink to docs search results page. | Fredrik | |
| The link to the search page does not work in the Epub, since there is no such thing. In the online docs, the link to the search page displays a “No search query given” error, since its purpose is to display results from the search bar. Alone, without a query, it's just empty. | |||
| 2019-12-04 | Refs #20935 -- Removed duplicate ToC references. | Fredrik | |
| These sections are being referred to already from other locations. Having multiple references to the same location from the ToC is ambiguous, and causes errors in the EPUB build. | |||
| 2019-12-04 | Fixed #31059 -- Fixed typo in docs/releases/3.0.txt. | Mariusz Felisiak | |
| 2019-12-04 | Removed leftover word in CBV mixins docs. | Claude Paroz | |
| 2019-12-03 | Fixed typo in internals/contributing/writing-documentation.txt. | Hasan Ramezani | |
| 2019-12-03 | Fixed #31046 -- Allowed RelatedManager.add()/create()/set() to accept ↵ | Baptiste Mispelon | |
| callable values in through_defaults. | |||
| 2019-12-03 | Fixed #31056 -- Allowed disabling async-unsafe check with an environment ↵ | Andrew Godwin | |
| variable. | |||
| 2019-12-03 | Refs #30451 -- Doc'd asynchronous support and async-safety. | Andrew Godwin | |
| 2019-12-03 | Fixed typo in topics docs | Claude Paroz | |
| 2019-12-02 | Added stub release notes for 3.0.1. | Mariusz Felisiak | |
| 2019-12-02 | Fixed #31006 -- Doc'd backslash escaping in date/time template filters. | Ryan Cheley | |
