summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2019-12-02[3.0.x] Bumped version for 3.0 release.3.0Carlton Gibson
2019-12-02[3.0.x] Updated contrib translations from TransifexClaude Paroz
2019-12-02[3.0.x] Updated core translations from TransifexClaude Paroz
2019-12-02Fixed CVE-2019-19118 -- Required edit permissions on parent model for ↵Carlton Gibson
editable inlines in admin. Thank you to Shen Ying for reporting this issue.
2019-12-02[3.0.x] Fixed #30953 -- Made select_for_update() lock queryset's model when ↵Mariusz Felisiak
using "self" with multi-table inheritance. Thanks Abhijeet Viswa for the report and initial patch. Backport of 0107e3d1058f653f66032f7fd3a0bd61e96bf782 from master
2019-11-29[3.0.x] Fixed #31021 -- Fixed proxy model permissions data migration crash ↵Mariusz Felisiak
with a multiple databases setup. Regression in 98296f86b340c8c9c968375d59f1d3a3479e60c2. Backport of e8fcdaad5c428878d0a5d6ba820d957013f75595 from master
2019-11-26[3.0.x] Fixed #31031 -- Fixed data loss in admin changelist view when ↵Baptiste Mispelon
formset's prefix contains regex special chars. Regression in b18650a2634890aa758abae2f33875daa13a9ba3. Backport of 52936efacec4df05df2d9872c09c3332335bf21b from master
2019-11-25[3.0.x] Fixed #27914 -- Fixed serialization of nested classes in migrations.John Bowen
Backport of 29d8198841ea39af44f3bc835d646e642d498475 from master
2019-11-21[3.0.x] Fixed #31012 -- Reverted "Fixed #29056 -- Fixed HTML5 validation of ↵Carlton Gibson
required SelectDateWidget." This reverts commit f038214d917c982613f5a15db8dfe325b1f7479b. The initial issue was incorrect. Django 2.2, and before, did not generate invalid HTML as reported. With f03821 in place invalid HTML was generated. Thanks to Kevin Brown for follow-up report and investigation. Backport of ee4a19053a32d41cdd79e087b1968980804ce658 from master
2019-11-18[3.0.x] Fixed #30990 -- Fixed example output in 'z' date format docs.Baptiste Mispelon
Backport of 1185c6172b4dd5482b7bc76b12d7a0588320e027 from master
2019-11-18[3.0.x] Bumped version for 3.0 release candidate 1.3.0rc1Mariusz Felisiak
2019-11-18[3.0.x] Fixed #30986 -- Fixed queryset crash when filtering against boolean ↵Mariusz Felisiak
RawSQL expressions on Oracle. Backport of 8685e764efd2957085762d9249e07794d9a58dcb from master
2019-11-13[3.0.x] Fixed #30971 -- Prevented Query.resolve_lookup_value() from coercing ↵George Marshall
list values to tuples. Regression in 8a281aa7fe76a9da2284f943964a9413697cff1f. Backport of 8be79984dce7d819879a6e594ca69c5f95a08378 from master
2019-11-05[3.0.x] Fixed DatabaseFeatures.has_select_for_update_nowait on MariaDB 10.3+.Mariusz Felisiak
Thanks Kola Erinoso for the report. Backport of a20ea33ca66bafd38bfce1a73221384b8aa37170 from master
2019-11-04[3.0.x] Added Uzbek locale formats.bedilbek
Backport of 09a00c60bddc0d811bfcdd054c706ea41243aeb5 from master
2019-11-04[3.0.x] Added Uzbek language.Claude Paroz
Backport of 6ccb1b68bc22e4edc1562f0159e71631d6a256d9 from master
2019-11-04[3.0.x] Fixed #30931 -- Restored ability to override Model.get_FIELD_display().Carlton Gibson
Thanks Sergey Fedoseev for the implementation idea. Regression in a68ea231012434b522ce45c513d84add516afa60. Backport of 2d38eb0ab9f78d68c083a5b78b1eca39027b279a from master
2019-10-25[3.0.x] Fixed #30902 -- Added __str__() for model choice enums.Carlton Gibson
Allows expected behavior when cast to str, also matching behaviour of created instances with those fetched from the DB. Thanks to Simon Charette, Nick Pope, and Shai Berger for reviews. Backport of dbcd7b064e7278614f29fc45468d461e263d4da7 from master
2019-10-24[3.0.x] Fixed #30903 -- Fixed migrations crash on PostgreSQL when adding ↵Hannes Ljungberg
Index with opclasses and ordering. Backport of fa5f3291e7f2611d53e64ab481ebe951b0161791 from master
2019-10-14[3.0.x] Bumped version for 3.0 beta 1.3.0b1Mariusz Felisiak
2019-10-14[3.0.x] Fixed #30870 -- Fixed showing that RunPython operations are ↵Mariusz Felisiak
irreversible by migrate --plan. Thanks Hasan Ramezani for the initial patch and Kyle Dickerson for the report. Backport of 06d34aab7cfb1632a1538a243db81f24498525ff from master
2019-10-14[3.0.x] Fixed #30868 -- Prevented unnecessary AlterField when renaming a ↵Simon Charette
referenced pk. Regression introduced by dcdd219ee1, refs #25817. Thanks Carlos E. C. Leite for the report and Mariusz for the bisect. Backport of 2839659b42ef80038152768b6cedae1016c59d90 from master
2019-10-11[3.0.x] Fixed #30014 -- Fixed ModelChoiceField validation when initial value ↵Etienne Chové
is a model instance. Thanks Carlton Gibson for reviews. Backport of e7cdb0cd7eb5eb677af8dae7bfc6845186f861b0 from master
2019-10-11[3.0.x] Fixed #30826 -- Fixed crash of many JSONField lookups when one hand ↵Louise Grandjonc
side is key transform. Regression in 6c3dfba89215fc56fc27ef61829a6fff88be4abb. Backport of 7d1bf29977bb368d7c28e7c6eb146db3b3009ae7 from master
2019-10-11[3.0.x] Fixed #30854 -- Fixed QuerySet.select_related() with multiple ↵Hasan Ramezani
FilteredRelations. Backport of 6a75cea76a98c08bf2e20d787be9b14c2cd94860 from master.
2019-10-08[3.0.x] Fixed #30839 -- Fixed Field.__deepcopy__() so forms don't share ↵Hasan Ramezani
error messages. Backport of a28d1b38e55cf588cfaae97de6a575d5c9f90a96 from master
2019-10-03[3.0.x] Refs #27914 -- Fixed serialization of nested enum.Enum classes in ↵Hasan Ramezani
migrations. Backport of 6452112640081ac8838147a8ba192c45879203d8 from master
2019-10-01[3.0.x] Fixed typo in BulkInsertMapper constant name.Mariusz Felisiak
Backport of 67e7dffe9543aff259f63c8f12d15642fe7be100 from master
2019-10-01[3.0.x] Fixed #30510 -- Fixed crash of QuerySet.bulk_create() with ↵Ahmet Kucuk
mixed-length texts on Oracle. Text with more than 4000 characters must be set to as a CLOB on Oracle what caused a mixed datatype error (ORA-01790) when shorter text appeared in the same operation. Backport of dc890bef5ad8e9fccce55f3e64af72103ea6e8c1 from master
2019-09-30[3.0.x] Fixed #28690 -- Fixed handling of two-digit years in parse_http_date().Ad Timmering
Due to RFC7231 ayear that appears to be more than 50 years in the future are interpreted as representing the past. Backport of 7b5f8acb9e6395a1660dd7bfeb365866ca8ef47c from master
2019-09-30[3.0.x] Fixed #30774 -- Made serialization in migrations use members names ↵Hasan Ramezani
for Enums. Backport of f0adf3b9b7a19cdee05368ff0c0c2d087f011180 from master
2019-09-27[3.0.x] Fixed #30802 -- Prevented manifest creation when running ↵pablo
collectstatic in dry run mode. Backport of fa8fe09e4e2b538c5d50a559081861d5c0635d55 from master
2019-09-27[3.0.x] Fixed #30798 -- Fixed Meta.ordering validation for pk of related fields.Hasan Ramezani
Regression in 440505cb2cadbe1a5b9fba246bcde6c04f51d07e. Backport of 95a11578ce41de1e152fe7d173f109e280aebd6d from master
2019-09-27[3.0.x] Refs #30798 -- Prevented chaining fields from the same related model ↵Hasan Ramezani
multiple times in model Meta.ordering. Backport of c7944628a1979453468d67818c63957532d396d8 from master
2019-09-25[3.0.x] Fixed #30800 -- Fixed migrations crash when altering a field with ↵Mariusz Felisiak
custom db_type(). Regression in 1378d665a1c85897d951f2ca9618b848fdbba2e7. Backport of 580e644f24f1c5ae5b94784fb73a9953a178fd26 from master
2019-09-24[3.0.x] Fixed #30796 -- Prevented select_related() from mutating a queryset ↵Simon Charette
on chaining. Thanks Darren Maki for the report. Backport of 37f8f293775d0b672da8ae369d9a4e17f1db7851 from master
2019-09-23[3.0.x] Fixed #13296 -- Fixed ordering by Options.order_with_respect_to ↵Hasan Ramezani
after deleting objects. Thanks Simon Meers for the original patch. Backport of f97bbad908df128189eff77d98af9a25ed1ecf23 from master
2019-09-20[3.0.x] Fixed #30771 -- Fixed exact lookup against queries with selected ↵James Timmins
columns. Use pre-existing select fields (and thereby GROUP BY fields) from subquery if they were specified, instead of always defaulting to pk. Thanks Aur Saraf for the report and Simon Charette for guidance. Backport of 0719edcd5fed56157ffb3323a8f634aa5e8f9a80 from master
2019-09-20[3.0.x] Fixed #30786 -- Used CONVERT_TZ to check if the time zone ↵Andrew
definitions are installed on MySQL. Replaced a timezone check in the MySQL backend with one that doesn't require access to the mysql.time_zone database. Backport of 3346b78a8a872286a245d1e77ef4718fc5e6be1a from master
2019-09-18[3.0.x] Fixed #30776 -- Restored max length validation on ↵Sam Reynolds
AuthenticationForm.UsernameField. Regression in 5ceaf14686ce626404afb6a5fbd3d8286410bf13. Thanks gopackgo90 for the report and Mariusz Felisiak for tests. Backport of 6c9778a58e4f680db180d4cc9dc5639d2ec1b40c from master
2019-09-17[3.0.x] Fixed #30725 -- Fixed width of DateTimeField inputs in admin tabular ↵Min ho Kim
inline. "width" of DateTimeField inputs in admin tabular inline wasn't set correctly what caused displaying too small inputs with responsive CSS when timezone warning wasn't present. Backport of b1d6b35e146aea83b171c1b921178bbaae2795ed from master
2019-09-17[3.0.x] Fixed #30758 -- Made RangeFields use multiple hidden inputs for ↵Nasir Hussain
initial data. Backport of faf4b988fe75dd4045bc5c62496cc4f2e0db8c4d from master.
2019-09-16[3.0.x] 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. Backport of 6c3dfba89215fc56fc27ef61829a6fff88be4abb from master
2019-09-11[3.0.x] Fixed #30591 -- Fixed recreation of foreign key constraints on MySQL ↵Adnan Umer
when altering type of referenced unique field. Thanks Mariusz Felisiak for tests and Matthijs Kooijman for investigation and initial patch. Backport of 241deed2590bcb1d8c45271d44c86eaedfb57119 from master
2019-09-10[3.0.x] Bumped version for 3.0 alpha 1 release.3.0a1Carlton Gibson
2019-09-10Fixed #30754 -- Prevented inclusion of aliases in partial index conditions.Simon Charette
SQLite doesn't repoint table aliases in partial index conditions on table rename which breaks the documented table alteration procedure. Thanks Pēteris Caune for the report.
2019-09-09Fixed #28107 -- Added ↵Vojtech Bocek
DatabaseFeatures.allows_group_by_selected_pks_on_model() to allow enabling optimization for unmanaged models.
2019-09-09Fixed #29406 -- Added support for Referrer-Policy header.Nick Pope
Thanks to James Bennett for the initial implementation.
2019-09-09Refs #29444 -- Allowed returning multiple fields from INSERT statements on ↵Johannes Hoppe
PostgreSQL. Thanks Florian Apolloner, Tim Graham, Simon Charette, Nick Pope, and Mariusz Felisiak for reviews.
2019-09-09Refs #29444 -- Fixed DateField constructor in ↵Johannes Hoppe
db.backends.oracle.utils.InsertVar.