| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-04-20 | Fixed #31477 -- Removed "using" argument from ↵ | Jon Dufresne | |
| DatabaseOperations.execute_sql_flush(). | |||
| 2020-04-17 | Fixed #31473 -- Made sql_flush() use RESTART IDENTITY to reset sequences on ↵ | Jon Dufresne | |
| PostgreSQL. The sql_flush() positional argument sequences is replaced by the boolean keyword-only argument reset_sequences. This ensures that the old function signature can't be used by mistake when upgrading Django. When the new argument is True, the sequences of the truncated tables will reset. Using a single boolean value, rather than a list, allows making a binary yes/no choice as to whether to reset all sequences rather than a working on a completely different set. | |||
| 2020-04-16 | Improved message example in admin actions documentation. | Nick Pope | |
| Avoid partial string construction and make use of ``ngettext`` to show example of how to handle plural variants with translations. Also make use of ``messages.SUCCESS`` to highlight customizing the style of the message - in this case it better fits what the message is conveying. | |||
| 2020-04-15 | Used :rfc: role in various docs. | Mariusz Felisiak | |
| 2020-04-15 | Refs #27468 -- Changed default Signer algorithm to SHA-256. | Claude Paroz | |
| 2020-04-15 | Fixed typo in docs/ref/templates/builtins.txt. | Mariusz Felisiak | |
| 2020-04-14 | Fixed #29501 -- Allowed dbshell to pass options to underlying tool. | Adam Johnson | |
| 2020-04-14 | Refs #29501 -- Allowed customizing exit status for management commands. | Adam Johnson | |
| 2020-04-14 | Fixed #31196 -- Added support for PostGIS 3. | Sergey Fedoseev | |
| 2020-04-14 | Refs #31196 -- Installed postgis_raster extension on PostGIS 3+. | Claude Paroz | |
| 2020-04-14 | Fixed term warning on Sphinx 3.0.1+. | Mariusz Felisiak | |
| "term" role became case sensitive in Sphinx 3.0.1. | |||
| 2020-04-14 | Sorted imports in docs/_ext/djangodocs.py. | Tim Graham | |
| 2020-04-14 | Refs #31224 -- Removed incorrect @sync_to_async(thread_sensitive=True) example. | Andrew Godwin | |
| It does not support thread_sensitive when used as a decorator, yet. | |||
| 2020-04-10 | Fixed #31351 -- Added system checks for partial indexes and unique ↵ | Ichlasul Affan | |
| constraints support. | |||
| 2020-04-10 | Refs #10427 -- Corrected BoundField.css_classes() signature in docs. | David Smith | |
| 2020-04-10 | Fixed #13009 -- Added BoundField.widget_type property. | David Smith | |
| 2020-04-09 | Mentioned non_field_errors in form validation docs. | Shrikrishna Singh | |
| 2020-04-08 | Fixed #28184 -- Allowed using a callable for FileField and ImageField storage. | miigotu | |
| 2020-04-07 | Fixed highlightlang deprecation warning on Sphinx 1.8+. | Mariusz Felisiak | |
| 2020-04-07 | Fixed CodeBlock deprecation warning on Sphinx 2.1+. | Mariusz Felisiak | |
| 2020-04-07 | Fixed Sphinx warnings on duplicate object descriptions. | Mariusz Felisiak | |
| 2020-04-06 | Fixed #31030 -- Registered SQLite functions as deterministic on Python 3.8+. | Sergey Fedoseev | |
| 2020-04-06 | Refs #7098 -- Deprecated passing raw column aliases to order_by(). | Simon Charette | |
| Now that order_by() has expression support passing RawSQL() can achieve the same result. This was also already supported through QuerySet.extra(order_by) for years but this API is more or less deprecated at this point. | |||
| 2020-04-06 | Fixed #31420 -- Fixed crash when filtering subquery annotation against a ↵ | Hasan Ramezani | |
| SimpleLazyObject. Thanks Simon Charette for the solution and analysis. | |||
| 2020-04-04 | Fixed #31423 -- Clarified nested atomic() example. | Simon Charette | |
| 2020-04-02 | Fixed #31275 -- Optimized sql_flush() without resetting sequences on MySQL. | c-bata | |
| Co-Authored-By: Simon Charette <charettes@users.noreply.github.com> | |||
| 2020-04-01 | Corrected docs spelling of PgBouncer. | Carlton Gibson | |
| 2020-04-01 | Prevented (and corrected) single backtick usage in docs. | Adam Johnson | |
| 2020-04-01 | Fixed #31380 -- Added deployment system check for DJANGO_ALLOW_ASYNC_UNSAFE ↵ | hashlash | |
| environment variable. | |||
| 2020-04-01 | Refs #31320 -- Warned against using BEGIN/COMMIT in RunSQL. | Adam Johnson | |
| 2020-04-01 | Added stub release notes for 3.0.6. | Carlton Gibson | |
| 2020-04-01 | Added release dates for 2.1.12 and 3.0.5. | Carlton Gibson | |
| 2020-03-31 | Removed unused link in docs/faq/help.txt. | Mariusz Felisiak | |
| Unused since its introduction in 97cb07c3a10ff0e584a260a7ee1001614691eb1d. | |||
| 2020-03-31 | Fixed #31375 -- Made contrib.auth.hashers.make_password() accept only bytes ↵ | Hasan Ramezani | |
| or strings. | |||
| 2020-03-31 | Fixed #30864 -- Doc'd classproperty decorator. | Deep Sukhwani | |
| 2020-03-31 | Fixed #31403 -- Added support for returning fields from INSERT statements on ↵ | Adam Johnson | |
| MariaDB 10.5+. | |||
| 2020-03-30 | Fixed links in Getting Help FAQ. | Adam Johnson | |
| Follow up to 6ef4c8aa9f887f72ebdacff229b9012686272e3a, | |||
| 2020-03-27 | Fixed #31400 -- Doc'd the expected type of CONN_MAX_AGE database option. | Hasan Ramezani | |
| 2020-03-26 | Fixed #31402 -- Added migrate --check option. | Gordon Pendleton | |
| Command exits with non-zero status if unapplied migrations exist. | |||
| 2020-03-26 | Clarified async documentation. | Adam Johnson | |
| 2020-03-26 | Rewrote Get Help FAQ. | Adam Johnson | |
| 2020-03-26 | Fixed #31330 -- Corrected catchall URL pattern in flatpages docs. | Carlton Gibson | |
| Use re_path() pattern with the regex used before original regression in df41b5a05d4e00e80e73afe629072e37873e767a. Regression in a0916d7212aaae634f4388d47d8717abc2cd9036. | |||
| 2020-03-25 | Added additional note that tests use locmem email backend. | Adam Johnson | |
| 2020-03-25 | Improved docs on migration reversibility. (#12619) | Adam Johnson | |
| - Clarify reversibility for RunSQL and RunPython operations. - Add example for migrate with irreversible migration. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es> | |||
| 2020-03-25 | Improved sessions notes in deployment checklist. | Adam Johnson | |
| - Added note to clear old sessions when using database-backend. - Made note to consider the cache backend more generic. | |||
| 2020-03-25 | Fixed #31396 -- Added binary XOR operator to F expressions. | Hannes Ljungberg | |
| 2020-03-25 | Fixed #31377 -- Disabled grouping by aliases on ↵ | Hasan Ramezani | |
| QuerySet.values()/values_list() when they collide with field names. Regression in fb3f034f1c63160c0ff13c609acd01c18be12f80. Thanks Holovashchenko Vadym for the report. | |||
| 2020-03-24 | Fixed #7664 -- Allowed customizing suffixes of MultiWidget.widgets' names. | David Smith | |
| 2020-03-24 | Added link to contributing docs in deprecation policy. | Adam Johnson | |
| 2020-03-24 | Fixed #31385 -- Improved wording in tutorial 1. | Victor Moura | |
