summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/fields
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34285 -- Fixed index/slice lookups on filtered aggregates with ArrayFi...Nils VAN ZUIJLEN2023-02-071-2/+6
* Fixed #33308 -- Added support for psycopg version 3.Daniele Varrazzo2022-12-152-2/+10
* Refs #33308 -- Moved psycopg2 imports to the psycopg_any module.Florian Apolloner2022-12-121-2/+6
* Fixed #34205 -- Fixed Meta.constraints validation crash with ArrayField and _...James Gillard2022-12-101-1/+1
* Fixed #34080 -- Fixed __exact lookup when nested arrays contain only NULL val...Ion Alberdi2022-11-031-1/+10
* Fixed #33905 -- Fixed CheckConstraint() validation on range fields.David Sanders2022-08-091-0/+3
* Fixed #33872 -- Deprecated django.contrib.postgres.fields.CIText/CICharField/...Mariusz Felisiak2022-08-032-12/+84
* Fixed #33881 -- Added support for database collations to ArrayField(Char/Text...Mariusz Felisiak2022-08-021-0/+6
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-071-1/+2
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-075-157/+179
* Fixed #27147 -- Allowed specifying bounds of tuple inputs for non-discrete ra...Guilherme Martins Crocetti2021-11-041-2/+37
* Refs #12990 -- Removed django.contrib.postgres.fields.jsonb.KeyTransform/KeyT...Mariusz Felisiak2021-01-141-28/+0
* Refs #12990 -- Removed django.contrib.postgres.fields.JSONField per deprecati...Mariusz Felisiak2021-01-141-5/+4
* Refs #27095 -- Allowed (non-nested) arrays containing expressions for ArrayFi...Hannes Ljungberg2020-11-261-6/+21
* Fixed #30446 -- Resolved Value.output_field for stdlib types.Simon Charette2020-07-151-2/+1
* Fixed #12990, Refs #27694 -- Added JSONField model field.sage2020-05-081-172/+30
* Refs #12990 -- Moved PostgresSimpleLookup to the django.db.models.lookups.Pos...Mariusz Felisiak2020-04-011-16/+17
* Fixed #31039 -- Added support for contained_by lookup with AutoFields, SmallI...Hasan Ramezani2019-12-051-1/+8
* Refs #31039 -- Removed unnecessary registration of contained_by lookup for Bi...Hasan Ramezani2019-12-051-1/+0
* Fixed #29916 -- Added lower_inc, lower_inf, upper_inc, and upper_inf lookups ...Dulmandakh2019-11-141-0/+28
* Fixed #30095 -- Fixed system check for RangeField/ArrayField.choices with lis...Hasan Ramezani2019-11-052-0/+8
* Refs #12990 -- Moved CheckFieldDefaultMixin to the django.db.models.fields.mi...sage2019-10-174-34/+3
* Fixed #30769 -- Fixed a crash when filtering against a subquery JSON/HStoreFi...Simon Charette2019-09-162-2/+2
* Refs #29598 -- Removed FloatRangeField per deprecation timeline.Mariusz Felisiak2019-09-101-17/+0
* Fixed #30715 -- Fixed crash of ArrayField lookups on ArrayAgg annotations ove...Mariusz Felisiak2019-08-231-1/+5
* Reduced code duplication in ArrayField's lookups.Mariusz Felisiak2019-08-231-20/+15
* Fixed #30672 -- Fixed crash of JSONField/HStoreField key transforms on expres...Mariusz Felisiak2019-08-142-2/+2
* Fixed #30704 -- Fixed crash of JSONField nested key and index transforms on e...Mariusz Felisiak2019-08-131-1/+1
* Moved indexes in ArrayField's Index and Slice transforms to SQL params.Mariusz Felisiak2019-08-051-2/+2
* Fixed CVE-2019-14234 -- Protected JSONField/HStoreField key and index lookups...Mariusz Felisiak2019-08-012-6/+4
* Fixed #29824 -- Added support for database exclusion constraints on PostgreSQL.Mads Jensen2019-07-161-1/+11
* Refs #29824 -- Added RangeOperators helper class.Mads Jensen2019-07-161-7/+22
* Simplified RangeContainedBy by making it subclass PostgresSimpleLookup.Mariusz Felisiak2019-07-131-11/+12
* Simplified DateTimeRangeContains by making it subclass PostgresSimpleLookup.Mariusz Felisiak2019-07-121-5/+4
* Fixed #30621 -- Fixed crash of __contains lookup for Date/DateTimeRangeField ...Mariusz Felisiak2019-07-101-1/+6
* Fixed #30400 -- Improved typography of user facing strings.Jon Dufresne2019-06-281-1/+1
* Removed obsolete Lookup hook to prepare rhs expressions.Simon Charette2019-03-211-2/+1
* Reverted "Fixed relative paths imports per isort 4.3.5."Mariusz Felisiak2019-03-031-1/+1
* Fixed relative paths imports per isort 4.3.5.Mariusz Felisiak2019-02-251-1/+1
* Refs #28370 -- Removed support for the context arg of Field.from_db_value() a...Tim Graham2019-01-171-4/+1
* Fixed #29598 -- Deprecated FloatRangeField in favor of DecimalRangeField.Stefano Chiodino2018-10-021-1/+18
* Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev2018-09-281-2/+1
* Fixed #28291, #24726 -- Fixed ArrayField with JSONField and RangeFields.vinay karanam2018-07-271-0/+3
* Refs #29131 -- Fixed space handling in ArrayField's item_invalid message.Hasan Ramezani2018-05-131-1/+1
* Refs #29131 -- Made ArrayField error messages index from 1 instead of 0.Hasan Ramezani2018-04-221-2/+2
* Fixed #25718 -- Made a JSONField lookup value of None match keys that have a ...Dmitry Dygalo2018-04-041-0/+1
* Refs #28577 -- Added check for HStoreField to prevent mutable default.Tim Graham2018-04-031-1/+4
* Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope2017-12-113-11/+10
* Fixed #28702 -- Made query lookups for CIText fields use citext.Mads Jensen2017-11-291-0/+4
* Fixed #28749 -- Added subquery support for ArrayField's __in lookup.MichaƂ Pasternak2017-11-011-0/+3