summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2021-12-07[3.1.x] Fixed #30530, CVE-2021-44420 -- Fixed potential bypass of an ↵Florian Apolloner
upstream access control based on URL paths. Thanks Sjoerd Job Postmus and TengMA(@te3t123) for reports. Backport of d4dcd5b9dd9e462fec8220e33e3e6c822b7e88a6 from main.
2021-11-30[3.1.x] Added stub release notes 3.1.14 and 2.2.25.Mariusz Felisiak
Backport of ae4077e13ea2e4c460c3f21b9aab93a696590851 from main.
2021-10-12[3.1.x] Added 'formatter' to spelling wordlist.Mariusz Felisiak
Backport of e43a131887e2a316d4fb829c3a272ef0cbbeea80 from main
2021-07-30[3.1.x] Refs #31676 -- Updated technical board description in organization docs.Mariusz Felisiak
According to DEP 0010. Backport of f2ed2211c26ba375390cb76725c95ae970a0fd1d from main.
2021-07-30[3.1.x] Refs #31676 -- Added Mergers and Releasers to organization docs.Mariusz Felisiak
According to DEP 0010. Backport of 228ec8e015bac9751c8aef3107358fbb2cb3301b from main
2021-07-30[3.1.x] Refs #31676 -- Removed Core team from organization docs.Mariusz Felisiak
According to DEP 0010. Backport of caa2dd08c4722c8702588f5dfe1fa4c506aa66fc from main
2021-07-16[3.1.x] Fixed typo in docs/releases/3.1.13.txt.Jacob Walls
Backport of 00c724f2f255bd3c28a73cc51db8a052644ff949 from main
2021-07-13[3.1.x] Refs #31676 -- Removed Django Core-Mentorship mailing list ↵Mariusz Felisiak
references in docs. Backport of 37e8367c359cd115f109d82f99ff32be219f4928 from main
2021-07-01[3.1.x] Added CVE-2021-35042 to security archive.Mariusz Felisiak
Backport of 8feb2a49fa37528823cc900bbd9609319738193e from main
2021-07-01[3.1.x] Fixed CVE-2021-35042 -- Prevented SQL injection in QuerySet.order_by().Simon Charette
Regression introduced in 513948735b799239f3ef8c89397592445e1a0cd5 by marking the raw SQL column reference feature for deprecation in Django 4.0 while lifting the column format validation. In retrospective the validation should have been kept around and the user should have been pointed at using RawSQL expressions during the deprecation period. The main branch is not affected because the raw SQL column reference support has been removed in 06eec3197009b88e3a633128bbcbd76eea0b46ff per the 4.0 deprecation life cycle. Thanks Joel Saunders for the report.
2021-07-01[3.1.x] Added stub release notes for 3.1.13.Mariusz Felisiak
Backport of 8e97698d7b537cd298438a8d7b55916d275ff851 from main.
2021-06-02[3.1.x] Fixed docs header underlines in security archive.Mariusz Felisiak
Backport of d9cee3f5f2f90938d2c2c0230be40c7d50aef53d from main
2021-06-02[3.1.x] Added CVE-2021-33203 and CVE-2021-33571 to security archive.Carlton Gibson
Backport of a39f235ca4cb7370dba3a3dedeaab0106d27792f from main
2021-06-02[3.1.x] Fixed CVE-2021-33571 -- Prevented leading zeros in IPv4 addresses.Mariusz Felisiak
validate_ipv4_address() was affected only on Python < 3.9.5, see [1]. URLValidator() uses a regular expressions and it was affected on all Python versions. [1] https://bugs.python.org/issue36384
2021-06-02[3.1.x] Fixed CVE-2021-33203 -- Fixed potential path-traversal via ↵Florian Apolloner
admindocs' TemplateDetailView.
2021-06-02[3.1.x] Confirmed release date for Django 3.1.12, and 2.2.24.Carlton Gibson
Backport of f66ae7a2d5558fe88ddfe639a610573872be6628 from main
2021-05-27[3.1.x] Fixed typo in MiddlewareMixin deprecation note.Nick Pope
Backport of e513fb0e77baf2ebcbf2cbe366bdf0228d01119f from main.
2021-05-26[3.1.x] Added stub release notes and date for Django 3.1.12 and 2.2.24.Carlton Gibson
Backport of b46dbd4e3e255223078ae0028934ea986e19ebc1 from main
2021-05-20[3.1.x] Changed IRC references to Libera.Chat.Mariusz Felisiak
Backport of 66491f08fe86629fa25977bb3dddda06959f65e7 from main.
2021-05-13[3.1.x] Fixed #32718 -- Relaxed file name validation in FileField.Mariusz Felisiak
- Validate filename returned by FileField.upload_to() not a filename passed to the FileField.generate_filename() (upload_to() may completely ignored passed filename). - Allow relative paths (without dot segments) in the generated filename. Thanks to Jakub Kleň for the report and review. Thanks to all folks for checking this patch on existing projects. Thanks Florian Apolloner and Markus Holtermann for the discussion and implementation idea. Regression in 0b79eb36915d178aef5c6a7bbce71b1e76d376d3. Backport of b55699968fc9ee985384c64e37f6cc74a0a23683 from main.
2021-05-12[3.1.x] Refs #32718 -- Corrected CVE-2021-31542 release notes.Mariusz Felisiak
Backport of d1f1417caed648db2f81a1ec28c47bf958c01958 from main.
2021-05-06[3.1.x] Added CVE-2021-32052 to security archive.Mariusz Felisiak
Backport of efebcc429f048493d6bc710399e65d98081eafd5 from main
2021-05-06[3.1.x] Fixed #32713, Fixed CVE-2021-32052 -- Prevented newlines and tabs ↵Mariusz Felisiak
from being accepted in URLValidator on Python 3.9.5+. In Python 3.9.5+ urllib.parse() automatically removes ASCII newlines and tabs from URLs [1, 2]. Unfortunately it created an issue in the URLValidator. URLValidator uses urllib.urlsplit() and urllib.urlunsplit() for creating a URL variant with Punycode which no longer contains newlines and tabs in Python 3.9.5+. As a consequence, the regular expression matched the URL (without unsafe characters) and the source value (with unsafe characters) was considered valid. [1] https://bugs.python.org/issue43882 and [2] https://github.com/python/cpython/commit/76cd81d60310d65d01f9d7b48a8985d8ab89c8b4 Backport of e1e81aa1c4427411e3c68facdd761229ffea6f6f from main.
2021-05-04[3.1.x] Added CVE-2021-31542 to security archive.Carlton Gibson
Backport of 607ebbfba915de2d84eb943aa93654f31817a709 and 62b2e8b37e37a313c63be40e3223ca4e830ebde3 from main
2021-04-27[3.1.x] Fixed CVE-2021-31542 -- Tightened path & file name sanitation in ↵Florian Apolloner
file uploads.
2021-04-06[3.1.x] Added CVE-2021-28658 to security archive.Mariusz Felisiak
Backport of 1eac8468cbde790fecb51dd055a439f4947d01e9 from main
2021-04-06[3.1.x] Fixed CVE-2021-28658 -- Fixed potential directory-traversal via ↵Mariusz Felisiak
uploaded files. Thanks Claude Paroz for the initial patch. Thanks Dennis Brinkrolf for the report. Backport of d4d800ca1addc4141e03c5440a849bb64d1582cd from main.
2021-03-22[3.1.x] Fixed #32576 -- Corrected dumpdata docs for passing model names to ↵tim-mccurrach
the --exclude option. Backport of cf2f6fc558166656f29609e3864df9af81067d0c from main
2021-03-19[3.1.x] Refs #25735 -- Added tags/exclude_tags arguments to DiscoverRunner docs.Mariusz Felisiak
Backport of 37044817f9a57126d655f216019e8c8cca7c151b from main.
2021-03-19[3.1.x] Added parallel argument to DiscoverRunner docs.Mariusz Felisiak
Follow up to cd9fcd4e8073490a52c9e79133ada4661cb7db38. Backport of f099ef3ef53f88160d04d7dcc73859801b05a83e from main.
2021-03-19[3.1.x] Corrected DiscoverRunner.build_suite() signature.Mariusz Felisiak
Follow up to 9012833af857e081b515ce760685b157638efcef. Backport of fc6fba0aa9e4575c9a1c23ad7031eebb1c112868 from main
2021-03-17[3.1.x] Fixed #32560 -- Fixed test runner with --pdb and --buffer on fail/error.Adam Johnson
Backport of 45814af6197cfd8f4dc72ee43b90ecde305a1d5a from main
2021-03-17[3.1.x] Fixed typo in docs/topics/testing/advanced.txt.Jozef
Backport of 6993e1bf6dff04b6e3ab284b154397b341463b50 from main
2021-03-16[3.1.x] Fixed #32536 -- Added links to BaseDetailView/BaseListView.get() ↵Hasan Ramezani
methods in CBV docs. Backport of bc04941bf811d1ea2c79fb7fc20457ed2c7e3410 from main
2021-03-15[3.1.x] Fixed typo in docs/ref/checks.txt.Hasan Ramezani
Backport of 50ef9dfac21499ff6c46c2f6a33103e40b60cd4e from main
2021-03-15[3.1.x] Updated datum directory for PROJ 6 in GIS install instructions.Mariusz Felisiak
Backport of 4d912e6697784325bc43a6d852fe5a26e6fa235a from main
2021-03-04[3.1.x] Refs #32483 -- Doc'd caveat about using JSONField key transforms to ↵Mariusz Felisiak
booleans with QuerySet.values()/values_list() on SQLite. Backport of c6b07627fcb5d1c8d2082714ef5adb63bee6cf4c from master
2021-03-04[3.1.x] Fixed typo in docs/ref/contrib/postgres/fields.txt.Mariusz Felisiak
Backport of 05bbff82638731a6abfed2fe0ae06a4d429cb32f from master
2021-03-04[3.1.x] Corrected admin.E023 message in docs.Hasan Ramezani
Backport of d1f89c9b9a9b44c4dbfd24fcb5f76f16e973c0a2 from master
2021-03-03[3.1.x] Updated links to djangoproject.com/code.djangoproject.com repositories.Mariusz Felisiak
Backport of 2b1de3dd242b473cd084e7ff9b9b10d488dcabad from master
2021-02-26[3.1.x] Fixed typos in assertQuerysetEqual() docs and 1.6 release notes.Jacob Walls
Backport of 0c7e880e13b837dd76276c04ebdc338bb76d1379 from master
2021-02-25[3.1.x] Added stub release notes for 3.1.8.Mariusz Felisiak
Backport of e0f82d7992ad7085dcf4ed096a6ad2e3ad89eaae from master
2021-02-25[3.1.x] Updated links to DEPs.Markus Holtermann
Backport of 7cc6899d4176539e5d59a2e921b938904d3a8944 from master
2021-02-19[3.1.x] Added CVE-2021-23336 to security archive.Carlton Gibson
Backport of ab58f072502e86dfe21b2bd5cccdc5e94dce8d26 from master
2021-02-18[3.1.x] Fixed CVE-2021-23336 -- Fixed web cache poisoning via ↵Nick Pope
django.utils.http.limited_parse_qsl().
2021-02-17[3.1.x] Added documentation extlink for bugs.python.org.Nick Pope
Backport of d02d60eb0f032c9395199fb73c6cd29ee9bb2646 from master
2021-02-12[3.1.x] Fixed #32438 -- Fixed typo in docs/topics/testing/tools.txt.David Smith
Backport of e412b288455dd3ea6f1d65c8ec5d01751e489976 from master
2021-02-08[3.1.x] Fixed #32430 -- Doc'd base class-based views.Anil Khatri
Backport of 6ee86a12ee29fcd4f3d7c9f1ad6de8cde4637b06 from master
2021-02-08[3.1.x] Fixed #32408 -- Doc'd django.views.generic.detail.BaseDetailView.Anil Khatri
Backport of de4492fbb1e48f8b258baa182220d4247f345177 from master
2021-02-04[3.1.x] Corrected typo in advice to new contributors.Carlton Gibson
Backport of e48e78738e224a056df57b7cb08bd48ac0e54f60 from master