| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2022-07-23 | [4.1.x] Refs #25756 -- Doc'd inability to use file fields with PostgreSQL ↵ | Claude Paroz | |
| ArrayField. Backport of a46dfa87d0ba690125be98f7f1b77062a1794fdc from main | |||
| 2022-07-13 | [4.1.x] Fixed #30711 -- Doc'd ↵ | Alokik Vijay | |
| django.contrib.postgres.fields.hstore.KeyTransform(). Backport of 7faf25d682b8e8f4fd2006eb7dfc71ed2a2193b7 from main | |||
| 2022-06-24 | [4.1.x] Fixed #33804 -- Corrected GinIndex.gin_pending_list_limit ↵ | Ian Wootten | |
| description in docs. Backport of 6f63e0ce8e36fbdb2d0c4dfd77ed3cf02e467f49 from main | |||
| 2022-05-10 | Fixed #30581 -- Added support for Meta.constraints validation. | Gagaro | |
| Thanks Simon Charette, Keryn Knight, and Mariusz Felisiak for reviews. | |||
| 2022-05-04 | Fixed #33675 -- Dropped support for PostgreSQL 10 and PostGIS 2.4. | Mariusz Felisiak | |
| 2022-03-16 | Doc'd BaseConstraint. | Gagaro | |
| 2022-01-28 | Fixed #33459 -- Clarified index type in full text search docs. | Thomas Aglassinger | |
| 2021-12-28 | Avoided counting attributes and methods in docs. | Mariusz Felisiak | |
| 2021-12-27 | Refs #33342 -- Deprecated ExclusionConstraint.opclasses. | Hannes Ljungberg | |
| 2021-12-24 | Fixed #33342 -- Added support for using OpClass() in exclusion constraints. | Hannes Ljungberg | |
| 2021-11-04 | Fixed #27147 -- Allowed specifying bounds of tuple inputs for non-discrete ↵ | Guilherme Martins Crocetti | |
| range fields. | |||
| 2021-10-04 | Refs #27694 -- Doc'd lookups that can be chained with HStoreField key ↵ | Sarah Abderemane | |
| transforms. | |||
| 2021-10-01 | Refs #32943 -- Added support for covering exclusion constraints using ↵ | Nick Pope | |
| SP-GiST indexes on PostgreSQL 14+. | |||
| 2021-10-01 | Refs #32943 -- Added support for covering SP-GiST indexes on PostgreSQL 14+. | Nick Pope | |
| 2021-10-01 | Fixed #32961 -- Added BitXor() aggregate to django.contrib.postgres. | Nick Pope | |
| 2021-09-20 | Removed versionadded/changed annotations for 3.2. | Mariusz Felisiak | |
| 2021-09-17 | Fixed #32492 -- Added TrigramWordSimilarity() and TrigramWordDistance() on ↵ | Nikita Marchant | |
| PostgreSQL. | |||
| 2021-08-17 | Fixed #32964 -- Corrected 'setup'/'set up' usage in docs. | Andrew Northall | |
| 2021-07-27 | Refs #32956 -- Changed "afterwards" to "afterward" in docs and comments. | David Smith | |
| This also removes unnecessary comments with the previous spelling. AP Stylebook has a short entry to advise the preferred spelling for "en-us". "Afterwards" is preferred in British English. | |||
| 2021-07-26 | Fixed #32906 -- Added docs and tests for using key and index lookups on ↵ | abhiabhi94 | |
| JSONBAgg results. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2021-07-19 | Refs #10929 -- Deprecated forced empty result value for PostgreSQL aggregates. | Nick Pope | |
| This deprecates forcing a return value for ArrayAgg, JSONBAgg, and StringAgg when there are no rows in the query. Now that we have a ``default`` argument for aggregates, we want to revert to returning the default of ``None`` which most aggregate functions return and leave it up to the user to decide what they want to be returned by default. | |||
| 2021-07-19 | Fixed #10929 -- Added default argument to aggregates. | Nick Pope | |
| Thanks to Simon Charette and Adam Johnson for the reviews. | |||
| 2021-07-06 | Fixed #32776 -- Added support for Array subqueries on PostgreSQL. | Hannes Ljungberg | |
| 2021-06-08 | Fixed #31653 -- Added AddConstraintNotValid()/ValidateConstraint() ↵ | Sanskar Jaiswal | |
| operations for PostgreSQL. | |||
| 2021-04-28 | Corrected introduction to range field lookups docs. | Adam Johnson | |
| Follow up to 24b9f5082344a127147266dd52d5d2dcd1c9cb44. | |||
| 2021-03-04 | Fixed typo in docs/ref/contrib/postgres/fields.txt. | Mariusz Felisiak | |
| 2021-02-23 | Fixed #30916 -- Added support for functional unique constraints. | Hannes Ljungberg | |
| Thanks Ian Foote and Mariusz Felisiak for reviews. | |||
| 2021-01-25 | Refs #26167 -- Corrected OpClass() example in docs. | Hannes Ljungberg | |
| 2021-01-19 | Fixed #32357 -- Dropped support for PostgreSQL 9.6 and PostGIS 2.3. | Mariusz Felisiak | |
| 2021-01-14 | Refs #12990 -- Removed django.contrib.postgres.forms.JSONField per ↵ | Mariusz Felisiak | |
| deprecation timeline. | |||
| 2021-01-14 | Refs #12990 -- Removed django.contrib.postgres.fields.JSONField per ↵ | Mariusz Felisiak | |
| deprecation timeline. | |||
| 2021-01-14 | Removed versionadded/changed annotations for 3.1. | Mariusz Felisiak | |
| 2021-01-13 | Fixed #26167 -- Added support for functional indexes. | Hannes Ljungberg | |
| Thanks Simon Charette, Mads Jensen, and Mariusz Felisiak for reviews. Co-authored-by: Markus Holtermann <info@markusholtermann.eu> | |||
| 2020-11-04 | Fixed #32169 -- Added distinct support to JSONBAgg. | Artur Beltsov | |
| 2020-10-21 | Fixed #32046 -- Added CreateCollation/RemoveCollation operations for PostgreSQL. | Tom Carrick | |
| 2020-08-07 | Fixed typo in docs/ref/contrib/postgres/fields.txt. | Thomas | |
| 2020-07-28 | Refs #27996 -- Doc'd no extension required for RandomUUID() on PostgreSQL 13+. | Nick Pope | |
| https://www.postgresql.org/docs/13/functions-uuid.html https://www.postgresql.org/docs/13/pgcrypto.html#id-1.11.7.34.10.5 | |||
| 2020-07-21 | Refs #31720 -- Defined default output_field of BoolAnd() and BoolOr() ↵ | David Chorpash | |
| aggregate functions. | |||
| 2020-07-21 | Refs #31720 -- Added examples to BoolAnd() and BoolOr() documentation. | David Chorpash | |
| 2020-07-15 | FIxed typo in docs/ref/contrib/postgres/forms.txt. | Eric Theise | |
| 2020-06-23 | Made small improvements to PostgreSQL operations docs. | Adam Johnson | |
| 2020-06-16 | Fixed #31709 -- Added support for opclasses in ExclusionConstraint. | Hannes Ljungberg | |
| 2020-06-13 | Fixed #31691 -- Added ordering support to JSONBAgg. | John Parton | |
| 2020-06-12 | Fixed #31649 -- Added support for covering exclusion constraints on ↵ | Hannes Ljungberg | |
| PostgreSQL 12+. | |||
| 2020-05-27 | Fixed #31615 -- Made migrations skip extension operations if not needed. | Frantisek Holop | |
| - Don't try to create an existing extension. - Don't try to drop a nonexistent extension. | |||
| 2020-05-27 | Refs #31615 -- Improved creating extension docs. | Frantisek Holop | |
| 2020-05-18 | Fixed #31577 -- Clarified docs about bounds of RangeFields. | xncbf | |
| 2020-05-13 | Removed versionadded/changed annotations for 3.0. | Mariusz Felisiak | |
| 2020-05-08 | Fixed #12990, Refs #27694 -- Added JSONField model field. | sage | |
| Thanks to Adam Johnson, Carlton Gibson, Mariusz Felisiak, and Raphael Michel for mentoring this Google Summer of Code 2019 project and everyone else who helped with the patch. Special thanks to Mads Jensen, Nick Pope, and Simon Charette for extensive reviews. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2020-05-06 | Fixed a/an typos in "SQL" usage. | Adam Johnson | |
