summaryrefslogtreecommitdiff
path: root/django/contrib/postgres
Commit message (Collapse)AuthorAgeFilesLines
* Fixed #15667 -- Added template-based widget rendering.Preston Timmons2016-12-231-2/+2
| | | | Thanks Carl Meyer and Tim Graham for contributing to the patch.
* Fixed #27582 -- Allowed HStoreField to store null values.David Hoffman2016-12-152-4/+6
|
* Refs #26327 -- Renamed JsonAgg to JSONBAgg.Mads Jensen2016-11-281-2/+2
| | | | Thanks to Christian von Roques for the report.
* Refs #27003 -- Fixed JSONField crash on converted values.Brandon Chinn2016-11-151-1/+11
|
* Refs #27003 -- Fixed SimpleArrayField crash on converted values.Brandon Chinn2016-11-151-1/+3
|
* Fixed E305 flake8 warnings.Ramin Farajpour Cami2016-11-141-0/+1
|
* Fixed #26327 -- Added JsonAgg to contrib.postgres.Mads Jensen2016-10-071-1/+12
| | | | Thanks Tim Graham for review.
* Updated translations from TransifexClaude Paroz2016-09-3020-63/+84
| | | | Forward port of bfc9c727256ded75dd9438167d6549b195361a0d from stable/1.10.x.
* Fixed #27257 -- Fixed builtin text lookups on JSONField keys.Simon Charette2016-09-221-3/+64
| | | | Thanks Nick Stefan for the report and Tim for the review.
* Fixed #27186 -- Fixed model form default fallback for MultiWidget, ↵Tim Graham2016-09-221-0/+6
| | | | | | FileInput, SplitDateTimeWidget, SelectDateWidget, and SplitArrayWidget. Thanks Matt Westcott for the review.
* Alphabetized classes in contrib.postgres.operations.Tim Graham2016-09-211-8/+8
|
* Fixed #26610 -- Added CITextField to contrib.postgres.Mads Jensen2016-09-213-0/+15
|
* Refs #27025 -- Fixed ArrayField querying on Python 3.6.Tim Graham2016-09-201-7/+8
| | | | | Python 3.6 parses strings like '0_1' as numeric literals. http://bugs.python.org/issue26331
* Fixed #27143 -- Allowed combining SearchQuery with more than one & or | ↵Nicola Jordan2016-09-071-19/+39
| | | | operators.
* Fixed #26908 -- Fixed crash with jsonfield__key__isnull lookup.Tim Graham2016-09-071-1/+1
|
* Fixed #27067 -- Deprecated string_concat() in favor of format_lazy().Mattias Loverot2016-08-251-3/+4
|
* Fixed #25995 -- Added an encoder option to JSONFieldClaude Paroz2016-08-251-2/+28
| | | | Thanks Berker Peksag and Tim Graham for the reviews.
* Fixed #22288 -- Fixed F() expressions with the __range lookup.Matthew Wilkes2016-08-191-1/+7
|
* Fixed #27030 -- Added contrib.postgres.indexes.GinIndex.Akshesh2016-08-121-0/+12
|
* Refs #27030 -- Added BtreeGinExtension operation.Akshesh2016-08-121-0/+6
|
* Pulled contrib translations from TransifexClaude Paroz2016-08-0190-217/+701
| | | | Forward port f19cadd39170637a96cc0abea9e7f3b2ee9ce924 from stable/1.10.x
* Fixed #26949 -- Fixed crash of disabled forms.JSONField.Olexander Yermakov2016-07-271-0/+2
|
* Fixed #25454 -- Ensured register_hstore_handler is called for all connectionsClaude Paroz2016-07-211-0/+5
| | | | Thanks Simon Charette for help with the patch.
* Updated contrib.postgres translation catalogClaude Paroz2016-07-151-2/+6
| | | | Forward port of cb78011402ac6ee37f3d4e8a3a6fb4bced646ac1 from stable/1.10.x.
* Added Upper/Lower Sorbian translationsClaude Paroz2016-06-294-0/+260
|
* Fixed #26748 -- Allowed overriding JSONField's widget with an attribute.Charlie Denton2016-06-131-4/+1
|
* Fixed #26672 -- Fixed HStoreField to raise ValidationError instead of ↵Brad Melin2016-06-021-1/+11
| | | | crashing on non-dict JSON input.
* Fixed #26617 -- Added distinct argument to contrib.postgres's StringAgg.Rustam Kashapov2016-06-021-3/+4
|
* Fixed #25774 -- Refactor datetime expressions into public APIJosh Smeaton2016-05-181-2/+1
|
* Fixed #24938 -- Added PostgreSQL trigram support.Matthew Somerville2016-05-134-1/+30
|
* Fixed #22936 -- Obsoleted Field.get_prep_lookup()/get_db_prep_lookup()Claude Paroz2016-05-043-9/+7
| | | | Thanks Tim Graham for completing the initial patch.
* Pulled translations from TransifexClaude Paroz2016-04-3018-35/+255
|
* Fixed #26542 -- Fixed quoting in CreateExtension operation.Conrad Kramer2016-04-271-2/+2
|
* Refs #3254 -- Added full text search to contrib.postgres.Marc Tamlyn2016-04-223-1/+202
| | | | | | | | | | 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.
* Fixed E128 flake8 warnings in django/.Tim Graham2016-04-081-2/+4
|
* Fixed W503 flake8 warnings.Tim Graham2016-04-041-4/+4
|
* Fixed #26101 -- Allowed introspection of base_field.model in RangeFieldanna2016-04-031-5/+23
| | | | | | Used the same test and fix as in #25867. This required initializing base_field in RangeField.__init__, not when setting the attribute.
* Fixed #25532 -- Properly redisplayed JSONField form input valuesClaude Paroz2016-04-011-0/+15
| | | | | Thanks David Szotten for the report and Tommy Beadle for code inspiration. Thanks Tim Graham for the review.
* Fixed #25579 -- Fixed ArrayField.get_db_prep_value() to allow complex types.Matt C2016-03-151-1/+1
|
* Fixed #26283 -- Fixed removal of trailing nulls for SplitArrayField.quaspas2016-03-121-1/+1
|
* Fixed #25143 -- Added ArrayField.from_db_value().Fernando Miranda2016-03-121-0/+12
| | | | Thanks Karan Lyons for contributing to the patch.
* Fixed #26215 -- Fixed RangeField/ArrayField serialization with None valuesClaude Paroz2016-02-162-4/+11
| | | | | | Also added tests for HStoreField and JSONField. Thanks Aleksey Bukin for the report and Tim Graham for the initial patch and the review.
* Removed unneeded hint=None/obj=None in system check messages.Tim Graham2016-02-121-2/+0
|
* Fixed #26120 -- Made HStoreField cast keys and values to strings.Greg Chapple2016-01-291-0/+17
| | | | | HStoreField now converts all keys and values to string before they're saved to the database.
* Fixed #26125 -- Fixed E731 flake warnings.userimack2016-01-251-2/+4
|
* Replaced dict.setdefault() usage to avoid unnecessary object instantiations.Benjamin Bach2016-01-051-2/+4
|
* Updated translations from TransifexClaude Paroz2015-12-318-23/+144
| | | | Forward port of 59f3590ca7 from stable/1.9.x.
* Fixed #25841 -- Handled base array fields validation errors with params.Simon Charette2015-12-173-43/+81
| | | | Thanks to Trac alias benzid-wael for the report.
* 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
| | | | Thanks to Jean Gourds for the report, Tim and Claude for the review.