| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-01-28 | Modernized custom manager example | Adam Johnson | |
| Since this example was added 15 years ago in a8ccdd0fcd631e8e928ef20547e1fe3e313dc607, the ORM has gained the ability to do the `COUNT(*)` related query, so do it with the ORM to avoid misleading users that raw SQL is only supported from manager methods. | |||
| 2021-01-28 | Fixed #32391 -- Used CSS flex properties for changelist filter. | Denis Skulimovskiy | |
| Matched layout adjustment using flex from admin sidebar added in d24ba1be7a53a113d19e2860c03aff9922efec24. Filters would become squashed when viewport was constrained or list display table became too wide. | |||
| 2021-01-28 | Fixed #32389 -- Fixed ResponseHeaders crash when data is not mapping. | Illia Volochii | |
| 2021-01-28 | Fixed #32388 -- Clarified QuerySet.bulk_update() caveat about duplicates for ↵ | Timothy McCurrach | |
| multiple batches. | |||
| 2021-01-27 | Improved performance of django.forms.ChoiceWidget.optgroups(). | David Smith | |
| 2021-01-27 | Changed "Don't overuse count() or exists()" example to Python. | Adam Johnson | |
| 2021-01-27 | Fixed #32385 -- Removed unused and duplicated loading of tags in admin ↵ | tim-mccurrach | |
| templates. - `i18n` is duplicated in base.html. - `l10n` is unused in prepopulated_fields_js.html since d638cdc42acec608c1967f44af6be32a477c239f. - `static` is unused in change_list_results.html since f2ed107b079b050950e2fc5f2b689ca553ae12f5. - `static` is unused in stacked.html since d61ebc8fed212366340b1ed6f5d7722613801459. | |||
| 2021-01-27 | Fixed #32290 -- Fixed TemplateNotFound in {% include %} tag for relative ↵ | Hasan Ramezani | |
| path in variable. | |||
| 2021-01-27 | Refs #32290 -- Added {% extends %} test for relative path in variable. | Hasan Ramezani | |
| 2021-01-27 | Fixed #32348, Refs #29087 -- Corrected tutorial for updated deleting inlines UI. | Carlton Gibson | |
| Updated tutorial to match change in 24e540fbd71bd2b0843e751bde61ad0052a811b3 allowing deletion of original extra inlines. | |||
| 2021-01-26 | Refs #26602 -- Added tests for aggregating over a RawSQL() annotation. | Mariusz Felisiak | |
| Fixed in 3f32154f40a855afa063095e3d091ce6be21f2c5. Thanks Manav Agarwal for initial test. | |||
| 2021-01-26 | Fixed #32347 -- Made ModelChoiceField include the value in ValidationError ↵ | Jerin Peter George | |
| for invalid_choice. | |||
| 2021-01-26 | Fixed #32369 -- Fixed adding check constraints with pattern lookups and ↵ | Simon Charette | |
| expressions as rhs. This disables interpolation of constraint creation statements. Since Constraint.create_sql interpolates its parameters instead of deferring this responsibility to the backend connection it must disable connection level parameters interpolation. | |||
| 2021-01-25 | Refs #26167 -- Corrected OpClass() example in docs. | Hannes Ljungberg | |
| 2021-01-25 | Refs #32380 -- Added test for distance lookups with F() expression. | Mariusz Felisiak | |
| Fixed in 5935a9aeade517aebdceea989467d2b46c44d96f. | |||
| 2021-01-22 | Refs #32372 -- Updated manager name in related objects reference docs. | Jack | |
| Follow up to 725c549ae7a34d83447201da7190f8d71c7fc2fc. | |||
| 2021-01-22 | Fixed #32360 -- Added system check for FILE_UPLOAD_TEMP_DIR setting. | Timothy McCurrach | |
| 2021-01-22 | Fixed #32372 -- Made examples in related objects reference docs consistent. | Jack Aitken | |
| 2021-01-21 | Fixed #32367 -- Fixed system check for specifying type of auto-created ↵ | Mariusz Felisiak | |
| primary keys for inherited PKs. Regression in b5e12d490af3debca8c55ab3c1698189fdedbbdb. Thanks אורי for the report. | |||
| 2021-01-21 | Fixed #32374 -- Stopped recording migration application before deferred SQL. | Simon Charette | |
| Migrations cannot be recorded in the same transaction as its associated DDL operations when some of it is deferred until the schema editor context exits. Regression in c86a3d80a25acd1887319198ca21a84c451014ad. | |||
| 2021-01-21 | Refs #29721 -- Simplified migration used to test atomic recording. | Simon Charette | |
| This makes sure atomic recording of migration application is used when the schema editor doesn't defer any statement. | |||
| 2021-01-20 | Fixed #32371 -- Doc'd jquery.init.js dependency for admin widgets. | Matthias Kestenholz | |
| 2021-01-20 | Fixed #32292 -- Added support for connection by service name to PostgreSQL. | Hasan Ramezani | |
| 2021-01-20 | Refs #31259 -- Made various dark theme adjustments. | Tom Carrick | |
| 2021-01-20 | Used GitHub actions for isort and flake8 tests. | Tom Forbes | |
| 2021-01-20 | Fixed isolation of utils_tests.test_autoreload tests. | Mariusz Felisiak | |
| 2021-01-19 | Refs #32165 -- Bumped minimum ESLint version to 7.16.0 to match pre-commit ↵ | Jon Dufresne | |
| configuration. | |||
| 2021-01-19 | Used GitHub actions for JavaScript tests. | Tom Forbes | |
| 2021-01-19 | Bumped minimum grunt-contrib-qunit version to 4.0.0. | Nick Pope | |
| 2021-01-19 | Fixed #32324 -- Added template block to override the admin site header. | muskanvaswan | |
| 2021-01-19 | Fixed #32357 -- Dropped support for PostgreSQL 9.6 and PostGIS 2.3. | Mariusz Felisiak | |
| 2021-01-19 | Refs #32365 -- Allowed use of non-pytz timezone implementations. | Paul Ganssle | |
| 2021-01-19 | Corrected versionadded annotations. | Mariusz Felisiak | |
| 2021-01-19 | Removed unreachable SystemExit check. | Adam Johnson | |
| This check dates back to Python <2.5, before Python introduced BaseException to prevent exactly unwarranted catching of SystemExit (and others). response_for_exception() is only called under `except Exception` or `except Http404` so it's now impossible for a SystemExit instance to reach the branch. | |||
| 2021-01-19 | Removed unnecessary empty dict creation in ChoiceWidget.create_option(). | David Smith | |
| build_atttrs() already creates an empty dict if extra_attrs is None. | |||
| 2021-01-18 | Fixed #32296 -- Added --skip-checks option to runserver command. | Hasan Ramezani | |
| 2021-01-18 | Fixed isolation of test_check_errors_catches_all_exceptions. | Mariusz Felisiak | |
| 2021-01-18 | Fixed #32358 -- Fixed queryset crash when grouping by annotation with ↵ | Illia Volochii | |
| Distance()/Area(). Made MeasureBase hashable. | |||
| 2021-01-18 | Fixed #18549 -- Fixed heading for inlines with a OneToOneField. | Timothy McCurrach | |
| Used verbose_name instead of verbose_name_plural. | |||
| 2021-01-18 | Refs #18549 -- Added test for heading of foreign key inlines. | Timothy McCurrach | |
| 2021-01-16 | Improved performance of DecimalField. | David Smith | |
| strip() is unnecessary because decimal.Decimal() strips the input value. | |||
| 2021-01-16 | Fixed #32265, Refs #32355 -- Removed unnecessary ServerHandler.handle_error(). | Mariusz Felisiak | |
| ConnectionAbortedError, BrokenPipeError, ConnectionResetError raised from SocketServer.BaseServer.finish_request() are already suppressed by wsgiref.handlers.BaseHandler.run() in Python 3.7+, see https://github.com/python/cpython/commit/47ffc1a9f6fab1c17cdcc325d4af066317369ed7 | |||
| 2021-01-15 | Updated source translation catalogs. | Claude Paroz | |
| Forwardport of 3dc3a952b28af444cb3bc83d4638a0e5fc2eeae1 from stable/3.2.x. | |||
| 2021-01-14 | Increased the default PBKDF2 iterations for Django 4.0. | Mariusz Felisiak | |
| 2021-01-14 | Advanced deprecation warnings for Django 4.0. | Mariusz Felisiak | |
| 2021-01-14 | Refs #31842 -- Removed DEFAULT_HASHING_ALGORITHM transitional setting. | Mariusz Felisiak | |
| Per deprecation timeline. | |||
| 2021-01-14 | Refs #25236 -- Removed {% ifequal %} and {% ifnotequal %} template tags per ↵ | Mariusz Felisiak | |
| deprecation timeline. | |||
| 2021-01-14 | Refs #12990 -- Removed django.contrib.postgres.forms.JSONField per ↵ | Mariusz Felisiak | |
| deprecation timeline. | |||
| 2021-01-14 | Refs #12990 -- Removed ↵ | Mariusz Felisiak | |
| django.contrib.postgres.fields.jsonb.KeyTransform/KeyTextTransform. Per deprecation timeline. | |||
| 2021-01-14 | Refs #12990 -- Removed django.contrib.postgres.fields.JSONField per ↵ | Mariusz Felisiak | |
| deprecation timeline. | |||
