summaryrefslogtreecommitdiff
path: root/tests/model_fields
Commit message (Expand)AuthorAgeFilesLines
...
* Fixed #31956 -- Fixed crash of ordering by JSONField with a custom decoder on...Mariusz Felisiak2020-08-281-0/+12
* Refs #31956 -- Added test for ordering by JSONField with a custom decoder.Mariusz Felisiak2020-08-281-13/+21
* Fixed #31936 -- Fixed __in lookup on key transforms for JSONField.Mariusz Felisiak2020-08-261-0/+19
* Bumped minimum isort version to 5.1.0.David Smith2020-07-301-3/+2
* Refs #31829 -- Added DatabaseFeatures.json_key_contains_list_matching_require...Tim Graham2020-07-301-2/+3
* Fixed #31829 -- Used JSONField __contains lookup on key transforms.sage2020-07-281-3/+25
* Fixed #31836 -- Dropped support for JSONField __contains and __contained_by l...Mariusz Felisiak2020-07-281-33/+36
* Fixed #31835 -- Dropped support for JSONField __contains lookup on Oracle.Mariusz Felisiak2020-07-281-2/+17
* Fixed #31812 -- Fixed FileField.model for fields defined in abstract models.Matthias Kestenholz2020-07-241-1/+20
* Fixed #30583 -- Fixed handling JSONFields in XML serializer.Hasan Ramezani2020-06-171-0/+15
* Fixed #31663 -- Made DecimalField.to_python() handle non-numeric invalid values.Sasha Pachev2020-06-051-3/+18
* Refs #12990 -- Added DatabaseFeatures.has_json_operators.Tim Graham2020-05-181-3/+5
* Fixed #12990, Refs #27694 -- Added JSONField model field.sage2020-05-082-0/+698
* Simplified imports from django.db and django.contrib.gis.db.Nick Pope2020-02-044-31/+24
* Used temporary directory in FileFieldTests.test_pickle().Mariusz Felisiak2020-01-311-28/+41
* Fixed 31207 -- Prevented references to non-local remote fields in ForeignKey....Hasan Ramezani2020-01-311-0/+19
* Fixed #31124 -- Fixed setting of get_FOO_display() when overriding inherited ...Carlton Gibson2020-01-151-0/+13
* Added file cleanup in FileFieldTests.test_pickle().fix/remove-stray-fileCarlton Gibson2020-01-091-16/+24
* Fixed #21238 -- Fixed restoring attributes when pickling FileField and ImageF...Hasan Ramezani2020-01-092-0/+8
* Refs #21238 -- Added more tests for pickling FileField and ImageField.Hasan Ramezani2020-01-092-1/+28
* Removed unused lines in ImageFieldTests.test_pickle().Hasan Ramezani2020-01-091-3/+0
* Fixed random models_fields.test_uuid.TestQuerying failures.Mariusz Felisiak2019-12-271-1/+3
* Fixed #30987 -- Added models.PositiveBigIntegerField.Caio Ariede2019-11-193-5/+18
* Refs #29983 -- Added support for using pathlib.Path in all settings.Jon Dufresne2019-11-071-0/+9
* Harmonized Windows checks in tests to a single style.Jon Dufresne2019-11-061-1/+1
* Fixed #30931 -- Restored ability to override Model.get_FIELD_display().Carlton Gibson2019-11-041-0/+10
* Used more specific unittest assertions in tests.Nick Pope2019-10-291-1/+1
* Fixed #29919 -- Fixed RelatedOnlyFieldListFilter crash with reverse relations...Dan Moore2019-10-231-0/+11
* Added tests for Field.get_choices()'s limit_choices_to argument.Dan Moore2019-10-231-0/+23
* Replaced deprecated assertEquals() with assertEqual().Jon Dufresne2019-10-211-2/+2
* Fixed #29915 -- Added support for values with hyphens to pattern lookups for ...Ian Foote2019-09-231-1/+43
* Refs #29915 -- Added tests for using pattern lookups with values without hyph...Ian Foote2019-09-231-1/+71
* Fixed #27910 -- Added enumeration helpers for use in Field.choices.Shai Berger2019-09-042-0/+41
* Fixed #29979, Refs #17337 -- Extracted AutoField field logic into a mixin and...Nick Pope2019-08-202-23/+23
* Fixed #30449 -- Fixed RelatedFieldListFilter/RelatedOnlyFieldListFilter to re...zeyneloz2019-08-151-2/+18
* Fixed #28393 -- Added helpful error messages for invalid AutoField/FloatField...Diederik van der Boor2019-08-054-0/+78
* Fixed #30400 -- Improved typography of user facing strings.Jon Dufresne2019-06-283-4/+4
* Refs #27804 -- Used subTest() in BinaryFieldTests.test_set_and_retrieve.Jon Dufresne2019-06-071-10/+11
* Fixed #29529 -- Allowed models.fields.FilePathField to accept a callable path.Mykola Kokalko2019-05-021-0/+10
* Added tests for setting models.fields.FilePathField.path.Mykola Kokalko2019-05-021-0/+12
* Fixed #30328 -- Fixed crash of IntegerField.validators when limit_value in a ...Scott Fitsimones2019-04-191-21/+25
* Removed redundant model field choices tests.Matthias Kestenholz2019-03-232-0/+8
* Refs #12663 -- Fixed reference to nonexistent field in model_fields tests.Simon Charette2019-03-171-1/+1
* Fixed #30232 -- Corrected expected format in invalid DurationField error mess...avas93662019-03-041-1/+1
* Fixed #30076 -- Added Model.get_FOO_display() even if field's choices are empty.Joshua Cannon2019-01-302-1/+70
* Switched setUp() to setUpTestData() where possible in Django's tests.Simon Charette2018-11-271-2/+3
* Switched TestCase to SimpleTestCase where possible in Django's tests.Tim Graham2018-11-271-1/+1
* Fixed #29835 -- Made RelatedFieldListFilter respect ModelAdmin.ordering.Hasan Ramezani2018-11-141-1/+35
* Fixed #29869 -- Made UUIDField.to_python() convert integers.Sanyam Khurana2018-10-241-0/+16
* Fixed #27595 -- Made ForeignKey.get_col() follow target chains.Simon Charette2018-10-222-1/+30