| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2019-12-16 | Fixed #31088 -- Added support for websearch searching in SearchQuery. | James Turk | |
| 2019-12-10 | Fixed #31073 -- Prevented CheckboxInput.get_context() from mutating attrs. | Peter Andersen | |
| 2019-12-05 | Fixed #31039 -- Added support for contained_by lookup with AutoFields, ↵ | Hasan Ramezani | |
| SmallIntegerField, and DecimalField. | |||
| 2019-11-14 | Fixed #29916 -- Added lower_inc, lower_inf, upper_inc, and upper_inf lookups ↵ | Dulmandakh | |
| for RangeFields. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2019-11-11 | Fixed #30967 -- Fixed TrigramTest failures on PostgreSQL 12+. | Hannes Ljungberg | |
| 2019-11-08 | Fixed #24858 -- Added support for get_FOO_display() to ArrayField and ↵ | Hasan Ramezani | |
| RangeFields. _get_FIELD_display() crashed when Field.choices was unhashable. | |||
| 2019-11-07 | Fixed #30943 -- Added BloomIndex to django.contrib.postgres. | Nick Pope | |
| 2019-11-05 | Fixed #30095 -- Fixed system check for RangeField/ArrayField.choices with ↵ | Hasan Ramezani | |
| lists and tuples. | |||
| 2019-11-04 | Refs #30116 -- Simplified stdout/stderr decoding with subprocess.run()'s ↵ | Jon Dufresne | |
| encoding argument. The encoding argument has been available since Python 3.6. https://docs.python.org/3/library/subprocess.html#subprocess.run | |||
| 2019-11-01 | Refs #27808 -- Added test for saving nested ArrayField with nullable base field. | Hasan Ramezani | |
| 2019-10-28 | Fixed #30907 -- Fixed SplitArrayField.has_changed() with removal of empty ↵ | Pavel Dedik | |
| trailing values. | |||
| 2019-10-28 | Refs #30907 -- Added more tests for SplitArrayField.has_changed(). | Pavel Dedik | |
| 2019-10-17 | Refs #12990 -- Moved CheckFieldDefaultMixin to the ↵ | sage | |
| django.db.models.fields.mixins. | |||
| 2019-10-11 | Fixed #30826 -- Fixed crash of many JSONField lookups when one hand side is ↵ | Louise Grandjonc | |
| key transform. Regression in 6c3dfba89215fc56fc27ef61829a6fff88be4abb. | |||
| 2019-10-01 | Fixed #30651 -- Made __eq__() methods return NotImplemented for not ↵ | ElizabethU | |
| implemented comparisons. Changed __eq__ to return NotImplemented instead of False if compared to an object of the same type, as is recommended by the Python data model reference. Now these models can be compared to ANY (or other objects with __eq__ overwritten) without returning False automatically. | |||
| 2019-09-17 | Fixed #30758 -- Made RangeFields use multiple hidden inputs for initial data. | Nasir Hussain | |
| 2019-09-17 | Refs #30758 -- Added more tests for postgres.forms.ranges. | Nasir Hussain | |
| 2019-09-16 | Fixed #30769 -- Fixed a crash when filtering against a subquery ↵ | Simon Charette | |
| JSON/HStoreField annotation. This was a regression introduced by 7deeabc7c7526786df6894429ce89a9c4b614086 to address CVE-2019-14234. Thanks Tim Kleinschmidt for the report and Mariusz for the tests. | |||
| 2019-09-10 | Refs #29598 -- Removed FloatRangeField per deprecation timeline. | Mariusz Felisiak | |
| 2019-08-23 | Fixed #30715 -- Fixed crash of ArrayField lookups on ArrayAgg annotations ↵ | Mariusz Felisiak | |
| over AutoField. | |||
| 2019-08-21 | Fixed #21039 -- Added AddIndexConcurrently/RemoveIndexConcurrently ↵ | Mads Jensen | |
| operations for PostgreSQL. Thanks to Simon Charettes for review. Co-Authored-By: Daniel Tao <daniel.tao@gmail.com> | |||
| 2019-08-14 | Fixed #30672 -- Fixed crash of JSONField/HStoreField key transforms on ↵ | Mariusz Felisiak | |
| expressions with params. Regression in 4f5b58f5cd3c57fee9972ab074f8dc6895d8f387. Thanks Florian Apolloner for the report and helping with tests. | |||
| 2019-08-13 | Fixed #30704 -- Fixed crash of JSONField nested key and index transforms on ↵ | Mariusz Felisiak | |
| expressions with params. Thanks Florian Apolloner for the report and helping with tests. | |||
| 2019-08-05 | Added tests for using ArrayField's IndexTransform/SliceTransform on ↵ | Mariusz Felisiak | |
| expressions with params. | |||
| 2019-08-01 | Fixed CVE-2019-14234 -- Protected JSONField/HStoreField key and index ↵ | Mariusz Felisiak | |
| lookups against SQL injection. Thanks to Sage M. Abdullah for the report and initial patch. Thanks Florian Apolloner for reviews. | |||
| 2019-07-16 | Fixed #29824 -- Added support for database exclusion constraints on PostgreSQL. | Mads Jensen | |
| Thanks to Nick Pope and Mariusz Felisiak for review. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com> | |||
| 2019-07-16 | Simplified tests for PostgreSQL constraints. | Mariusz Felisiak | |
| 2019-07-10 | Fixed #30621 -- Fixed crash of __contains lookup for Date/DateTimeRangeField ↵ | Mariusz Felisiak | |
| when the right hand side is the same type. Thanks Tilman Koschnick for the report and initial patch. Thanks Carlton Gibson the review. Regression in 6b048b364ca1e0e56a0d3815bf2be33ac9998355. | |||
| 2019-07-03 | Fixed #30596 -- Fixed SplitArrayField.has_changed() for non-string base fields. | Chason Chaffin | |
| Thanks to Evgeniy Krysanov for the report and the idea to use to_python. Thanks to Mariusz Felisiak for the test case. | |||
| 2019-06-28 | Fixed #30400 -- Improved typography of user facing strings. | Jon Dufresne | |
| Thanks Claude Paroz for assistance with translations. | |||
| 2019-05-28 | Fixed #30315 -- Fixed crash of ArrayAgg and StringAgg with ordering when ↵ | Caio Ariede | |
| used in Subquery. | |||
| 2019-05-20 | Fixed #30488 -- Removed redundant Coalesce call in SQL generated by ↵ | Thomasina Lee | |
| SearchVector. Regression in 405c8363362063542e9e79beac53c8437d389520. | |||
| 2019-05-14 | Ensured that our django checkout is in the pythonpath during tests. | Florian Apolloner | |
| This fixes an issue with postgres_tests.test_integration.PostgresIntegrationTests which would not find Django in a CI run. | |||
| 2019-04-23 | Fixed #30385 -- Restored SearchVector(config) immutability. | Simon Charette | |
| Regression in 1a28dc3887e8d66d5e3ff08cf7fb0a6212b873e5. The usage of CONCAT to allow SearchVector to deal with non-text fields made the generated expression non-IMMUTABLE which prevents a functional index to be created for it. Using a combination of COALESCE and ::text makes sure the expression preserves its immutability. Refs #29582. Thanks Andrew Brown for the report, Nick Pope for the review. | |||
| 2019-04-18 | Refs #28762 -- Added test for aggregating over a function with ArrayField ↵ | Tomer Chachamu | |
| parameters. Fixed in d87bd29c4f8dfcdf3f4a4eb8340e6770a2416fe3. | |||
| 2019-04-18 | Refs #28767 -- Added test for annotating Value() with empty list as an ↵ | Mariusz Felisiak | |
| ArrayField. Fixed in 3af695eda24b874486ee8be7e0d729761b3bdc71. | |||
| 2019-04-18 | Fixed #30335, #29139 -- Fixed crash when ordering or aggregating over a ↵ | can | |
| nested JSONField key transform. | |||
| 2019-04-06 | Fixed #30332 -- Fixed crash of ordering by expressions with params in ↵ | Simone Pellizzari | |
| ArrayAgg and StringAgg. | |||
| 2019-04-06 | Refs #26067 -- Added more tests for ordering in StringAgg. | Simone Pellizzari | |
| 2019-03-21 | Used QuerySet.bulk_create() in a couple of postgres tests. | oliver | |
| Follow up to 0ce2ad9ca4623cfd6dc2515430c0ae8a1717a607. | |||
| 2019-03-18 | Fixed #30258 -- Adjusted postgres schema value quoting of ranges. | Simon Charette | |
| Thanks Tilman Koschnick for the report and patch. | |||
| 2019-03-01 | Refs #29408 -- Cosmetic edits for validation of related fields and lookups ↵ | Mariusz Felisiak | |
| in model Meta.ordering. Follow up to 440505cb2cadbe1a5b9fba246bcde6c04f51d07e. | |||
| 2019-03-01 | Fixed #29408 -- Added validation of related fields and lookups in model ↵ | Hasan Ramezani | |
| Meta.ordering. | |||
| 2019-02-09 | Fixed #29391 -- Made PostgresSimpleLookup respect Field.get_db_prep_value(). | Vinay Karanam | |
| 2019-02-05 | Replaced manual current directory management with subprocess's cwd argument. | Jon Dufresne | |
| 2019-02-04 | Fixed #30155 -- Dropped support for PostgreSQL 9.4 and PostGIS 2.1. | Tim Graham | |
| 2019-01-23 | Refs #30111 -- Fixed test cleanup in postgres_tests/test_integration.py. | Tim Graham | |
| Fixed "ERROR: Step ‘Publish JUnit test result report’ failed: No test report files were found. Configuration error?" on Jenkins because report files were put in tests/postgres_tests. | |||
| 2019-01-22 | Fixed #30111 -- Fixed AppRegistryNotReady error with django.contrib.postgres ↵ | Nasir Hussain | |
| in INSTALLED_APPS. Regression in e192223ed996ed30fe83787efdfa7f2be6b1a2ee. | |||
| 2019-01-13 | Removed unnecessary skipUnlessDBFeature. | Simon Charette | |
| None of the tests interact with the database. | |||
| 2019-01-11 | Fixed #29738 -- Allowed serializing psycopg2 range types in migrations. | can | |
