| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2016-06-02 | [1.10.x] Fixed #26672 -- Fixed HStoreField to raise ValidationError instead ↵ | Brad Melin | |
| of crashing on non-dict JSON input. Backport of f6517a5335ccc4858ee540548a1bd162bec36c46 from master | |||
| 2016-05-18 | Fixed #25774 -- Refactor datetime expressions into public API | Josh Smeaton | |
| 2016-05-13 | Fixed #24938 -- Added PostgreSQL trigram support. | Matthew Somerville | |
| 2016-05-04 | Fixed #22936 -- Obsoleted Field.get_prep_lookup()/get_db_prep_lookup() | Claude Paroz | |
| Thanks Tim Graham for completing the initial patch. | |||
| 2016-04-30 | Pulled translations from Transifex | Claude Paroz | |
| 2016-04-27 | Fixed #26542 -- Fixed quoting in CreateExtension operation. | Conrad Kramer | |
| 2016-04-22 | Refs #3254 -- Added full text search to contrib.postgres. | Marc Tamlyn | |
| Adds a reasonably feature complete implementation of full text search using the built in PostgreSQL engine. It uses public APIs from Expression and Lookup. With thanks to Tim Graham, Simon Charettes, Josh Smeaton, Mikey Ariel and many others for their advice and review. Particular thanks also go to the supporters of the contrib.postgres kickstarter. | |||
| 2016-04-08 | Fixed E128 flake8 warnings in django/. | Tim Graham | |
| 2016-04-04 | Fixed W503 flake8 warnings. | Tim Graham | |
| 2016-04-03 | Fixed #26101 -- Allowed introspection of base_field.model in RangeField | anna | |
| Used the same test and fix as in #25867. This required initializing base_field in RangeField.__init__, not when setting the attribute. | |||
| 2016-04-01 | Fixed #25532 -- Properly redisplayed JSONField form input values | Claude Paroz | |
| Thanks David Szotten for the report and Tommy Beadle for code inspiration. Thanks Tim Graham for the review. | |||
| 2016-03-15 | Fixed #25579 -- Fixed ArrayField.get_db_prep_value() to allow complex types. | Matt C | |
| 2016-03-12 | Fixed #26283 -- Fixed removal of trailing nulls for SplitArrayField. | quaspas | |
| 2016-03-12 | Fixed #25143 -- Added ArrayField.from_db_value(). | Fernando Miranda | |
| Thanks Karan Lyons for contributing to the patch. | |||
| 2016-02-16 | Fixed #26215 -- Fixed RangeField/ArrayField serialization with None values | Claude Paroz | |
| Also added tests for HStoreField and JSONField. Thanks Aleksey Bukin for the report and Tim Graham for the initial patch and the review. | |||
| 2016-02-12 | Removed unneeded hint=None/obj=None in system check messages. | Tim Graham | |
| 2016-01-29 | Fixed #26120 -- Made HStoreField cast keys and values to strings. | Greg Chapple | |
| HStoreField now converts all keys and values to string before they're saved to the database. | |||
| 2016-01-25 | Fixed #26125 -- Fixed E731 flake warnings. | userimack | |
| 2016-01-05 | Replaced dict.setdefault() usage to avoid unnecessary object instantiations. | Benjamin Bach | |
| 2015-12-31 | Updated translations from Transifex | Claude Paroz | |
| Forward port of 59f3590ca7 from stable/1.9.x. | |||
| 2015-12-17 | Fixed #25841 -- Handled base array fields validation errors with params. | Simon Charette | |
| Thanks to Trac alias benzid-wael for the report. | |||
| 2015-12-17 | Fixed #25544 -- Removed duplicate ids in prefetch_related() queries. | Ian Foote | |
| 2015-12-07 | Fixed #25867 -- Fixed a system check crash with nested ArrayFields. | Simon Charette | |
| Thanks to Jean Gourds for the report, Tim and Claude for the review. | |||
| 2015-12-01 | Pulled contrib translations from Transifex | Claude Paroz | |
| Forward port of 6a4649c27e6 from stable/1.9.x | |||
| 2015-11-25 | Fixed #25772 -- Corrected __len lookup on ArrayField for empty arrays. | Attila Tovt | |
| 2015-11-14 | Fixed #25666 -- Fixed the exact lookup of ArrayField. | Dmitry Dygalo | |
| 2015-10-27 | Fixed #25597 -- Fixed crash with SplitArrayField and IntegerField on invalid ↵ | Tim Graham | |
| value. | |||
| 2015-10-09 | Updated translation catalogs | Claude Paroz | |
| Forward port of f717cb2ab4 from stable/1.9.x. | |||
| 2015-09-21 | Fixed #24629 -- Unified Transform and Expression APIs | Josh Smeaton | |
| 2015-08-07 | Fixed #25233 -- Fixed HStoreField.has_changed() handling of initial values. | Tim Graham | |
| Thanks Simon Charette for review. | |||
| 2015-08-05 | Fixed #25226 -- Set the model attribute on ArrayField's base_field | Ion Scerbatiuc | |
| 2015-08-04 | Fixed #25215 -- Solved reference to forms.HStoreField in declaration of ↵ | Curtis Maloney | |
| HStoreField Correct test which was using the model field in a test form. | |||
| 2015-07-14 | Fixed #24716 -- Deprecated Field._get_val_from_obj() | Thomas Stephenson | |
| The method duplicates the functionality of Field.value_from_object() and has the additional downside of being a privately named public API method. | |||
| 2015-06-15 | Fixed #24894 -- Added contrib.postgres.functions.TransactionNow | Adam Chainz | |
| 2015-06-06 | Instead of using DjangoJSONEncoder, use base_field's value_to_string. | Matthew Somerville | |
| Note this means the serialization of e.g. IntegerRangeField now has strings for lower and upper, so use to_python when they came back in (same behaviour as ArrayField, hopefully, from where I also got the set_attributes_from_name function). | |||
| 2015-06-05 | Fixed #24937 -- fix serialization of Date(Time)RangeField. | Matthew Somerville | |
| Use the DjangoJSONEncoder so that datetime and date are encoded appropriately. | |||
| 2015-06-04 | Fixed #24837 -- field__contained_by=Range | Marc Tamlyn | |
| Provide `contained_by` lookups for the equivalent single valued fields related to the range field types. This acts as the opposite direction to rangefield__contains. With thanks to schinckel for the idea and initial tests. | |||
| 2015-05-30 | Fixed #24604 -- Added JSONField to contrib.postgres. | Marc Tamlyn | |
| 2015-05-30 | Add HasAnyKeys lookup for HStoreField. | Marc Tamlyn | |
| 2015-05-25 | Fixed #24841 -- Made BaseRangeField.prepare_value() call base_field's ↵ | Villiers Strauss | |
| prepare_value() | |||
| 2015-05-24 | Fixed #24844 -- Corrected has_changed implementation for HStoreField. | Andrea Grandi | |
| 2015-05-13 | Removed unnecessary arguments in .get method calls | Piotr Jakimiak | |
| 2015-05-13 | Fixed #24751 -- Fixed HStoreField isnull lookup. | Tim Graham | |
| 2015-04-30 | Updated translations from Transifex | Claude Paroz | |
| Updates for languages: Indonesian, Belarusian, Persian, and Dutch. Forward port of cb370f8510 from stable/1.8.x | |||
| 2015-04-18 | Stopped special-casing postgres-specific tests | Claude Paroz | |
| Refs #23879. | |||
| 2015-04-01 | Fetched updated contrib translations from Transifex | Claude Paroz | |
| Forward port of 5483c66f85 from stable/1.8.x | |||
| 2015-03-30 | Fixed #24301 -- Added PostgreSQL-specific aggregate functions | Andriy Sokolovskiy | |
| 2015-03-25 | Renamed Field.rel attribute to remote_field | Anssi Kääriäinen | |
| Field.rel is now deprecated. Rel objects have now also remote_field attribute. This means that self == self.remote_field.remote_field. In addition, made the Rel objects a bit more like Field objects. Still, marked ManyToManyFields as null=True. | |||
| 2015-03-18 | Updated translation catalogs | Claude Paroz | |
| Strings are frozen in anticipation of the Django 1.8 release. Forward port of 1cd2584c980 from stable/1.8.x | |||
| 2015-02-20 | Fixed #24341 -- Added specific error messages to RangeField subclasses | foresmac | |
