Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Refs #33476 -- Reformatted code with Black. | django-bot | 2022-02-07 | 1 | -18/+19 |
| | |||||
* | Refs #12990 -- Moved CheckFieldDefaultMixin to the ↵ | sage | 2019-10-17 | 1 | -2/+1 |
| | | | | django.db.models.fields.mixins. | ||||
* | Fixed #30769 -- Fixed a crash when filtering against a subquery ↵ | Simon Charette | 2019-09-16 | 1 | -1/+1 |
| | | | | | | | | | 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. | ||||
* | Fixed #30672 -- Fixed crash of JSONField/HStoreField key transforms on ↵ | Mariusz Felisiak | 2019-08-14 | 1 | -1/+1 |
| | | | | | | | expressions with params. Regression in 4f5b58f5cd3c57fee9972ab074f8dc6895d8f387. Thanks Florian Apolloner for the report and helping with tests. | ||||
* | Fixed CVE-2019-14234 -- Protected JSONField/HStoreField key and index ↵ | Mariusz Felisiak | 2019-08-01 | 1 | -1/+1 |
| | | | | | | | lookups against SQL injection. Thanks to Sage M. Abdullah for the report and initial patch. Thanks Florian Apolloner for reviews. | ||||
* | Fixed #30400 -- Improved typography of user facing strings. | Jon Dufresne | 2019-06-28 | 1 | -1/+1 |
| | | | | Thanks Claude Paroz for assistance with translations. | ||||
* | Refs #28577 -- Added check for HStoreField to prevent mutable default. | Tim Graham | 2018-04-03 | 1 | -1/+4 |
| | |||||
* | Fixed #28909 -- Simplified code using tuple/list/set/dict unpacking. | Nick Pope | 2017-12-11 | 1 | -4/+3 |
| | |||||
* | Refs #27795 -- Replaced many force_text() with str() | Claude Paroz | 2017-04-27 | 1 | -4/+3 |
| | | | | Thanks Tim Graham for the review. | ||||
* | Converted usage of ugettext* functions to their gettext* aliases | Claude Paroz | 2017-02-07 | 1 | -1/+1 |
| | | | | Thanks Tim Graham for the review. | ||||
* | Refs #23919 -- Replaced super(ClassName, self) with super(). | chillaranand | 2017-01-25 | 1 | -5/+5 |
| | |||||
* | Refs #23919 -- Stopped inheriting from object to define new style classes. | Simon Charette | 2017-01-19 | 1 | -1/+1 |
| | |||||
* | Refs #23919 -- Removed six.<various>_types usage | Claude Paroz | 2017-01-18 | 1 | -3/+2 |
| | | | | Thanks Tim Graham and Simon Charette for the reviews. | ||||
* | Fixed #27582 -- Allowed HStoreField to store null values. | David Hoffman | 2016-12-15 | 1 | -3/+3 |
| | |||||
* | Fixed E305 flake8 warnings. | Ramin Farajpour Cami | 2016-11-14 | 1 | -0/+1 |
| | |||||
* | Fixed #26120 -- Made HStoreField cast keys and values to strings. | Greg Chapple | 2016-01-29 | 1 | -0/+17 |
| | | | | | HStoreField now converts all keys and values to string before they're saved to the database. | ||||
* | Fixed #24629 -- Unified Transform and Expression APIs | Josh Smeaton | 2015-09-21 | 1 | -2/+2 |
| | |||||
* | Fixed #24716 -- Deprecated Field._get_val_from_obj() | Thomas Stephenson | 2015-07-14 | 1 | -2/+1 |
| | | | | | | The method duplicates the functionality of Field.value_from_object() and has the additional downside of being a privately named public API method. | ||||
* | Add HasAnyKeys lookup for HStoreField. | Marc Tamlyn | 2015-05-30 | 1 | -12/+3 |
| | |||||
* | Fixed #24751 -- Fixed HStoreField isnull lookup. | Tim Graham | 2015-05-13 | 1 | -1/+1 |
| | |||||
* | Sorted imports with isort; refs #23860. | Tim Graham | 2015-02-06 | 1 | -2/+1 |
| | |||||
* | Move % addition to lookups, refactor postgres lookups. | Marc Tamlyn | 2015-01-10 | 1 | -52/+12 |
| | | | | | | These refactorings making overriding some text based lookup names on other fields (specifically `contains`) much cleaner. It also removes a bunch of duplication in the contrib.postgres lookups. | ||||
* | Renamed qn to compiler | Josh Smeaton | 2014-11-16 | 1 | -18/+18 |
| | |||||
* | Added HStoreField. | Marc Tamlyn | 2014-11-04 | 1 | -0/+145 |
Thanks to `django-hstore` for inspiration in some areas, and many people for reviews. |