summaryrefslogtreecommitdiff
path: root/django
Commit message (Expand)AuthorAgeFilesLines
* [4.0.x] Post-release version bump.Carlton Gibson2022-08-031-1/+1
* [4.0.x] Bumped version for 4.0.7 release.4.0.7Carlton Gibson2022-08-031-1/+1
* [4.0.x] Fixed CVE-2022-36359 -- Escaped filename in Content-Disposition header.Carlton Gibson2022-08-031-1/+3
* [4.0.x] Fixed warnings per flake8 5.0.0.Mariusz Felisiak2022-08-031-12/+12
* [4.0.x] Fixed collation tests on MySQL 8.0.30+.Mariusz Felisiak2022-08-011-4/+7
* [4.0.x] Post-release version bump.Mariusz Felisiak2022-07-041-1/+1
* [4.0.x] Bumped version for 4.0.6 release.4.0.6Mariusz Felisiak2022-07-041-1/+1
* [4.0.x] Fixed CVE-2022-34265 -- Protected Trunc(kind)/Extract(lookup_name) ag...Mariusz Felisiak2022-07-042-0/+7
* [4.0.x] Post-release version bump.Carlton Gibson2022-06-011-1/+1
* [4.0.x] Bumped version for 4.0.5 release.4.0.5Carlton Gibson2022-06-011-1/+1
* [4.0.x] Fixed #33725 -- Made hidden quick filter in admin's navigation sideba...Sankalp2022-05-211-0/+9
* [4.0.x] Fixed #33705 -- Fixed crash when using IsNull() lookup in filters.David Wobrock2022-05-191-3/+4
* [4.0.x] Fixed #33681 -- Made Redis client pass CACHES["OPTIONS"] to a connect...Mariusz Felisiak2022-05-161-2/+2
* [4.0.x] Post-release version bump.Mariusz Felisiak2022-04-111-1/+1
* [4.0.x] Bumped version for 4.0.4 release.4.0.4Mariusz Felisiak2022-04-111-1/+1
* [4.0.x] Fixed CVE-2022-28347 -- Protected QuerySet.explain(**options) against...Mariusz Felisiak2022-04-113-9/+33
* [4.0.x] Fixed CVE-2022-28346 -- Protected QuerySet.annotate(), aggregate(), a...Mariusz Felisiak2022-04-111-0/+14
* [4.0.x] Fixed #33628 -- Ignored directories with empty names in autoreloader ...Manel Clos2022-04-111-2/+2
* [4.0.x] Fixed #33598 -- Reverted "Removed unnecessary reuse_with_filtered_rel...Mariusz Felisiak2022-03-301-9/+38
* [4.0.x] Updated Oracle docs links to Oracle 21c.Mariusz Felisiak2022-03-292-4/+4
* [4.0.x] Post-release version bump.Carlton Gibson2022-03-011-1/+1
* [4.0.x] Bumped version for 4.0.3 release.4.0.3Carlton Gibson2022-03-011-1/+1
* [4.0.x] Fixed #33547 -- Fixed error when rendering invalid inlines with reado...Mariusz Felisiak2022-03-011-1/+5
* [4.0.x] Fixed #33515 -- Prevented recreation of migration for ManyToManyField...Mariusz Felisiak2022-02-161-3/+7
* [4.0.x] Refs #33476 -- Refactored code to strictly match 88 characters line l...Mariusz Felisiak2022-02-08136-436/+875
* [4.0.x] Refs #33476 -- Reformatted code with Black.django-bot2022-02-08682-22473/+34217
* [4.0.x] Refs #33476 -- Refactored problematic code before reformatting by Black.Mariusz Felisiak2022-02-0327-101/+158
* [4.0.x] Refs #33476 -- Used vertical hanging indentation for format lists wit...Mariusz Felisiak2022-02-0137-129/+262
* [4.0.x] Post-release version bump.Mariusz Felisiak2022-02-011-1/+1
* [4.0.x] Bumped version for 4.0.2 release.4.0.2Mariusz Felisiak2022-02-011-1/+1
* [4.0.x] Fixed CVE-2022-23833 -- Fixed DoS possiblity in file uploads.Mariusz Felisiak2022-02-011-0/+2
* [4.0.x] Fixed CVE-2022-22818 -- Fixed possible XSS via {% debug %} template tag.Markus Holtermann2022-02-011-3/+6
* [4.0.x] Fixed #33480 -- Fixed makemigrations crash when renaming field of ren...Kirill Safronov2022-02-011-1/+1
* [4.0.x] Fixed #33468 -- Fixed QuerySet.aggregate() after annotate() crash on ...Mariusz Felisiak2022-01-311-1/+3
* [4.0.x] Updated translations from Transifex.Claude Paroz2022-01-2938-719/+1084
* [4.0.x] Fixed #33462 -- Fixed migration crash when altering type of primary k...Mariusz Felisiak2022-01-271-1/+3
* [4.0.x] Fixed #33407 -- Fixed .radiolist admin CSS.Carlton Gibson2022-01-262-10/+14
* [4.0.x] Fixed #33449 -- Fixed makemigrations crash on models without Meta.ord...Fabian Büchler2022-01-211-5/+2
* [4.0.x] Fixed #33426 -- Fixed ResolverMatch.__repr_() for class-based views.Keryn Knight2022-01-101-0/+2
* [4.0.x] Fixed #33425 -- Fixed view name for CBVs on technical 404 debug page.Keryn Knight2022-01-081-2/+3
* [4.0.x] Fixed #33419 -- Restored marking forms.Field.help_text as HTML safe.David2022-01-076-6/+6
* [4.0.x] Fixed #33410 -- Fixed recursive capturing of callbacks by TestCase.ca...Petter Friberg2022-01-071-7/+5
* [4.0.x] Post-release version bump.Carlton Gibson2022-01-041-1/+1
* [4.0.x] Bumped version for 4.0.1 release.4.0.1Carlton Gibson2022-01-041-1/+1
* [4.0.x] Fixed CVE-2021-45452 -- Fixed potential path traversal in storage sub...Florian Apolloner2022-01-041-1/+8
* [4.0.x] Fixed CVE-2021-45116 -- Fixed potential information disclosure in dic...Florian Apolloner2022-01-041-5/+17
* [4.0.x] Fixed CVE-2021-45115 -- Prevented DoS vector in UserAttributeSimilari...Florian Apolloner2022-01-041-2/+38
* [4.0.x] Refs #32355 -- Bumped required psycopg2 version to 2.8.4.Mariusz Felisiak2021-12-221-2/+2
* [4.0.x] Fixed #32600 -- Fixed Geometry collections and Polygon segmentation f...Brenton Partridge2021-12-213-14/+14
* [4.0.x] Fixed #33366 -- Fixed case handling with swappable setting detection ...Simon Charette2021-12-171-2/+3