summaryrefslogtreecommitdiff
path: root/django/contrib/postgres/fields
AgeCommit message (Expand)Author
2019-01-17Refs #28370 -- Removed support for the context arg of Field.from_db_value() a...Tim Graham
2018-10-02Fixed #29598 -- Deprecated FloatRangeField in favor of DecimalRangeField.Stefano Chiodino
2018-09-28Refs #28909 -- Simplifed code using unpacking generalizations.Sergey Fedoseev
2018-07-27Fixed #28291, #24726 -- Fixed ArrayField with JSONField and RangeFields.vinay karanam
2018-05-13Refs #29131 -- Fixed space handling in ArrayField's item_invalid message.Hasan Ramezani
2018-04-22Refs #29131 -- Made ArrayField error messages index from 1 instead of 0.Hasan Ramezani
2018-04-04Fixed #25718 -- Made a JSONField lookup value of None match keys that have a ...Dmitry Dygalo
2018-04-03Refs #28577 -- Added check for HStoreField to prevent mutable default.Tim Graham
2017-12-11Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking.Nick Pope
2017-11-29Fixed #28702 -- Made query lookups for CIText fields use citext.Mads Jensen
2017-11-01Fixed #28749 -- Added subquery support for ArrayField's __in lookup.Michał Pasternak
2017-10-20Fixed #28577 -- Added checks for ArrayField and JSONField to prevent mutable ...Flávio Juvenal
2017-09-13Merged isinstance() calls.Mariusz Felisiak
2017-07-20Fixed #28370 -- Deprecated the context arg of Field.from_db_value() and Expre...Tim Graham
2017-07-14Fixed #28394 -- Allowed setting BaseExpression.output_field (renamed from _ou...Sergey Fedoseev
2017-04-27Refs #27795 -- Replaced many force_text() with str()Claude Paroz
2017-02-11Refs #26610 -- Added CIText mixin and CIChar/Email/TextField.Mads Jensen
2017-02-07Fixed #26903 -- Fixed __contains lookup for Date/DateTimeRangeField.Mariusz Felisiak
2017-02-07Converted usage of ugettext* functions to their gettext* aliasesClaude Paroz
2017-01-25Refs #23919 -- Replaced super(ClassName, self) with super().chillaranand
2017-01-19Refs #23919 -- Stopped inheriting from object to define new style classes.Simon Charette
2017-01-18Refs #23919 -- Removed six.<various>_types usageClaude Paroz
2017-01-16Removed unneeded variable in contrib/postgres/fields/jsonb.py.Dmitry Dygalo
2017-01-14Refs #25226 -- Cloned ArrayField.base_field on deconstruction.Simon Charette
2017-01-06Fixed #27693, Refs #27257 -- Fixed iexact lookup on JSONField keys.Simon Charette
2016-12-15Fixed #27582 -- Allowed HStoreField to store null values.David Hoffman
2016-11-14Fixed E305 flake8 warnings.Ramin Farajpour Cami
2016-09-22Fixed #27257 -- Fixed builtin text lookups on JSONField keys.Simon Charette
2016-09-21Fixed #26610 -- Added CITextField to contrib.postgres.Mads Jensen
2016-09-20Refs #27025 -- Fixed ArrayField querying on Python 3.6.Tim Graham
2016-09-07Fixed #26908 -- Fixed crash with jsonfield__key__isnull lookup.Tim Graham
2016-08-25Fixed #25995 -- Added an encoder option to JSONFieldClaude Paroz
2016-08-19Fixed #22288 -- Fixed F() expressions with the __range lookup.Matthew Wilkes
2016-05-04Fixed #22936 -- Obsoleted Field.get_prep_lookup()/get_db_prep_lookup()Claude Paroz
2016-04-03Fixed #26101 -- Allowed introspection of base_field.model in RangeFieldanna
2016-03-15Fixed #25579 -- Fixed ArrayField.get_db_prep_value() to allow complex types.Matt C
2016-03-12Fixed #25143 -- Added ArrayField.from_db_value().Fernando Miranda
2016-02-16Fixed #26215 -- Fixed RangeField/ArrayField serialization with None valuesClaude Paroz
2016-02-12Removed unneeded hint=None/obj=None in system check messages.Tim Graham
2016-01-29Fixed #26120 -- Made HStoreField cast keys and values to strings.Greg Chapple
2015-12-17Fixed #25841 -- Handled base array fields validation errors with params.Simon Charette
2015-12-17Fixed #25544 -- Removed duplicate ids in prefetch_related() queries.Ian Foote
2015-12-07Fixed #25867 -- Fixed a system check crash with nested ArrayFields.Simon Charette
2015-11-25Fixed #25772 -- Corrected __len lookup on ArrayField for empty arrays.Attila Tovt
2015-11-14Fixed #25666 -- Fixed the exact lookup of ArrayField.Dmitry Dygalo
2015-09-21Fixed #24629 -- Unified Transform and Expression APIsJosh Smeaton
2015-08-05Fixed #25226 -- Set the model attribute on ArrayField's base_fieldIon Scerbatiuc
2015-07-14Fixed #24716 -- Deprecated Field._get_val_from_obj()Thomas Stephenson
2015-06-06Instead of using DjangoJSONEncoder, use base_field's value_to_string.Matthew Somerville
2015-06-05Fixed #24937 -- fix serialization of Date(Time)RangeField.Matthew Somerville