summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-10-05Dropped easy_install example from Release How-To.Carlton Gibson
easy_install was deprecated in 2019. https://setuptools.pypa.io/en/latest/history.html#v42-0-0
2021-10-05Refs #32074 -- Added Python 3.10 to classifiers and tox.ini.Mariusz Felisiak
2021-10-05Added stub release notes for Django 3.2.9.Carlton Gibson
2021-10-05Added release date for 3.2.7.Carlton Gibson
2021-10-05Refs #29026 -- Added log() to makemigrations.Jacob Walls
2021-10-05Fixed #22224 -- Added note about supplying missing values for non-nullable ↵Jacob Walls
fields with blank=True.
2021-10-04Fixed #32888 -- Doc'd that select_for_update() only locks tables with ↵Hannes Ljungberg
selected columns.
2021-10-04Refs #33107 -- Optimized cached_import() helper.Nick Pope
2021-10-04Refs #27694 -- Doc'd lookups that can be chained with HStoreField key ↵Sarah Abderemane
transforms.
2021-10-04Refs #27694 -- Added more tests for chaining lookups with HStoreField key ↵Sarah Abderemane
transforms.
2021-10-01Refs #32943 -- Added support for covering exclusion constraints using ↵Nick Pope
SP-GiST indexes on PostgreSQL 14+.
2021-10-01Refs #32943 -- Added support for covering SP-GiST indexes on PostgreSQL 14+.Nick Pope
2021-10-01Fixed #32961 -- Added BitXor() aggregate to django.contrib.postgres.Nick Pope
2021-10-01Fixed typo in exception message for GiST indexes and exclusion constraints.Nick Pope
2021-10-01Fixed SpGistIndex tests on PostgreSQL 14+.Nick Pope
2021-10-01Fixed #33160 -- Avoided suppressing query errors in _nodb_cursor() on ↵Daniel Hahler
PostgreSQL.
2021-09-30Fixed #33029 -- Allowed multiple popups for self-related fields in admin.Yash Jhunjhunwala
2021-09-30Optimized @async_unsafe.Adam Johnson
Switched the order of the checks to reduce the overhead. Async unsafe methods are *normally* called syncrhonously, so we can avoid the overhead of checking the environment variable in the regular path.
2021-09-30Fixed #33155 -- Made ModelChoiceIteratorValue instances hashable.Aljaž Košir
2021-09-30Fixed #33159 -- Reverted "Fixed #32970 -- Changed WhereNode.clone() to ↵Mariusz Felisiak
create a shallow copy of children." This reverts commit e441847ecae99dd1ccd0d9ce76dbcff51afa863c. A shallow copy is not enough because querysets can be reused and evaluated in nested nodes, which shouldn't mutate JOIN aliases. Thanks Michal Čihař for the report.
2021-09-29Fixed #33018 -- Fixed annotations with empty queryset.David Wobrock
Thanks Simon Charette for the review and implementation idea.
2021-09-29Fixed #33141 -- Renamed Expression.empty_aggregate_value to ↵David Wobrock
empty_result_set_value.
2021-09-29Recommended using .tables on SQLite in tutorial 2.Victor Sowa
2021-09-29Fixed #33027 -- Made autoreloader pass -X options.Chenyang Yan
2021-09-29Fixed #33134 -- Fixed recursion depth error when rendering Form with ↵David Smith
BoundFields. Regression in 456466d932830b096d39806e291fe23ec5ed38d5.
2021-09-28Fixed #33033 -- Prevented models.DecimalField from accepting NaN values.Chinmoy Chakraborty
2021-09-28Corrected field and model check messages in docs.Mariusz Felisiak
Follow up to 72d04e03855536cf36090aedbb7aa8f1c4c8b443.
2021-09-28Fixed #33125 -- Avoided redundant unique constraint when converting a ↵Jordan Bae
non-unique field to primary key on MySQL and PostgreSQL.
2021-09-27Fixed #33136 -- Added GEOSGeometry.make_valid() method.Claude Paroz
2021-09-27Used Path.read_text() in jinja2.get_exception_info().Mariusz Felisiak
2021-09-27Refs #32355 -- Used @functools.lru_cache as a straight decorator.Mariusz Felisiak
2021-09-27Refs #32355 -- Modernized subprocess.run() calls.Adam Johnson
2021-09-27Fixed #33114 -- Defined default output_field of StringAgg.ali
Thanks Simon Charette for the review.
2021-09-24Removed obsolete GEOS 3.5 requirement note.Claude Paroz
Follow up to ea87a85fad9994dbb0748df25bc9c2d99b24809b.
2021-09-24Fixed #33124 -- Avoided accessing the database connections when not necessary.Keryn Knight
Follow up to bf5abf1bdcedb15e949db419c61eeec7c88414ea. This also caches the __getitem__ access.
2021-09-24Fixed #33130 -- Restored form errors to be a dict.Jaap Roes
Regression in 456466d932830b096d39806e291fe23ec5ed38d5.
2021-09-24Fixed #33132 -- Fixed test client handling of querystring only redirects.Jaap Roes
Regression in 1e5aa8e1c79252cc810af21294a6e945d11d37b3.
2021-09-24Fixed #33127 -- Added error messages on | and & operators with combined ↵Hasan Ramezani
querysets.
2021-09-23Refs #33129 -- Added missing return statement.Carlton Gibson
Thanks to Claude Paroz for spotting it. Regression in 221b2f85febcf68629fc3a4007dc7edb5a305b91.
2021-09-23Fixed #33133 -- Fixed handling NullBooleanField in historical migrations.Mariusz Felisiak
Regression in d992f4e3c29a81c956d3d616f0bc19701431b26e.
2021-09-22Fixed typo in 4.0 release notes.Jero Bado
2021-09-22Skipped GitHub actions for linters and JavaScript tests on purely doc changes.Mariusz Felisiak
2021-09-22Fixed #32499 -- Escaped additional metacharacters in simplify_regex().Nick Pope
2021-09-22Refs #32499 -- Fixed escaped metacharacters in simplify_regex().Nick Pope
2021-09-22Refs #32499 -- Added more tests for simplify_regex().Nick Pope
2021-09-22Refs #32499 -- Added metacharacters helper for simplify_regex().Nick Pope
2021-09-22Fixed #33129 -- Dropped support for MariaDB 10.2.Mariusz Felisiak
2021-09-22Fixed #33128 -- Corrected possessive 's usage in FormSet docs.Joel Farthing
2021-09-22Optimized handling case-insensitive mappings.Illia Volochii
Elements yielded by _destruct_iterable_mapping_values are always unpacked. Since unpacking can be done with any iterable, there is no need to convert elements to tuples. Also, such elements can be used directly in for loops, creating a dictionary of them is excessive. Co-authored-by: Nick Pope <nick@nickpope.me.uk>
2021-09-22Removed blocking wait in admin inlines selenium test.Carlton Gibson
find_elements_by_css_selector() implicitly waits the default timeout (10 seconds) looking for missing elements.