summaryrefslogtreecommitdiff
path: root/tests/model_fields
Commit message (Expand)AuthorAgeFilesLines
* Fixed #34539 -- Restored get_prep_value() call when adapting JSONFields.Julie Rymer2023-05-161-0/+23
* Fixed #34517 -- Avoided connection post_init signal to ImageField without wid...Orhan Hirsch2023-05-031-0/+8
* Fixed #34388 -- Allowed using choice enumeration types directly on model and ...T. Franzel2023-03-214-4/+16
* Fixed #27397 -- Prevented integer overflows on integer field lookups.Simon Charette2023-03-091-0/+39
* Refs #33476 -- Applied Black's 2023 stable style.David Smith2023-02-011-0/+1
* Refs #34100 -- Made file upload tests use Storage.exists() where appropriate.Francesco Panico2022-12-301-3/+6
* Fixed #33308 -- Added support for psycopg version 3.Daniele Varrazzo2022-12-151-1/+1
* Refs #33308 -- Deprecated support for passing encoded JSON string literals to...Simon Charette2022-12-011-2/+29
* Refs #33990 -- Renamed TransactionTestCase.assertQuerysetEqual() to assertQue...Gregor Gärtner2022-10-081-2/+2
* Fixed #33966 -- Added support for using KeyTextTransform from lookup.Allen Jonathan David2022-09-161-5/+19
* Fixed #33954 -- Prevented models.DecimalField from accepting NaN, Inf, and -I...Mohamed Karam2022-08-271-4/+13
* Removed unused path variable in model_fields tests.Claude Paroz2022-08-231-2/+0
* Refs #26511 -- Fixed json.KeyTextTransform() on MySQL/MariaDB.Mariusz Felisiak2022-08-181-1/+13
* Removed obsolete assertions in BooleanFieldTests.test_return_type().Mariusz Felisiak2022-06-032-6/+0
* Refs #31223 -- Added __class_getitem__() to ForeignKey.Collin Anderson2022-04-221-0/+3
* Relaxed some query ordering assertions in various tests.Mariusz Felisiak2022-04-143-23/+23
* Fixed #33626 -- Cleared cache when unregistering a lookup.Himanshu-Balasamanta2022-04-121-1/+0
* Fixed #33552 -- Fixed JSONField has key lookups with numeric keys on MariaDB,...Sage Abdullah2022-03-151-0/+27
* Removed redundant QuerySet.all() calls in docs and tests.Nick Pope2022-02-221-1/+1
* Refs #33476 -- Refactored code to strictly match 88 characters line length.Mariusz Felisiak2022-02-072-3/+10
* Refs #33476 -- Reformatted code with Black.django-bot2022-02-0722-843/+1078
* Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak2022-02-031-2/+1
* Fixed #33441 -- Restored immutability of models.Field.__hash__().Adam Johnson2022-01-141-3/+8
* Fixed #33033 -- Prevented models.DecimalField from accepting NaN values.Chinmoy Chakraborty2021-09-281-0/+8
* Refs #32508 -- Raised Type/ValueError instead of using "assert" in django.db....Daniyal2021-07-152-0/+37
* Fixed #32718 -- Relaxed file name validation in FileField.Mariusz Felisiak2021-05-131-0/+10
* Fixed #32620 -- Allowed subclasses of Big/SmallAutoField for DEFAULT_AUTO_FIELD.Adam Johnson2021-04-081-1/+13
* Fixed #32483 -- Fixed QuerySet.values()/values_list() on JSONField key transf...Mariusz Felisiak2021-03-231-0/+10
* Refs #32483 -- Added tests QuerySet.values()/values_list() on key transforms ...Mariusz Felisiak2021-03-231-3/+5
* Refs #31936 -- Added tests for __in lookup on JSONField key transforms with b...Mariusz Felisiak2021-03-231-0/+2
* Fixed #32411 -- Fixed __icontains lookup for JSONField on MySQL.Hasan Ramezani2021-02-051-0/+6
* Refs #31369 -- Removed models.NullBooleanField per deprecation timeline.Mariusz Felisiak2021-01-144-38/+17
* Fixed #32252 -- Fixed __isnull=True on key transforms on SQLite and Oracle.sage2020-12-111-0/+4
* Fixed #32178 -- Allowed database backends to skip tests and mark expected fai...Hasan Ramezani2020-12-105-19/+4
* Fixed #25534, Fixed #31639 -- Added support for transform references in expre...Ian Foote2020-11-272-4/+63
* Fixed #32203 -- Fixed QuerySet.values()/values_list() crash on key transforms...sage2020-11-251-0/+5
* Refs #32203 -- Added tests for QuerySet.values()/values_list() on key transfo...sage2020-11-251-0/+13
* Added test for filtering JSONField key transforms with quoted strings.Mariusz Felisiak2020-11-241-0/+7
* Fixed #32182 -- Fixed crash of JSONField nested key transforms with subquery ...Hannes Ljungberg2020-11-101-0/+12
* Fixed #31235 -- Made assertQuerysetEqual() compare querysets directly.Hasan Ramezani2020-11-061-4/+3
* Fixed #32132 -- Fixed column types in m2m intermediary tables for Positive(Bi...David-Wobrock2020-11-021-0/+10
* Refs #32132 -- Added rel_db_type() tests for auto and integer fields.David-Wobrock2020-11-022-0/+16
* Replaced @no_oracle skips with DatabaseFeatures.allows_group_by_lob.Tim Graham2020-10-221-1/+1
* Refs #32096 -- Fixed ExpressionWrapper crash with JSONField key transforms.Mariusz Felisiak2020-10-141-1/+15
* Refs #32096 -- Fixed __in lookup crash against key transforms for JSONField.Mariusz Felisiak2020-10-141-0/+10
* Used assertRaisesMessage() in CharField tests.David Smith2020-09-251-4/+8
* Fixed #31777 -- Added support for database collations to Char/TextFields.Tom Carrick2020-09-212-1/+21
* Refs #23130 -- Added test for BooleanField choices generation.Jacob Walls2020-09-101-0/+9
* Fixed #31750 -- Made models.Field equality compare models for inherited fields.Ryan Hiebert2020-09-091-0/+30
* Refs #31894 -- Added tests for JSONField key lookups with QuerySet.exclude().jpribyl2020-09-041-1/+47