| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2020-03-06 | Fixed #31342 -- Clarified docs about using base managers for related objects. | Carlton Gibson | |
| 2020-03-05 | Fixed #31341 -- Doc'd minimal gettext version with ES6 template strings support. | Claude Paroz | |
| 2020-03-05 | Fixed #31327 -- Deprecated providing_args argument for Signal. | Jon Dufresne | |
| 2020-03-04 | Added stub release notes for 3.0.5. | Mariusz Felisiak | |
| 2020-03-04 | Fixed typo in docs/releases/1.11.29.txt. | Mariusz Felisiak | |
| 2020-03-04 | Added CVE-2020-9402 to security archive. | Mariusz Felisiak | |
| 2020-03-04 | Fixed CVE-2020-9402 -- Properly escaped tolerance parameter in GIS functions ↵ | Mariusz Felisiak | |
| and aggregates on Oracle. Thanks to Norbert Szetei for the report. | |||
| 2020-03-03 | Fixed #31147 -- Added SearchHeadline to django.contrib.postgres. | Hannes Ljungberg | |
| 2020-03-03 | Fixed #31150 -- Included subqueries that reference related fields in GROUP ↵ | Mariusz Felisiak | |
| BY clauses. Thanks Johannes Hoppe for the report. Regression in fb3f034f1c63160c0ff13c609acd01c18be12f80. Co-authored-by: Simon Charette <charette.s@gmail.com> | |||
| 2020-03-03 | Documented default value of InlineModelAdmin.extra. | Adam Johnson | |
| 2020-03-02 | Fixed #31274 -- Used signing infrastructure in SessionBase.encode()/decode(). | Claude Paroz | |
| Thanks Mariusz Felisiak and Florian Apolloner for the reviews. | |||
| 2020-02-29 | Removed outdated note about not supporting partial indexes by Django. | Mariusz Felisiak | |
| Supported since a906c9898284a9aecb5f48bdc534e9c1273864a6. | |||
| 2020-02-28 | Fixed #31032 -- Updated admin browser support FAQ for 2020. | Carlton Gibson | |
| Following web standards, the modern _evergreen_ browsers are all supported. This applies equally to mobile platforms. Assuming current trends continue, this should be a sustainable policy. Microsoft deprecated all versions of Internet Explorer. IE 11, the last version, is described as a "compatibility solution" rather than a web browser. Whilst it will receive security updates for the lifetime of Windows 10 it's use is actively discouraged. The IE 11 downloads page makes it clear: "We recommend you use the new Microsoft Edge". | |||
| 2020-02-27 | Fixed #31185 -- Fixed detecting of unique fields in ForeignKey/ForeignObject ↵ | Valze | |
| checks when using Meta.constraints. | |||
| 2020-02-27 | Fixed #31312 -- Properly ordered temporal subtraction params on MySQL. | Simon Charette | |
| Regression in 9bcbcd599abac91ea853b2fe10b784ba32df043e. Thanks rick2ricks for the report. | |||
| 2020-02-27 | Fixed #31313 -- Fixed is_upperclass() example in enumeration types docs. | Andrey Doroschenko | |
| 2020-02-26 | Removed hint from fields.E310 message in system check docs. | Mariusz Felisiak | |
| This is the only documented hint. | |||
| 2020-02-25 | Fixed #31291 -- Renamed salt to mask for CSRF tokens. | Ram Rachum | |
| 2020-02-24 | Fixed #31303 -- Removed outdated note about symmetrical intermediate table ↵ | Matheus Cunha Motta | |
| for self-referential ManyToManyField. Follow up to 87b1ad6e7351464c60e751b483d9dfce3a2d3382. | |||
| 2020-02-20 | Fixed #31182 -- Adjusted release notes for ASGI support. | Adam Johnson | |
| 2020-02-19 | Fixed #30040 -- Used default permission name in docs examples to avoid ↵ | Hasan Ramezani | |
| confusion. | |||
| 2020-02-19 | Fixed typos in docs and a test comment. | Yoo In Keun | |
| 2020-02-18 | Refs #26601 -- Deprecated passing None as get_response arg to middleware ↵ | Claude Paroz | |
| classes. This is the new contract since middleware refactoring in Django 1.10. Co-authored-by: Carlton Gibson <carlton.gibson@noumenal.es> Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2020-02-18 | Fixed #31282 -- Corrected RelatedManager docs for using add/remove/set with PKs. | Carlton Gibson | |
| 2020-02-18 | Fixed #31271 -- Preserved ordering when unifying query parameters on Oracle. | Mariusz Felisiak | |
| This caused misplacing parameters in logged SQL queries. Regression in 79065b55a70cd220820a260a1c54851b7be0615a. Thanks Hans Aarne Liblik for the report. | |||
| 2020-02-18 | Fixed #20995 -- Added support for iterables of template names to {% include ↵ | Keshav Kumar | |
| %} template tag. Thanks Adam Johnson for the review. | |||
| 2020-02-17 | Fixed #31277 -- Relaxed system check of m2m intermediary tables for db_table ↵ | Xavier Francisco | |
| collision when database routers are installed. Turned the error into a warning when database routers are installed. | |||
| 2020-02-14 | Fixed #31270 -- Doc'd RedirectView.get_redirect_url() arguments. | Hasan Ramezani | |
| 2020-02-13 | Fixed #31250 -- Ignored processing instructions in ↵ | yura | |
| assertXMLEqual()/assertXMLNotEqual(). | |||
| 2020-02-12 | Refs #27468 -- Made PasswordResetTokenGenerator use SHA-256 algorithm. | Claude Paroz | |
| 2020-02-12 | Fixed #31241 -- Clarified porting translations of the Django docs to ↵ | Takuya Noguchi | |
| docs.djangoproject.com. | |||
| 2020-02-11 | Fixed #31246 -- Fixed locking models in QuerySet.select_for_update(of=()) ↵ | Abhijeet Viswa | |
| for related fields and parent link fields with multi-table inheritance. Partly regression in 0107e3d1058f653f66032f7fd3a0bd61e96bf782. | |||
| 2020-02-11 | Fixed #31240 -- Properly closed FileResponse when wsgi.file_wrapper is used. | Florian Apolloner | |
| Thanks to Oskar Persson for the report. | |||
| 2020-02-11 | Reverted "Fixed #30565 -- Closed HttpResponse when wsgi.file_wrapper closes ↵ | Florian Apolloner | |
| file-like object." This reverts commit cce47ff65a4dd3786c049ec14ee889e128ca7de9. | |||
| 2020-02-11 | Fixed #31253 -- Fixed data loss possibility when using caching from async code. | Jon Dufresne | |
| Case missed in a415ce70bef6d91036b00dd2c8544aed7aeeaaed. | |||
| 2020-02-10 | Fixed #31003 -- Doc'd and tested return value of QuerySet.bulk_create(). | Adam Johnson | |
| 2020-02-10 | Added stub release notes for 2.2.11. | Mariusz Felisiak | |
| 2020-02-10 | Added "Bugfixes" section to release notes for 3.0.4. | Mariusz Felisiak | |
| 2020-02-07 | Refs #31055 -- Made DiscoverRunner skip running system checks on unused test ↵ | Simon Charette | |
| databases. | |||
| 2020-02-07 | Refs #31055 -- Added --database option to the check management command. | Simon Charette | |
| This avoids enabling the ``database`` checks unless they are explicitly requested and allows to disable on a per-alias basis which is required when only creating a subset of the test databases. This also removes unnecessary BaseCommand._run_checks() hook. | |||
| 2020-02-06 | Refs #31233 -- Changed DatabaseWrapper._nodb_connection to _nodb_cursor(). | Jon Dufresne | |
| It is now a method instead of a property and returns a context manager that yields a cursor on entry and closes the cursor and connection upon exit. | |||
| 2020-02-05 | Fixed #31232 -- Changed default SECURE_REFERRER_POLICY to 'same-origin'. | Adam Johnson | |
| 2020-02-05 | Improved grammar in 3.0 release notes for SECURE_CONTENT_TYPE_NOSNIFF change. | Adam Johnson | |
| 2020-02-04 | Simplified imports from django.db and django.contrib.gis.db. | Nick Pope | |
| 2020-02-04 | Fixed #31210 -- Doc'd how to reproduce HttpRequest.is_ajax() in release notes. | Adam Johnson | |
| 2020-02-04 | Fixed typo in docs/releases/3.1.txt. | Adam Johnson | |
| 2020-02-04 | Fixed #27604 -- Used the cookie signer to sign message cookies. | Claude Paroz | |
| Co-authored-by: Craig Anderson <craiga@craiga.id.au> | |||
| 2020-02-03 | Fixed #31226 -- Fixed typo in ↵ | Vibhu Agarwal | |
| docs/internals/contributing/writing-code/submitting-patches.txt. | |||
| 2020-02-03 | Fixed #31222 -- Fixed typo in docs/internals/contributing/bugs-and-features.txt. | Vibhu Agarwal | |
| 2020-02-03 | Added stub release notes for 3.0.4. | Carlton Gibson | |
