summaryrefslogtreecommitdiff
Commit message (Expand)AuthorAgeFilesLines
* [3.2.x] Bumped version for 3.2 beta 1.3.2b1Carlton Gibson2021-02-192-2/+2
* [3.2.x] Fixed CVE-2021-23336 -- Fixed web cache poisoning via django.utils.ht...Nick Pope2021-02-199-27/+94
* [3.2.x] Fixed #32455 -- Allowed right combining Q() with boolean expressions.Hasan Ramezani2021-02-192-1/+11
* [3.2.x] Refs #32455 -- Added tests for left combining an empty Q() with boole...Mariusz Felisiak2021-02-191-0/+12
* [3.2.x] Fixed #32450 -- Fixed crash when ANDing/ORing an empty Q() with not p...starryrbs2021-02-182-3/+12
* [3.2.x] Added documentation extlink for bugs.python.org.Nick Pope2021-02-174-10/+9
* [3.2.x] Fixed #32453 -- Added introspection of unique constraint field orderi...Hannes Ljungberg2021-02-173-2/+30
* [3.2.x] Fixed #29052 -- Made test database creation preserve alias order and ...Harm Geerts2021-02-163-3/+38
* [3.2.x] Fixed #32437 -- Fixed cleaning up ALLOWED_HOSTS in LiveServerTestCase...Chris Jerdonek2021-02-122-2/+40
* [3.2.x] Fixed #32438 -- Fixed typo in docs/topics/testing/tools.txt.David Smith2021-02-121-2/+2
* [3.2.x] Documented an example custom context processor.Adam Johnson2021-02-111-2/+11
* [3.2.x] Improved pagination documentationAdam Johnson2021-02-111-1/+5
* [3.2.x] Fixed #32433 -- Added error message on QuerySet.delete() following di...Egidijus Macijauskas2021-02-113-1/+15
* [3.2.x] Refs #19102 -- Removed flaky test Ticket19102Tests.test_ticket_19102_...Egidijus Macijauskas2021-02-111-14/+0
* [3.2.x] Fixed #32431 -- Reversed order of security issues history.Hasan Ramezani2021-02-101-573/+573
* [3.2.x] Fixed #32425 -- Fixed adding nullable field with default on MySQL.Jordan Bae2021-02-094-1/+37
* [3.2.x] Fixed #32430 -- Doc'd base class-based views.Anil Khatri2021-02-081-4/+76
* [3.2.x] Fixed #32408 -- Doc'd django.views.generic.detail.BaseDetailView.Anil Khatri2021-02-084-4/+24
* [3.2.x] Fixed #32419 -- Clarified URLconf in example of serving media files.Amankumar Singh2021-02-051-1/+1
* [3.2.x] Fixed #32420 -- Fixed detecting primary key values in deserialization...Mikolaj Rybinski2021-02-053-3/+36
* [3.2.x] Corrected typo in advice to new contributors.Carlton Gibson2021-02-041-2/+2
* [3.2.x] Refs #32074 -- Fixed TextChoices/IntegerChoices crash on Python 3.10.Mariusz Felisiak2021-02-041-2/+2
* [3.2.x] Refs #32412 -- Adjusted link from tutorial to reference docs.GabbyPrecious2021-02-041-2/+2
* [3.2.x] Refs #32412 -- Adjusted beginning of Advice for new contributors.GabbyPrecious2021-02-041-1/+7
* [3.2.x] Fixed typos in 3.2 release notes.Dan Swain2021-02-041-1/+1
* [3.2.x] Fixed #32332 -- Fixed loss of parent with non-numeric pk when saving ...Hasan Ramezani2021-02-043-4/+22
* [3.2.x] Fixed #32403 -- Fixed re-raising DatabaseErrors when using only 'post...Mariusz Felisiak2021-02-023-2/+55
* [3.2.x] Fixed typo in docs/ref/forms/widgets.txt.Brad Solomon2021-02-011-1/+1
* [3.2.x] Added stub release notes for 3.1.7.Mariusz Felisiak2021-02-012-0/+13
* [3.2.x] Added CVE-2021-3281 to security archive.Mariusz Felisiak2021-02-011-0/+13
* [3.2.x] Fixed CVE-2021-3281 -- Fixed potential directory-traversal via archiv...Mariusz Felisiak2021-02-0110-5/+77
* [3.2.x] Fixed #32345 -- Fixed preserving encoded query strings in set_languag...Sandro Covo2021-01-293-7/+7
* [3.2.x] Fixed #32392 -- Fixed ExclusionConstraint crash with Cast() in expres...Tilman Koschnick2021-01-294-23/+15
* [3.2.x] Fixed GeoIPTest.test04_city() failure with the latest GeoIP2 database.Mariusz Felisiak2021-01-291-5/+5
* [3.2.x] Modernized custom manager exampleAdam Johnson2021-01-281-27/+14
* [3.2.x] Fixed #32391 -- Used CSS flex properties for changelist filter.Denis Skulimovskiy2021-01-283-3/+4
* [3.2.x] Fixed #32389 -- Fixed ResponseHeaders crash when data is not mapping.Illia Volochii2021-01-282-5/+8
* [3.2.x] Fixed #32388 -- Clarified QuerySet.bulk_update() caveat about duplica...Timothy McCurrach2021-01-281-1/+2
* [3.2.x] Changed "Don't overuse count() or exists()" example to Python.Adam Johnson2021-01-271-32/+24
* [3.2.x] Fixed #32290 -- Fixed TemplateNotFound in {% include %} tag for relat...Hasan Ramezani2021-01-273-4/+19
* [3.2.x] Fixed #32348, Refs #29087 -- Corrected tutorial for updated deleting ...Carlton Gibson2021-01-275-2/+5
* [3.2.x] Fixed #32369 -- Fixed adding check constraints with pattern lookups a...Simon Charette2021-01-262-1/+19
* [3.2.x] Refs #26167 -- Corrected OpClass() example in docs.Hannes Ljungberg2021-01-251-1/+4
* [3.2.x] Refs #32372 -- Updated manager name in related objects reference docs.Jack2021-01-221-1/+1
* [3.2.x] Fixed #32372 -- Made examples in related objects reference docs consi...Jack Aitken2021-01-221-3/+3
* [3.2.x] Fixed #32367 -- Fixed system check for specifying type of auto-create...Mariusz Felisiak2021-01-212-12/+56
* [3.2.x] Fixed #32374 -- Stopped recording migration application before deferr...Simon Charette2021-01-212-2/+30
* [3.2.x] Refs #29721 -- Simplified migration used to test atomic recording.Simon Charette2021-01-211-4/+20
* [3.2.x] Fixed #32371 -- Doc'd jquery.init.js dependency for admin widgets.Matthias Kestenholz2021-01-201-1/+4
* [3.2.x] Refs #31259 -- Made various dark theme adjustments.Tom Carrick2021-01-204-4/+8