Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refs #10929 -- Stopped forcing empty result value by PostgreSQL aggregates. | Mariusz Felisiak | 2023-01-17 | 1 | -62/+5 |
| | | | | Per deprecation timeline. | ||||
* | Refs #33308 -- Deprecated support for passing encoded JSON string literals ↵ | Simon Charette | 2022-12-01 | 1 | -6/+46 |
| | | | | | | | to JSONField & co. JSON should be provided as literal Python objects an not in their encoded string literal forms. | ||||
* | Refs #33476 -- Reformatted code with Black. | django-bot | 2022-02-07 | 1 | -22/+26 |
| | |||||
* | Fixed #32961 -- Added BitXor() aggregate to django.contrib.postgres. | Nick Pope | 2021-10-01 | 1 | -1/+6 |
| | |||||
* | Fixed #33114 -- Defined default output_field of StringAgg. | ali | 2021-09-27 | 1 | -1/+4 |
| | | | | Thanks Simon Charette for the review. | ||||
* | Refs #10929 -- Deprecated forced empty result value for PostgreSQL aggregates. | Nick Pope | 2021-07-19 | 1 | -17/+52 |
| | | | | | | | | This deprecates forcing a return value for ArrayAgg, JSONBAgg, and StringAgg when there are no rows in the query. Now that we have a ``default`` argument for aggregates, we want to revert to returning the default of ``None`` which most aggregate functions return and leave it up to the user to decide what they want to be returned by default. | ||||
* | Fixed #10929 -- Added default argument to aggregates. | Nick Pope | 2021-07-19 | 1 | -3/+3 |
| | | | | Thanks to Simon Charette and Adam Johnson for the reviews. | ||||
* | Fixed #32169 -- Added distinct support to JSONBAgg. | Artur Beltsov | 2020-11-04 | 1 | -1/+2 |
| | |||||
* | Fixed #31956 -- Fixed crash of ordering by JSONField with a custom decoder ↵ | Mariusz Felisiak | 2020-08-28 | 1 | -1/+1 |
| | | | | | | | on PostgreSQL. Thanks Marc Debureaux for the report. Thanks Simon Charette, Nick Pope, and Adam Johnson for reviews. | ||||
* | Refs #31720 -- Defined default output_field of BoolAnd() and BoolOr() ↵ | David Chorpash | 2020-07-21 | 1 | -1/+3 |
| | | | | aggregate functions. | ||||
* | Fixed #31691 -- Added ordering support to JSONBAgg. | John Parton | 2020-06-13 | 1 | -1/+2 |
| | |||||
* | Fixed #12990, Refs #27694 -- Added JSONField model field. | sage | 2020-05-08 | 1 | -2/+2 |
| | | | | | | | | | | | Thanks to Adam Johnson, Carlton Gibson, Mariusz Felisiak, and Raphael Michel for mentoring this Google Summer of Code 2019 project and everyone else who helped with the patch. Special thanks to Mads Jensen, Nick Pope, and Simon Charette for extensive reviews. Co-authored-by: Mariusz Felisiak <felisiak.mariusz@gmail.com> | ||||
* | Simplified imports from django.db and django.contrib.gis.db. | Nick Pope | 2020-02-04 | 1 | -2/+1 |
| | |||||
* | Fixed CVE-2020-7471 -- Properly escaped StringAgg(delimiter) parameter. | Simon Charette | 2020-02-03 | 1 | -2/+4 |
| | |||||
* | Fixed #28658 -- Added DISTINCT handling to the Aggregate class. | Simon Charette | 2019-01-09 | 1 | -6/+4 |
| | |||||
* | Fixed #26067 -- Added ordering support to ArrayAgg and StringAgg. | Floris den Hengst | 2018-06-28 | 1 | -4/+6 |
| | |||||
* | Fixed #28908 -- Allowed ArrayField lookups on ArrayAgg annotations. | Sergey Fedoseev | 2017-12-30 | 1 | -1/+5 |
| | |||||
* | Fixed #28370 -- Deprecated the context arg of Field.from_db_value() and ↵ | Tim Graham | 2017-07-20 | 1 | -3/+3 |
| | | | | | | Expression.convert_value(). Unused since a0d166306fbdc41f49e6fadf4ec84b17eb147daa. | ||||
* | Fixed #28394 -- Allowed setting BaseExpression.output_field (renamed from ↵ | Sergey Fedoseev | 2017-07-14 | 1 | -1/+1 |
| | | | | _output_field). | ||||
* | Fixed #27767 -- Added distinct argument to ArrayAgg. | orf | 2017-02-04 | 1 | -0/+4 |
| | |||||
* | Refs #23919 -- Replaced super(ClassName, self) with super(). | chillaranand | 2017-01-25 | 1 | -1/+1 |
| | |||||
* | Refs #26327 -- Renamed JsonAgg to JSONBAgg. | Mads Jensen | 2016-11-28 | 1 | -2/+2 |
| | | | | Thanks to Christian von Roques for the report. | ||||
* | Fixed #26327 -- Added JsonAgg to contrib.postgres. | Mads Jensen | 2016-10-07 | 1 | -1/+12 |
| | | | | Thanks Tim Graham for review. | ||||
* | Fixed #26617 -- Added distinct argument to contrib.postgres's StringAgg. | Rustam Kashapov | 2016-06-02 | 1 | -3/+4 |
| | |||||
* | Fixed #24301 -- Added PostgreSQL-specific aggregate functions | Andriy Sokolovskiy | 2015-03-30 | 1 | -0/+43 |