Mariusz Felisiak
05bc1c81aa
[2.2.x] Fixed #33082 -- Fixed CommandTests.test_subparser_invalid_option on Python 3.9.7+.
...
Thanks Michał Górny for the report.
Backport of 50ed545e2f
from main.
2021-09-02 11:06:10 +02:00
Mariusz Felisiak
a9c0aa11e7
[2.2.x] Refs #31676 -- Updated technical board description in organization docs.
...
According to DEP 0010.
Backport of f2ed2211c2
from main.
2021-07-30 11:53:15 +02:00
Mariusz Felisiak
66008c2af0
[2.2.x] Refs #31676 -- Added Mergers and Releasers to organization docs.
...
According to DEP 0010.
Backport of 228ec8e015
from main
2021-07-30 11:52:46 +02:00
Mariusz Felisiak
d4d1c2b3db
[2.2.x] Refs #31676 -- Removed Core team from organization docs.
...
According to DEP 0010.
Backport of caa2dd08c4
from main
2021-07-30 11:52:43 +02:00
Mariusz Felisiak
8f59f72a20
[2.2.x] Refs #31676 -- Removed Django Core-Mentorship mailing list references in docs.
...
Backport of 37e8367c35
from main.
2021-07-13 20:26:17 +02:00
Mariusz Felisiak
837ffcfa68
[2.2.x] Refs #32856 -- Doc'd that psycopg2 < 2.9 is required.
2021-06-21 13:06:31 +02:00
Mariusz Felisiak
dc43667eab
[2.2.x] Fixed docs header underlines in security archive.
...
Backport of d9cee3f5f2
from main
2021-06-02 12:29:11 +02:00
Carlton Gibson
3e7bb564be
[2.2.x] Added CVE-2021-33203 and CVE-2021-33571 to security archive.
...
Backport of a39f235ca4
from main
2021-06-02 11:19:59 +02:00
Carlton Gibson
48bde7cab4
[2.2.x] Post-release version bump.
2021-06-02 10:36:52 +02:00
Carlton Gibson
2da029d854
[2.2.x] Bumped version for 2.2.24 release.
2021-06-02 10:28:20 +02:00
Mariusz Felisiak
f27c38ab5d
[2.2.x] Fixed CVE-2021-33571 -- Prevented leading zeros in IPv4 addresses.
...
validate_ipv4_address() was affected only on Python < 3.9.5, see [1].
URLValidator() uses a regular expressions and it was affected on all
Python versions.
[1] https://bugs.python.org/issue36384
2021-06-02 10:26:22 +02:00
Florian Apolloner
053cc9534d
[2.2.x] Fixed CVE-2021-33203 -- Fixed potential path-traversal via admindocs' TemplateDetailView.
2021-06-02 10:26:22 +02:00
Carlton Gibson
6229d8794f
[2.2.x] Confirmed release date for Django 2.2.24.
...
Backport of f66ae7a2d5
from main.
2021-06-02 10:23:20 +02:00
Carlton Gibson
f163ad5c63
[2.2.x] Added stub release notes and date for Django 2.2.24.
...
Backport of b46dbd4e3e
from main
2021-05-26 10:21:53 +02:00
Mariusz Felisiak
bed1755bc5
[2.2.x] Changed IRC references to Libera.Chat.
...
Backport of 66491f08fe
from main.
2021-05-20 12:42:48 +02:00
Mariusz Felisiak
63f0d7a0f6
[2.2.x] Refs #32718 -- Fixed file_storage.test_generate_filename and model_fields.test_filefield tests on Python 3.5.
2021-05-14 06:59:11 +02:00
Mariusz Felisiak
5fe4970bd0
[2.2.x] Post-release version bump.
2021-05-13 09:22:34 +02:00
Mariusz Felisiak
61f814f9fa
[2.2.x] Bumped version for 2.2.23 release.
2021-05-13 09:19:56 +02:00
Mariusz Felisiak
b8ecb06436
[2.2.x] Fixed #32718 -- Relaxed file name validation in FileField.
...
- Validate filename returned by FileField.upload_to() not a filename
passed to the FileField.generate_filename() (upload_to() may
completely ignored passed filename).
- Allow relative paths (without dot segments) in the generated filename.
Thanks to Jakub Kleň for the report and review.
Thanks to all folks for checking this patch on existing projects.
Thanks Florian Apolloner and Markus Holtermann for the discussion and
implementation idea.
Regression in 0b79eb3691
.
Backport of b55699968f
from main.
2021-05-13 09:00:25 +02:00
Mariusz Felisiak
3ba089ac7e
[2.2.x] Refs #32718 -- Corrected CVE-2021-31542 release notes.
...
Backport of d1f1417cae
from main.
2021-05-12 10:44:25 +02:00
Mariusz Felisiak
88d9b28c0c
[2.2.x] Added CVE-2021-32052 to security archive.
...
Backport of efebcc429f
from main
2021-05-06 10:05:46 +02:00
Mariusz Felisiak
7ada1f90c6
[2.2.x] Post-release version bump.
2021-05-06 09:10:34 +02:00
Mariusz Felisiak
df9fd4661e
[2.2.x] Bumped version for 2.2.22 release.
2021-05-06 09:08:28 +02:00
Mariusz Felisiak
d9594c4ea5
[2.2.x] Fixed #32713 , Fixed CVE-2021-32052 -- Prevented newlines and tabs from being accepted in URLValidator on Python 3.9.5+.
...
In Python 3.9.5+ urllib.parse() automatically removes ASCII newlines
and tabs from URLs [1, 2]. Unfortunately it created an issue in
the URLValidator. URLValidator uses urllib.urlsplit() and
urllib.urlunsplit() for creating a URL variant with Punycode which no
longer contains newlines and tabs in Python 3.9.5+. As a consequence,
the regular expression matched the URL (without unsafe characters) and
the source value (with unsafe characters) was considered valid.
[1] https://bugs.python.org/issue43882 and
[2] 76cd81d603
Backport of e1e81aa1c4
from main.
2021-05-06 08:53:27 +02:00
Carlton Gibson
163700388c
[2.2.x] Refs CVE-2021-31542 -- Skipped mock AWS storage test on Windows.
...
The validate_file_name() sanitation introduced in
0b79eb3691
correctly rejects the example
file name as containing path elements on Windows. This breaks the test
introduced in 914c72be2a
to allow path
components for storages that may allow them.
Test is skipped pending a discussed storage refactoring to support this
use-case.
Backport of a708f39ce6
from main
2021-05-06 07:44:15 +02:00
Carlton Gibson
bcafd9ba84
[2.2.x] Added CVE-2021-31542 to security archive.
...
Backport of 607ebbfba9
and
62b2e8b37e
from main
2021-05-04 11:14:17 +02:00
Carlton Gibson
3931dc7651
[2.2.x] Post-release version bump.
2021-05-04 10:24:07 +02:00
Carlton Gibson
ff1385ae45
[2.2.x] Bumped version for 2.2.21 release.
2021-05-04 10:18:53 +02:00
Florian Apolloner
04ac1624bd
[2.2.x] Fixed CVE-2021-31542 -- Tightened path & file name sanitation in file uploads.
2021-04-27 19:10:08 +02:00
Mariusz Felisiak
7f1b088ab4
[2.2.x] Added CVE-2021-28658 to security archive.
...
Backport of 1eac8468cb
from main
2021-04-06 09:48:05 +02:00
Mariusz Felisiak
e95fbb6a76
[2.2.x] Post-release version bump.
2021-04-06 08:45:22 +02:00
Mariusz Felisiak
ad9fa56a17
[2.2.x] Bumped version for 2.2.20 release.
2021-04-06 08:39:37 +02:00
Mariusz Felisiak
4036d62bda
[2.2.x] Fixed CVE-2021-28658 -- Fixed potential directory-traversal via uploaded files.
...
Thanks Claude Paroz for the initial patch.
Thanks Dennis Brinkrolf for the report.
Backport of d4d800ca1a
from main.
2021-04-06 08:38:19 +02:00
Carlton Gibson
6e58828f8b
[2.2.x] Added CVE-2021-23336 to security archive.
...
Backport of ab58f07250
from master
2021-02-19 11:07:56 +01:00
Carlton Gibson
1fb4628a83
[2.2.x] Post-release version bump.
2021-02-19 09:45:49 +01:00
Carlton Gibson
21a5547793
[2.2.x] Bumped version for 2.2.19 release.
2021-02-19 09:44:55 +01:00
Nick Pope
fd6b6afd59
[2.2.x] Fixed CVE-2021-23336 -- Fixed web cache poisoning via django.utils.http.limited_parse_qsl().
2021-02-18 10:27:25 +01:00
Nick Pope
226d831918
[2.2.x] Added documentation extlink for bugs.python.org.
...
Backport of d02d60eb0f
from master
2021-02-17 14:28:05 +01:00
Mariusz Felisiak
34010d8ffa
[2.2.x] Added CVE-2021-3281 to security archive.
...
Backport of f749148d62
from master
2021-02-01 10:47:08 +01:00
Mariusz Felisiak
06ae7e0742
[2.2.x] Post-release version bump.
2021-02-01 09:49:28 +01:00
Mariusz Felisiak
fc0c8cfa49
[2.2.x] Bumped version for 2.2.18 release.
2021-02-01 09:43:16 +01:00
Mariusz Felisiak
21e7622dec
[2.2.x] Fixed CVE-2021-3281 -- Fixed potential directory-traversal via archive.extract().
...
Thanks Florian Apolloner, Shai Berger, and Simon Charette for reviews.
Thanks Wang Baohua for the report.
Backport of 05413afa8c
from master.
2021-02-01 09:14:54 +01:00
Mariusz Felisiak
ee9d623831
[2.2.x] Fixed GeoIPTest.test04_city() failure with the latest GeoIP2 database.
...
Backport of 135c800fe6
from master
2021-01-29 11:03:59 +01:00
Tim Graham
e8e28e747f
[2.2.x] Updated CVE URL.
...
Backport of 656b331b13
from master
2021-01-02 12:51:06 +01:00
Max Smolens
e893c0ad8b
[2.2.x] Fixed #31850 -- Fixed BasicExtractorTests.test_extraction_warning with 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.
Backport of 07a30f5616
from master
2020-11-02 10:30:40 +01:00
Carlton Gibson
3da29a30c6
[2.2.x] Post-release version bump.
2020-11-02 08:55:25 +01:00
Carlton Gibson
c769f65c98
[2.2.x] Bumped version for 2.2.17 release.
2020-11-02 08:49:01 +01:00
Carlton Gibson
3db9a7aa8b
[2.2.x] Set release date for 2.2.17.
...
Backport of 7fc07b9b2b
from master
2020-11-02 08:39:12 +01:00
Mariusz Felisiak
b4b8ca4895
[2.2.x] Refs #31040 -- Doc'd Python 3.9 compatibility.
...
Backport of e18156b6c3
from master.
2020-10-13 08:45:37 +02:00
Jon Dufresne
01742aa932
[2.2.x] Refs #31040 -- Fixed Python PendingDeprecationWarning in select_for_update.tests.
...
Backport of 0dd2308cf6
from master
2020-10-12 12:21:33 +02:00