summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/fields/array.py
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-151-1/+1
* 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 #33872 -- Deprecated django.contrib.postgres.fields.CIText/CICharField/...Mariusz Felisiak2022-08-031-9/+26
* Fixed #33881 -- Added support for database collations to ArrayField(Char/Text...Mariusz Felisiak2022-08-021-0/+6
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-071-59/+69
* Refs #27095 -- Allowed (non-nested) arrays containing expressions for ArrayFi...Hannes Ljungberg2020-11-261-6/+21
* Fixed #30095 -- Fixed system check for RangeField/ArrayField.choices with lis...Hasan Ramezani2019-11-051-0/+4
* Refs #12990 -- Moved CheckFieldDefaultMixin to the django.db.models.fields.mi...sage2019-10-171-1/+1
* 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
* Moved indexes in ArrayField's Index and Slice transforms to SQL params.Mariusz Felisiak2019-08-051-2/+2
* 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
* 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 #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope2017-12-111-4/+3
* Fixed #28749 -- Added subquery support for ArrayField's __in lookup.Michał Pasternak2017-11-011-0/+3
* Fixed #28577 -- Added checks for ArrayField and JSONField to prevent mutable ...Flávio Juvenal2017-10-201-1/+3
* Merged isinstance() calls.Mariusz Felisiak2017-09-131-1/+1
* Fixed #28370 -- Deprecated the context arg of Field.from_db_value() and Expre...Tim Graham2017-07-201-2/+5
* Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz2017-02-071-1/+1
* Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand2017-01-251-15/+15
* Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette2017-01-191-2/+2
* Refs #23919 -- Removed six.<various>_types usageClaude Paroz2017-01-181-2/+1
* Refs #25226 -- Cloned ArrayField.base_field on deconstruction.Simon Charette2017-01-141-1/+1
* Refs #27025 -- Fixed ArrayField querying on Python 3.6.Tim Graham2016-09-201-7/+8
* Fixed #22288 -- Fixed F() expressions with the __range lookup.Matthew Wilkes2016-08-191-1/+7
* Fixed #25579 -- Fixed ArrayField.get_db_prep_value() to allow complex types.Matt C2016-03-151-1/+1
* Fixed #25143 -- Added ArrayField.from_db_value().Fernando Miranda2016-03-121-0/+12
* Fixed #26215 -- Fixed RangeField/ArrayField serialization with None valuesClaude Paroz2016-02-161-2/+5
* Removed unneeded hint=None/obj=None in system check messages.Tim Graham2016-02-121-2/+0
* Fixed #25841 -- Handled base array fields validation errors with params.Simon Charette2015-12-171-11/+14
* Fixed #25544 -- Removed duplicate ids in prefetch_related() queries.Ian Foote2015-12-171-1/+10
* Fixed #25867 -- Fixed a system check crash with nested ArrayFields.Simon Charette2015-12-071-3/+11
* Fixed #25772 -- Corrected __len lookup on ArrayField for empty arrays.Attila Tovt2015-11-251-1/+5
* Fixed #25666 -- Fixed the exact lookup of ArrayField.Dmitry Dygalo2015-11-141-3/+12
* Fixed #25226 -- Set the model attribute on ArrayField's base_fieldIon Scerbatiuc2015-08-051-0/+4
* Fixed #24716 -- Deprecated Field._get_val_from_obj()Thomas Stephenson2015-07-141-1/+1
* Instead of using DjangoJSONEncoder, use base_field's value_to_string.Matthew Somerville2015-06-061-5/+2
* Renamed Field.rel attribute to remote_fieldAnssi Kääriäinen2015-03-251-1/+1
* Fixed #24373 -- Added run_validators to ArrayField.Marc Tamlyn2015-02-201-0/+12
* Sorted imports with isort; refs #23860.Tim Graham2015-02-061-2/+1
* Fixes #24169 -- More arrayfield specific lookups.Marc Tamlyn2015-01-201-2/+14
* Fixed #24092 -- Widened base field support for ArrayField.Marc Tamlyn2015-01-161-2/+2