summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-06-03[3.0.x] Bumped version for 3.0.7 release.3.0.7Carlton Gibson
2020-06-03[3.0.x] Fixed CVE-2020-13254 -- Enforced cache key validation in memcached ↵Dan Palmer
backends.
2020-06-03[3.0.x] Fixed CVE-2020-13596 -- Fixed potential XSS in admin ↵Jon Dufresne
ForeignKeyRawIdWidget.
2020-06-03[3.0.x] Added release date for 2.2.13 and 3.0.7.Carlton Gibson
Backport of 81dc710571b773557170cce9764fff83b6dfd8ae from master
2020-06-02[3.0.x] Updated link to Celery.David Smith
Backport of 06c8565a4650b359bdfa59f9707eaa0d1dfd7223 from master
2020-06-02[3.0.x] Refs #31485 -- Backported jQuery upgrade to 3.5.1.Carlton Gibson
2020-06-02[3.0.x] Adjusted URL example in tutorial.Carlton Gibson
No need for the example to be ASP specific. Co-authored-by: Noah Kantrowitz <noah@coderanger.net> Backport of 8c49c3f7257f14e071b619f90cd4d8cae6d04e74 from master
2020-06-02[3.0.x] Fixed #31643 -- Changed virtualenv doc references to Python 3 venv.Jon Dufresne
Backport of 9f4ceee90aaa2a6af8321417d79330f2fdc620ea from master
2020-06-01[3.0.x] Fixed typo in docs/ref/templates/language.txt.Chris May
Backport of ecaac9e42f497be04ddc72dfebb6e397ccca9517 from master
2020-06-01[3.0.x] Fixed #31570 -- Corrected translation loading for apps providing ↵Carlton Gibson
territorial language variants with different plural equations. Regression in e3e48b00127c09eafe6439d980a82fc5c591b673. Thanks to Shai Berger for report, reproduce and suggested fix. Backport of dd1ca50b096bf0351819aabc862e91a9797ddaca from master
2020-06-01[3.0.x] Added SingleObjectMixin.query_pk_and_slug to CBV flattened index.Fabio Sangiovanni
Backport of df188824738ff5e54baf2d61f6a7dff51a20f068 from master
2020-06-01[3.0.x] Removed redundant pyenchant dependency in spelling check docs.David Smith
Backport of 7514852767c4723322f5799a2bd25b7ca263e3b0 from master
2020-05-29[3.0.x] Corrected FAQ link in docs/faq/help.txt.Jon Dufresne
Without the leading slash, was pointing to Python's FAQ https://docs.python.org/3/faq/index.html. Backport of 8dabdd2cc559a66b519e2a88b64575d304b96ebe from master
2020-05-29[3.0.x] Changed some doc links to use intersphinx.Jon Dufresne
Backport of 494ba27b5fe14e42e815edde6bd4a1216b29c935 from master
2020-05-27[3.0.x] Fixed #31628 -- Updated Windows install guide to recommend venv.David Smith
Backport of 922ff51f5ac34205f454d7b5786cef57f32b6ca3 from master
2020-05-27[3.0.x] Updated expected release dates for 3.0.7 and 2.2.13.Carlton Gibson
Backport of 9d55ae00d3dad9e93714add69ab7e48e7b0bcafa from master
2020-05-27[3.0.x] Fixed some formatting issues in docs.Mariusz Felisiak
Backport of 803e70b1adb71d86eb5bbb4074ef5ff96ae6e55d from master.
2020-05-25[3.0.x] Refs #23097 -- Used new octal format in FILE_UPLOAD_PERMISSIONS docs.René Fleschenberg
Backport of f24b59267be2e5fc5bd1252efda3aed19f860813 from master
2020-05-25[3.0.x] Removed instructions for unsupported Apache versions.Claude Paroz
Backport of cfa0c0e252c680f574c8eea1118e6d11bf7e5fa5 from master
2020-05-21[3.0.x] Updated list of third-party DB backends.Carlton Gibson
* Alphabetized third-party DB backend list. * Added backticks around single-word link texts to ease visual/machine sorting. * Added CockroachDB to list of third-party DB backends. * Updated third-party DB backend URLs. Thanks to Nick Pope and Tim Graham for the review. Backport of 6dcfa70cac29c854fc5169bed1cf6479eabdb8c1 from master
2020-05-21[3.0.x] Added notes related to security pre-notification list requests.Michael Manfre
Backport of 0e893248b28e30bf562d29e6d5745ffad4b1a1eb from master
2020-05-20[3.0.x] Refs #31607 -- Added release notes for ↵Mariusz Felisiak
a125da6a7c79b1d4c55677d0bed6f9b1d7d77353. Backport of 8328811f048fed0dd22573224def8c65410c9f2e from master
2020-05-19[3.0.x] Fixed #31607 -- Fixed evaluated Subquery equality.Mariusz Felisiak
Regression in 691def10a0197d83d2d108bd9043b0916d0f09b4. Backport of a125da6a7c79b1d4c55677d0bed6f9b1d7d77353 from master
2020-05-14[3.0.x] Fixed #31584 -- Fixed crash when chaining values()/values_list() ↵Mariusz Felisiak
after Exists() annotation and aggregation on Oracle. Oracle requires the EXISTS expression to be wrapped in a CASE WHEN in the GROUP BY clause. Regression in efa1908f662c19038a944129c81462485c4a9fe8. Backport of 3a941230c85b2702a5e1cd97e17251ce21057efa from master
2020-05-14[3.0.x] Fixed #31568 -- Fixed alias reference when aggregating over multiple ↵Simon Charette
subqueries. 691def10a0197d83d2d108bd9043b0916d0f09b4 made all Subquery() instances equal to each other which broke aggregation subquery pushdown which relied on object equality to determine which alias it should select. Subquery.__eq__() will be fixed in an another commit but Query.rewrite_cols() should haved used object identity from the start. Refs #30727, #30188. Thanks Makina Corpus for the report. Backport of adfbf653dc1c1d0e0dacc4ed46602d22ba28b004 from master
2020-05-14[3.0.x] Fixed #31566 -- Fixed aliases crash when chaining ↵Simon Charette
values()/values_list() after annotate() with aggregations and subqueries. Subquery annotation references must be resolved if they are excluded from the GROUP BY clause by a following .values() call. Regression in fb3f034f1c63160c0ff13c609acd01c18be12f80. Thanks Makina Corpus for the report. Backport of 42c08ee46539ef44f8658ebb1cbefb408e0d03fe from master
2020-05-14[3.0.x] Added stub release notes for 2.2.13.Mariusz Felisiak
Backport of 50798d43898c7d46926a4292f86fdf3859a433da from master
2020-05-13[3.0.x] Fixed numbered list in admin overview docs.Jon Dufresne
Backport of 05ed7104c0bc069352b2cee85ab918e48ee73cbe from master
2020-05-12[3.0.x] Fixed E128, E741 flake8 warnings.Mariusz Felisiak
Backport of 0668164b4ac93a5be79f5b87fae83c657124d9ab from master.
2020-05-06[3.0.x] Fixed #31495 - Corrected note about admin i18n in tutorial.Omkar Kulkarni
Thanks to Adam Johnson and Claude Paroz for review. Backport of b7f1c0d86d72df51aa2e25da79d99074b751c7e1 from master
2020-05-06[3.0.x] Fixed a/an typos in "SQL" usage.Adam Johnson
Backport of 1c2c6f1b51a540bddc7ae95f4d1213688411ca44 from master
2020-05-05[3.0.x] Fixed #31538 -- Fixed Meta.ordering validation lookups that are not ↵Mariusz Felisiak
transforms. Regression in 440505cb2cadbe1a5b9fba246bcde6c04f51d07e. Thanks Simon Meers for the report. Backport of b73e66e75802f10cc34d4880714554cea54dbf49 from master
2020-05-04[3.0.x] Corrected models.FilePathField signature in docs.Adam Johnson
Backport of 787981f9d1d5abc489a0b069e3353b8ad7aa9778 from master
2020-05-04[3.0.x] Fixed typo in docs/releases/3.0.6.txt.Mariusz Felisiak
Backport of 7668f9bce921f66e8e572938154221cd687aaa4a from master
2020-05-04[3.0.x] Added stub release notes for 3.0.7.Mariusz Felisiak
Backport of 8e8ff38cb8766590fa3a4f412dbb4b11f65b5c69 from master
2020-05-04[3.0.x] Post-release version bump.Mariusz Felisiak
2020-05-04[3.0.x] Bumped version for 3.0.6 release.3.0.6Mariusz Felisiak
2020-05-04[3.0.x] Updated man page for Django 3.0.Mariusz Felisiak
2020-05-04[3.0.x] Added release date for 3.0.6.Mariusz Felisiak
Backport of c5358794e3d893a74073d1ee0a3d173d8f1e04b6 from master
2020-05-01[3.0.x] Refs #27778 -- Removed reference to ASCII usernames in ↵David Smith
django.contrib.auth.models.User docs. Backport of 505b7b616320b8d5bbc83d0dbbb3aec3a58ba0c9 from master
2020-04-30[3.0.x] Fixed #31521 -- Skipped test_parsing_rfc850 test on 32-bit systems.Hasan Ramezani
Backport of f12162107327b88a2f1faaab15d048e2535ec642 from master
2020-04-28[3.0.x] Updated expected date for 3.0.6 release.Mariusz Felisiak
Backport of 2788de95e375cccd03a3dfd161fc92b7d6df6024 from master
2020-04-28[3.0.x] Fixed broken links in docs.Mariusz Felisiak
Backport of b28be08cac1f7cde332ca43db65bb733fa3f9bf5 from master
2020-04-28[3.0.x] Fixed typo in docs/topics/i18n/translation.txt.Mariusz Felisiak
Thanks durey for the report. Backport of dd3dcd28402b7c9cc7bfd24d3e026db751ca4dfd from master
2020-04-27[3.0.x] Fixed #31505 -- Doc'd possible email addresses enumeration in ↵Mariusz Felisiak
PasswordResetView. Backport of ca769c8c13df46b8153a0a4ab3d748e88d6e26f9 from master
2020-04-25[3.0.x] Fixed #31514 -- Fixed default form widgets in model fields docs.Hasan Ramezani
Backport of d6db186427d33889e4d2f3b56e02807d51fc0376 from master
2020-04-24[3.0.x] Corrected outputting BooleanField as HTML in forms docs.Tim Schilling
Backport of 34a69c24584ec7d842dbf266659b25527cd73909 from master
2020-04-24[3.0.x] Doc'd PasswordChangeView/PasswordResetView.success_url defaults.Tanmay Vijay
Backport of e43abbbd70a78d4c0023667589c4e143ed78807e from master
2020-04-24[3.0.x] Fixed typo in docs/intro/contributing.txt.Andy Chosak
Backport of 2c4f6034616e695941fe6bdff7c38e1894da286d from master
2020-04-23[3.0.x] Fixed broken link to Watchmen configuration in ↵Jon Dufresne
docs/ref/django-admin.txt. Backport of faa08449dd1236c1b92883e86cf1895410c72f56 from master