summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-10-07Fixed #31850 -- Fixed BasicExtractorTests.test_extraction_warning with ↵Max Smolens
xgettext 0.21+. "format string with unnamed arguments cannot be properly localized" warning is not raised in xgettext 0.21+. This patch uses a message that causes an xgettext warning regardless of the version.
2020-10-06Refs #20577 -- Deferred filtering of prefetched related querysets by reverse ↵Bob Renwick
m2o relation.
2020-10-06Fixed #32073 -- Skipped collation tests on PostgreSQL < 10.Mariusz Felisiak
PostgreSQL < 10 doesn't support ICU collations. Thanks Hannes Ljungberg for the report.
2020-10-06Removed unneeded calls to iri_to_uri() in cache key generation.Florian Apolloner
request.build_absolute_uri() already applies iri_to_uri()
2020-10-06Removed unneeded iri_to_uri() call in reverse().Florian Apolloner
_reverse_with_prefix() already quotes using a stricter subset of the safe characters used by iri_to_uri().
2020-10-06Fixed #32072 -- Fixed admin search bar height.Tom Carrick
Thanks şuayip üzülmez for the report. Regression in 8ee4bb6ffcb3346c0fa8fb194986fbf9edadc822.
2020-10-06Skipped GetImageDimensionsTests.test_webp when WEBP is not installed.Mariusz Felisiak
2020-10-06Refs #32047 -- Added test for using call_command() with constant required ↵Hasan Ramezani
options.
2020-10-05Refs #31926 -- Fixed reverse related identity crash on Q() limit_choices_to.Simon Charette
2020-10-05Refs #29838, Refs #28507 -- Made make_hashable() ignore key order.Simon Charette
2020-10-05Fixed #32068 -- Added error messages on get() with filters following ↵Hasan Ramezani
union(), intersection(), and difference().
2020-10-05Refs #32068 -- Added tests for get() following union(), intersection(), and ↵Hasan Ramezani
difference().
2020-10-05Fixed #31926 -- Fixed recreating queryset with FilteredRelation when using a ↵David-Wobrock
pickled Query. In a pickled join, the join_fields had the same values, but weren't the same object (contrary to when not pickling the QuerySet).
2020-10-02Refs #31777 -- Doc'd Char/TextField.db_collation parameter in MySQL notes.Mariusz Felisiak
2020-10-02Fixed #32060 -- Added Random database function.Nick Pope
2020-10-01Fixed #32041 -- Doc'd how to modify served files' content types on Windows.Peter Marheine
2020-10-01Fixed typo in tests/view_tests/tests/test_debug.py docstring.Thibaud Colas
2020-10-01Fixed #32051 -- Fixed rocket animation on the 'Congrats' page.Thibaud Colas
- Fixed congratulations smoke being cropped. - Refactored congratulation rocket so the animation can be stopped. - Made animation respect user preference for reduced animation. - Made rocket animation stop after 7s.
2020-10-01Refs #32051 -- Cleaned up CSS and SVG in the 'Congrats' page.Thibaud Colas
- Removed unnecessary vendor prefixes. - Removed unused CSS and SVG code. - Removed invalid CSS. - Removed IE9-only browser reset styles. - Fixed animation on Firefox.
2020-10-01Fixed #32057 -- Doc'd HttpResponse.get()/items().MAHANTH-wq
2020-10-01Added stub release notes for 3.1.3.Mariusz Felisiak
2020-10-01Added release date for 3.1.2.Mariusz Felisiak
2020-09-30Fixed #31986 -- Fixed admin filter sidebar scrolling.Tom Carrick
Regression in 2bc38bc7cae002f949157d95e3f0c19ea6b8ca5c. Thanks haki for the report.
2020-09-30Fixed #32047 -- Fixed call_command() crash if a constant option from ↵Hasan Ramezani
required mutually exclusive group is passed in options.
2020-09-30Fixed #30422 -- Made TemporaryFileUploadHandler handle interrupted uploads.aryan
This patch allows upload handlers to handle interrupted uploads. Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>
2020-09-30Refs #30422 -- Added test for removing temporary files in MultiPartParser ↵aryan
when StopUpload is raised.
2020-09-30Updated translations from Transifex.Claude Paroz
Forwardport of f7397bb7c8cb938161a9d43a16ee974f41c96a8b from stable/3.1.x.
2020-09-29Updated ASGI uvicorn deployment docs.Thomas Grainger
2020-09-29Fixed #31880 -- Made QuerySet.aggregate() raise FieldError when aggregating ↵David Wobrock
over aggregation aliases.
2020-09-29Fixed #18995 -- Made blocktranslate tag raise TemplateSyntaxError when ↵Jacob Walls
plural count is not a number.
2020-09-28Fixed #32042 -- Improved error messages for the number of submitted forms in ↵meghanabhange
formsets.
2020-09-25Fixed #28009 -- Doc'd empty_value for CharField subclasses.David Smith
2020-09-25Refs #28009 -- Added empty_value tests for CharField subclasses.David Smith
2020-09-25Added assertions for cleaning None values for forms.JSONField and ↵David Smith
forms.UUIDField.
2020-09-25Fixed empty values of forms.JSONField and forms.UUIDField in docs.David Smith
2020-09-25Used assertRaisesMessage() in CharField tests.David Smith
2020-09-25Fixed #32038 -- Fixed EmptyFieldListFilter crash with GenericRelation.Mariusz Felisiak
Thanks Javier Matos Odut for the report.
2020-09-25Refs #32038 -- Added note to ModelAdmin.list_filter docs that ↵Mariusz Felisiak
GenericForeignKeys are not supported.
2020-09-25Fixed typo and indentation in docs/ref/forms/fields.txt.Mariusz Felisiak
2020-09-24Fixed #30563 -- Optimized form Media by removing duplicated assets when adding.David Smith
2020-09-24Refs #30563 -- Added tests for merging form Media with different ordering.David Smith
2020-09-24Fixed #27906 -- Fixed test tools counting of HTML matches for subsets of ↵Jacob Walls
elements. Previously examples such as '<a/><b/>' would not match in '<a/><b/><c/>'.
2020-09-23Fixed #32029 -- Removed unnecessary margin in admin CSS for horizontal radio ↵Matthias Kestenholz
inputs.
2020-09-23Fixed #32027 -- Fixed wrapping of long words in admin error messages.Matthias Kestenholz
2020-09-23Fixed example of QuerySet.explain() with flags in docs.Paweł Zarębski
2020-09-23Fixed #32012 -- Made test database creation sync apps models when migrations ↵Mariusz Felisiak
are disabled. Thanks Jaap Roes for the report.
2020-09-23Fixed #32034 -- Removed redundant get_app_config() call in AdminSite.app_index.Raffaele Salmaso
app_config.verbose_name is already in app_dict.
2020-09-23Refs #32034 -- Added test for title on admin app index view.Raffaele Salmaso
2020-09-23Fixed #31723 -- Fixed window functions crash with DecimalField on SQLite.Hasan Ramezani
Thanks Simon Charette for the initial patch.
2020-09-22Fixed #32016 -- Clarified manual logging config docs.Carlton Gibson