| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-02-04 | Corrected typo in advice to new contributors. | Carlton Gibson | |
| 2021-02-04 | Skipped test_archive tests when bz2/lzma module is not installed. | Mariusz Felisiak | |
| 2021-02-04 | Fixed #32395 -- Allowed capturing stdout of migration signals. | Simon Charette | |
| 2021-02-04 | Used subTest() in migrate_signals.tests.MigrateSignalTests.test_args(). | Simon Charette | |
| 2021-02-04 | Refs #32074 -- Fixed TextChoices/IntegerChoices crash on Python 3.10. | Mariusz Felisiak | |
| EnumMeta has a new keyword argument 'boundary' in Python 3.10. This is a new mechanism that controls how out-of-range / invalid bits are handled, see https://bugs.python.org/issue38250. | |||
| 2021-02-04 | Refs #32412 -- Adjusted link from tutorial to reference docs. | GabbyPrecious | |
| The writing code index page is a better location for a newer contributor to land, than the specific patch guidelines subpage. | |||
| 2021-02-04 | Refs #32412 -- Adjusted beginning of Advice for new contributors. | GabbyPrecious | |
| With the goal of guiding folks to the right destination: * Improved wording of tutorial call-out. * Added summary of page purpose. * Added link to Writing code reference doc. | |||
| 2021-02-04 | Fixed #31527 -- Allowed admindocs index to handle non-string URLconfs. | Jim Xie | |
| 2021-02-04 | Fix typos | Dan Swain | |
| 2021-02-04 | Fixed #32332 -- Fixed loss of parent with non-numeric pk when saving child ↵ | Hasan Ramezani | |
| after parent. Follow up to 519016e5f25d7c0a040015724f9920581551cab0. | |||
| 2021-02-03 | Refs #32390 -- Bumped required cx_Oracle to 7.0. | Mariusz Felisiak | |
| 2021-02-03 | Fixed #32390 -- Dropped support for Oracle 12.2 and 18c. | Mariusz Felisiak | |
| 2021-02-02 | Fixed #32403 -- Fixed re-raising DatabaseErrors when using only 'postgres' ↵ | Mariusz Felisiak | |
| database. Thanks Kazantcev Andrey for the report. Regression in f48f671223a20b161ca819cf7d6298e43b8ba5fe. | |||
| 2021-02-01 | Fixed typo in docs/ref/forms/widgets.txt. | Brad Solomon | |
| 2021-02-01 | Added stub release notes for 3.1.7. | Mariusz Felisiak | |
| 2021-02-01 | Added CVE-2021-3281 to security archive. | Mariusz Felisiak | |
| 2021-02-01 | Fixed CVE-2021-3281 -- Fixed potential directory-traversal via ↵ | Mariusz Felisiak | |
| archive.extract(). Thanks Florian Apolloner, Shai Berger, and Simon Charette for reviews. Thanks Wang Baohua for the report. | |||
| 2021-01-29 | Fixed #32345 -- Fixed preserving encoded query strings in set_language() view. | Sandro Covo | |
| Thanks Johannes Maron for the review. | |||
| 2021-01-29 | Fixed #32392 -- Fixed ExclusionConstraint crash with Cast() in expressions. | Tilman Koschnick | |
| 2021-01-29 | Fixed GeoIPTest.test04_city() failure with the latest GeoIP2 database. | Mariusz Felisiak | |
| 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 | |
