| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2021-11-03 | [2.2.x] Refs #32856 -- Clarified that psycopg2 < 2.9 is required. | Mariusz Felisiak | |
| Follow up to 837ffcfa681d0f65f444d881ee3d69aec23770be. | |||
| 2021-06-21 | [2.2.x] Refs #32856 -- Doc'd that psycopg2 < 2.9 is required. | Mariusz Felisiak | |
| 2020-06-30 | [2.2.x] Refs #31751 -- Doc'd that cx_Oracle < 8 is required. | Mariusz Felisiak | |
| 2019-11-25 | [2.2.x] Updated link to IBM DB2 backend. | Sergey Fedoseev | |
| See https://github.com/ibmdb/python-ibmdb/pull/375 Backport of 5573a54d409bb98b5c5acdb308310bed02d392c2 from master | |||
| 2019-11-05 | [2.2.x] Fixed #30928 -- Clarified MySQL/MariaDB support of ↵ | kola-er | |
| QuerySet.select_for_update() options. Thanks Par Andersson for reporting the issue. Backport of d94d7b113c21d7a0fd802fadb1adbbec8155e880 from master | |||
| 2019-10-25 | [2.2.x] Fixed #30904 -- Doc'd caveat about using filtered queryset with ↵ | Saad | |
| select_for_update() on MySQL. Backport of fc2b1cc926e34041953738e58fa6ad3053059b22 from master | |||
| 2019-10-03 | [2.2.x] Fixed #30834 -- Added explicit list of supported databases to the ↵ | Katie McLaughlin | |
| databases docs. Backport of 9dca904a5bf37ee9ad015212b17a9929ab8952cd from master | |||
| 2019-09-14 | [2.2.x] Fixed #29823 -- Doc'd limitation of DecimalField on SQLite. | Claude Paroz | |
| Backport of b8dff52f440adfb78b40e19ee8bff45373ca2501 from master | |||
| 2019-05-17 | [2.2.x] Fixed #30199 -- Adjusted QuerySet.get_or_create() docs to highlight ↵ | Alex | |
| atomicity warning. Backport of 1686dce06c1f3587e90ea98816eddaa965fd9f45 from master | |||
| 2019-03-29 | [2.2.x] Removed unnecessary /static from links to PostgreSQL docs. | Nick Pope | |
| Backport of 198a2a9381a415f76c3170753270f5087ce4475a from master. | |||
| 2019-02-09 | [2.2.x] Fixed #30169 -- Removed SAP SQL Anywhere from "3rd party database ↵ | Tim Graham | |
| backends" as it's inactive. Backport of 56b50cbf73ecfd4577bb7cfe8dc8ccd4befd7e00 from master. | |||
| 2019-02-08 | [2.2.x] Removed extra characters in docs header underlines. | Mariusz Felisiak | |
| Backport of 25829197bb94585e94695360065ac614aa9e6a56 from master | |||
| 2019-01-10 | Refs #28643 -- Added NullIf database function. | Mads Jensen | |
| Thanks Nick Pope, Mariusz Felisiak, and Tim Graham for reviews. | |||
| 2018-12-22 | Fixed #30055 -- Dropped support for SQLite < 3.8.3. | Tim Graham | |
| 2018-12-06 | Bumped mysqlclient requirement to >= 1.3.13. | Tim Graham | |
| There are test failures with older versions. | |||
| 2018-11-26 | Refs #29722 -- Added introspection of materialized views for Oracle. | Mariusz Felisiak | |
| Thanks Tim Graham for the review. | |||
| 2018-11-15 | Used auto-numbered lists in documentation. | François Freitag | |
| 2018-10-11 | Fixed #29836 -- Bumped required cx_Oracle to 6.0. | Mariusz Felisiak | |
| 2018-09-17 | Fixed #29757 -- Documented Oracle DSN and Easy Connect options. | jtiai | |
| 2018-08-25 | Fixed #29709 -- Updated recommended SQL Server backend to django-pyodbc-azure. | Tim Graham | |
| 2018-08-03 | Refs #28584 -- Documented removal of support for SQLite < 3.7.15. | Tim Graham | |
| 2018-07-25 | Fixed #29563 -- Added result streaming for QuerySet.iterator() on SQLite. | Andrew Brown | |
| 2018-06-15 | Added backticks to code literals in docs/ref/databases.txt. | Mariusz Felisiak | |
| 2018-05-17 | Removed versionadded/changed annotations for 2.0. | Tim Graham | |
| 2018-04-17 | Fixed #29334 -- Updated pypi.python.org URLs to pypi.org. | Brett Cannon | |
| 2017-12-21 | Updated documented mysqlclient requirement to 1.3.7. | Berker Peksag | |
| The test requirement was bumped in 2514e044a7fce58176c4e79eec298f3d8f70e89b. | |||
| 2017-09-27 | Fixed #28626 -- Dropped support for PostgreSQL 9.3. | Tim Graham | |
| Thanks Simon Charette for the introspection changes. | |||
| 2017-09-25 | Fixed #28552 -- Dropped support for MySQL 5.5. | Tim Graham | |
| 2017-09-22 | Removed versionadded/changed annotations for 1.11. | Tim Graham | |
| 2017-06-29 | Fixed #28010 -- Added FOR UPDATE OF support to QuerySet.select_for_update(). | Ran Benita | |
| 2017-06-19 | Fixed #18485 -- Doc'd behavior of PostgreSQL when manually setting AutoField. | François Freitag | |
| 2017-05-22 | Updated various links in docs to avoid redirects | Claude Paroz | |
| Thanks Tim Graham and Mariusz Felisiak for review and completion. | |||
| 2017-05-06 | Fixed #28062 -- Added a setting to disable server-side cursors on PostgreSQL. | François Freitag | |
| When a connection pooler is set up in transaction pooling mode, queries relying on server-side cursors fail. The DISABLE_SERVER_SIDE_CURSORS setting in DATABASES disables server-side cursors for this use case. | |||
| 2017-05-02 | Fixed broken link to mysqlclient docs. | Tim Graham | |
| 2017-04-11 | Updated docs after changing select_for_update() to raise NotSupportedError. | Ran Benita | |
| Follow up to 054a44d6f0f75395bd02a21e31ea904a24750a2b. | |||
| 2017-03-21 | Fixed #27966 -- Bumped required psycopg2 version to 2.5.4. | Mariusz Felisiak | |
| Thanks Tim Graham for the review. | |||
| 2017-03-20 | Removed extra characters in docs header underlines. | Mariusz Felisiak | |
| 2017-02-01 | Fixed #27683 -- Made MySQL default to the read committed isolation level. | Tim Graham | |
| Thanks Shai Berger for test help and Adam Johnson for review. | |||
| 2017-01-28 | Fixed #27788 -- Dropped support for Oracle < 12.1. | Tim Graham | |
| 2017-01-25 | Refs #23919 -- Removed obsolete MySQLdb references. | Tim Graham | |
| 2017-01-20 | Refs #23919 -- Removed pysqlite support (it's Python 2 only). | Tim Graham | |
| 2017-01-18 | Refs #23919 -- Removed Python 2 notes in docs. | Tim Graham | |
| 2017-01-17 | Refs #26154 -- Removed deprecated CommaSeparatedIntegerField. | Tim Graham | |
| 2017-01-17 | Refs #27683 -- Allowed setting isolation level in DATABASES ['OPTIONS'] on ↵ | Tim Graham | |
| MySQL. | |||
| 2017-01-11 | Refs #16614 -- Made QuerySet.iterator() use server-side cursors on PostgreSQL. | François Freitag | |
| Thanks to Josh Smeaton for the idea of implementing server-side cursors in PostgreSQL from the iterator method, and Anssi Kääriäinen and Kevin Turner for their previous work. Also Simon Charette and Tim Graham for review. | |||
| 2016-12-29 | Fixed #27649 -- Bumped required cx_Oracle to 5.2. | Tim Graham | |
| Removed obsolete workarounds from 1aa48898085ea16915877cc139e238a74e3f554b and dcf3be7a621f011a918453527406216a738acf68. | |||
| 2016-11-08 | Fixed #27420 -- Quoted the Oracle test user password in queries. | Mariusz Felisiak | |
| 2016-10-25 | Updated postgresql.org links to https and made them canonical. | Marti Raudsepp | |
| 2016-09-30 | Updated links to the current version of MySQL docs. | Tim Graham | |
| 2016-09-03 | Replaced smart_* by force_* calls whenever possible | Claude Paroz | |
| The smart_* version should only be used when a lazy string should keep its lazy status. | |||
