| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-10-27 | Made OracleSpatialAdapter clone geometries rather than mutate them. | Tim Graham | |
| 2020-10-26 | Fixed #29497 -- Fixed loss of assigned parent when saving child with ↵ | Hannes Ljungberg | |
| bulk_create() after parent. | |||
| 2020-10-26 | Fixed #32138 -- Prevented admin's map from covering other widgets. | dokgeppo | |
| 2020-10-26 | Simplifed formset iteration using enumerate(). | Jon Dufresne | |
| 2020-10-23 | Fixed #32134 -- Fixed crash of __range lookup with namedtuple. | Adam Johnson | |
| Regression in 8be79984dce7d819879a6e594ca69c5f95a08378. Thanks Gordon Wrigley for the report. | |||
| 2020-10-22 | Replaced @no_oracle skips with DatabaseFeatures.allows_group_by_lob. | Tim Graham | |
| 2020-10-22 | Fixed #32124 -- Added per-view opt-out for APPEND_SLASH behavior. | Carlton Gibson | |
| 2020-10-22 | Fixed #32130 -- Fixed pre-Django 3.1 password reset tokens validation. | Mariusz Felisiak | |
| Thanks Gordon Wrigley for the report and implementation idea. Regression in 226ebb17290b604ef29e82fb5c1fbac3594ac163. | |||
| 2020-10-21 | Fixed #26390 -- Disabled grouping by Random(). | Étienne Beaulé | |
| Thanks to Tzu-ping Chung for the tests. | |||
| 2020-10-21 | Fixed #32069 -- Fixed admin change-form layout on small screens. | Carlton Gibson | |
| Restored flex-wrap CSS declaration to form elements at smallest breakpoint. This was present since the responsive admin was introduced in dc37e8846eeedc3a9100ca21fdc9d579bc534c89. Regression in 8ee4bb6ffcb3346c0fa8fb194986fbf9edadc822, where it was accidentally removed. | |||
| 2020-10-21 | Fixed #13060 -- Improved error message when ManagementForm data is missing. | manav014 | |
| 2020-10-21 | Fixed #32046 -- Added CreateCollation/RemoveCollation operations for PostgreSQL. | Tom Carrick | |
| 2020-10-21 | Fixed #26615 -- Made password reset token invalidate when changing email. | Jacob Walls | |
| Co-Authored-By: Silas Barta <sbarta@gmail.com> | |||
| 2020-10-21 | Fixed #32126 -- Fixed grouping by Case() annotation without cases. | Hannes Ljungberg | |
| Co-authored-by: Simon Charette <charettes@users.noreply.github.com> | |||
| 2020-10-20 | Fixed #32121 -- Fixed detecting uniqueness of USERNAME_FIELD when using ↵ | Hannes Ljungberg | |
| Meta.constraints. Co-authored-by: Simon Charette <charettes@users.noreply.github.com> | |||
| 2020-10-20 | Fixed #32120 -- Added DatabaseFeatures.indexes_foreign_keys. | Tim Graham | |
| 2020-10-19 | Fixed #32108 -- Made transaction.on_commit() raise TypeError when callback ↵ | Herbert Poul | |
| is not a callable. | |||
| 2020-10-19 | Fixed #32107 -- Fixed ProtectedError.protected_objects and ↵ | Hasan Ramezani | |
| RestrictedError.restricted_objects. Regression in 4ca5c565f4dc9e97845036e86416abc5cfde766c and ab3cbd8b9a315911248227208630a020cedca08f. Thanks Vitaliy Yelnik for the report. | |||
| 2020-10-19 | Added DatabaseFeatures.can_alter_geometry_field. | Tim Graham | |
| 2020-10-19 | Fixed #32116 -- Fixed QuerySet.order_by() crash on EmptyQuerySet with ↵ | Hannes Ljungberg | |
| union() on a single non-empty ordered queryset. | |||
| 2020-10-17 | Fixed #6517 -- Made dbshell use charset option on MySQL. | manav014 | |
| Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2020-10-15 | Refs #32096 -- Made JSONField check respect Meta.required_db_vendor. | Mariusz Felisiak | |
| Thanks Simon Charette for the implementation idea. | |||
| 2020-10-15 | Refs #31672 -- Simplified ExceptionReporter.get_traceback_frames(). | Chris Jerdonek | |
| 2020-10-15 | Fixed #25253 -- Made AlterField operation a noop when changing attributes ↵ | Çağıl Uluşahin | |
| that don't affect the schema. | |||
| 2020-10-15 | Fixed #32105 -- Added template paths as ExceptionReporter class attributes. | Aarni Koskela | |
| This allows replacement of the debugging templates without having to copy-paste the `get_traceback_html` and `get_traceback_text` functions into a subclass. Thanks to Nick Pope for review. | |||
| 2020-10-14 | Refs #32096 -- Fixed ExclusionConstraint crash with JSONField key transforms ↵ | Mariusz Felisiak | |
| in expressions. Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd. | |||
| 2020-10-14 | Refs #32096 -- Fixed ExpressionWrapper crash with JSONField key transforms. | Mariusz Felisiak | |
| Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd. Thanks Simon Charette and Igor Jerosimić for the report. | |||
| 2020-10-14 | Refs #32096 -- Fixed __in lookup crash against key transforms for JSONField. | Mariusz Felisiak | |
| Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd and 1251772cb83aa4106f526fe00738e51c0eb59122. Thanks Simon Charette and Igor Jerosimić for the report. | |||
| 2020-10-14 | Refs #32096 -- Fixed crash of ArrayAgg/StringAgg/JSONBAgg with ordering over ↵ | Mariusz Felisiak | |
| JSONField key transforms. Regression in 6789ded0a6ab797f0dcdfa6ad5d1cfa46e23abcd. Thanks Igor Jerosimić for the report. | |||
| 2020-10-14 | Fixed #31640 -- Made Trunc() truncate datetimes to Date/TimeField in a ↵ | David-Wobrock | |
| specific timezone. | |||
| 2020-10-14 | Refs #31640 -- Made Extract raise ValueError when using tzinfo with ↵ | David-Wobrock | |
| Date/TimeField. | |||
| 2020-10-14 | Updated the link documenting the de_CH number formats. | Matthias Kestenholz | |
| 2020-10-13 | Fixed #20601 -- Allowed forcing format with thousand separators in ↵ | Jacob Walls | |
| floatformat filter. Thanks Claude Paroz and Nick Pope for reviews. | |||
| 2020-10-13 | Removed unnecessary check in BaseModelAdmin.get_view_on_site_url(). | Marco Richetta | |
| 2020-10-12 | Fixed #31674 -- Fixed displaying traceback in technical 500 debug page. | Hasan Ramezani | |
| Previously, the technical 500 debug page didn't contain a traceback when the exception chain contained an exception without traceback. Thanks Chris Jerdonek for the report. | |||
| 2020-10-12 | Fixed #32098 -- Made FieldFile use FileField.attname. | Sultan | |
| After a93425a37f4defdb31d4ca96bb3bf6da21f0b5ce FileDescriptor is a subclass of DeferredAttribute and uses FileField.attname to access the field data, so that custom subclasses can not only save data to files, but also represent the same data with a different data type by attaching FileFiled.name to a particular descriptor. Follow up to a93425a37f4defdb31d4ca96bb3bf6da21f0b5ce. | |||
| 2020-10-12 | Fixed #32087 -- Made technical 500 debug page use HTTPS for sharing traceback. | nik258heda | |
| 2020-10-09 | Fixed #32094 -- Fixed flush() calls on management command self.stdout/err ↵ | Thomas Riccardi | |
| proxies. | |||
| 2020-10-09 | Fixed #32091 -- Fixed admin search bar width on filtered admin page. | Tim Schilling | |
| 2020-10-09 | Fixed #32080 -- Fixed displaying Unicode chars in forms.JSONField and ↵ | Qi Zhao | |
| read-only JSONField values in admin. | |||
| 2020-10-08 | Fixed #31181 -- Added links to related models for admin's readonly fields. | Julien Rebetez | |
| 2020-10-07 | Fixed #32002 -- Added headers parameter to HttpResponse and subclasses. | Tom Carrick | |
| 2020-10-06 | Refs #20577 -- Deferred filtering of prefetched related querysets by reverse ↵ | Bob Renwick | |
| m2o relation. | |||
| 2020-10-06 | Fixed #32073 -- Skipped collation tests on PostgreSQL < 10. | Mariusz Felisiak | |
| PostgreSQL < 10 doesn't support ICU collations. Thanks Hannes Ljungberg for the report. | |||
| 2020-10-06 | Removed unneeded calls to iri_to_uri() in cache key generation. | Florian Apolloner | |
| request.build_absolute_uri() already applies iri_to_uri() | |||
| 2020-10-06 | Removed unneeded iri_to_uri() call in reverse(). | Florian Apolloner | |
| _reverse_with_prefix() already quotes using a stricter subset of the safe characters used by iri_to_uri(). | |||
| 2020-10-06 | Fixed #32072 -- Fixed admin search bar height. | Tom Carrick | |
| Thanks şuayip üzülmez for the report. Regression in 8ee4bb6ffcb3346c0fa8fb194986fbf9edadc822. | |||
| 2020-10-05 | Refs #31926 -- Fixed reverse related identity crash on Q() limit_choices_to. | Simon Charette | |
| 2020-10-05 | Refs #29838, Refs #28507 -- Made make_hashable() ignore key order. | Simon Charette | |
| 2020-10-05 | Fixed #32068 -- Added error messages on get() with filters following ↵ | Hasan Ramezani | |
| union(), intersection(), and difference(). | |||
