Commit Graph

26848 Commits

Author SHA1 Message Date
Claude Paroz f452d4232e [2.2.x] Fixed #29823 -- Doc'd limitation of DecimalField on SQLite.
Backport of b8dff52f44 from master
2019-09-14 17:25:33 +02:00
Ben Falk 1864d61d6c [2.2.x] Fixed typos in docs/ref/settings.txt.
Backport of 4056558a1c from master.
2019-09-13 20:38:44 +02:00
Simon Charette 964dd4f4f2 [2.2.x] Fixed #30754 -- Prevented inclusion of aliases in partial index conditions.
SQLite doesn't repoint table aliases in partial index conditions on table
rename which breaks the documented table alteration procedure.

Thanks Pēteris Caune for the report.

Backport of 34decdebf1 from master
2019-09-10 10:04:12 +02:00
Nick Pope be053c0b2a [2.2.x] Standardized links for headers in security middleware documentation.
Backport of fc62e16291 from master
2019-09-09 13:42:31 +02:00
Katie McLaughlin 1f304ebdc6 [2.2.x] Fixed #30767 -- Improved references to deployment documentation.
* Increased tocdepth to expose more complexity of topics.
* Ensured deployment checklist is linked on main doc page.

Backport of fee75d2aed from master.
2019-09-09 10:06:58 +02:00
Mariusz Felisiak fe33dd67fb [2.2.x] Fixed typo in docs/internals/contributing/writing-documentation.txt.
Backport of 053ff7e9e6 from master
2019-09-05 14:09:02 +02:00
Carlton Gibson dee22a024b [2.2.x] Refs #30573 -- Noted to avoid "simple" & co. in Writing Style guide.
Co-authored-by: Tobias Kunze <r@rixx.de>

Backport of ed2d411aa8 from master
2019-09-05 10:15:19 +02:00
Min ho Kim 23946bdb06 [2.2.x] Changed example git clone URLs to use HTTPS.
Backport of 3c6a4fdb6d from master
2019-09-04 08:12:36 +02:00
Mariusz Felisiak b71cabe459 [2.2.x] Added stub release notes for 2.2.6.
Backport of 0d4529d314 from master
2019-09-04 08:06:12 +02:00
Mariusz Felisiak 96f1d82401 [2.2.x] Post-release version bump. 2019-09-02 09:04:02 +02:00
Mariusz Felisiak ce97960e34 [2.2.x] Bumped version for 2.2.5 release. 2019-09-02 08:21:38 +02:00
Mariusz Felisiak 8514c6f329 [2.2.x] Updated man page for Django 2.2. 2019-09-02 08:00:01 +02:00
Mariusz Felisiak 4ed59db199 [2.2.x] Added release dates for 2.2.5, 2.1.12, and 1.11.24.
Backport of 47f49adc11 from master
2019-09-02 07:45:40 +02:00
Daria Kolodzey 11cdfb3408 [2.2.x] Fixed #30738 -- Fixed typo in docs/ref/forms/widgets.txt.
Thanks Emmanuel Cazenave for the report.
Backport of 3f8ee58ccc from master
2019-08-31 10:59:41 +02:00
Andrew 16e5e8ff5a [2.2.x] Fixed #30733 -- Doc'd that datetime lookups require time zone definitions in the database.
Note was missing for date, year, iso_year, week, time, hour, minute,
and second lookups.

Backport of 29adcd215f from master
2019-08-28 09:07:35 +02:00
Tom Forbes 6402855098 [2.2.x] Fixed #30500 -- Fixed race condition in loading URLconf module. 2019-08-27 20:09:30 +02:00
Matthew Schinckel 6c17b86590 [2.2.x] Doc'd for_save argument of Expression.resolve_expression().
Backport of dba749917f from master
2019-08-27 17:13:35 +02:00
Ali Mirlou 56f7a62d28 [2.2.x] Fixed typo in docs/ref/applications.txt.
Backport of 33b9b23bbb from master
2019-08-23 08:49:00 +02:00
François Freitag 9b7c5a92ec [2.2.x] Fixed broken links and redirects in documentation.
Removed reference to custom builds, feature removed in
8e6b3bba99.
Backport of 9a88e43aeb from master
2019-08-21 10:58:05 +02:00
Harrison88 0dc3ad163a [2.2.x] Fixed #30695 -- Used relative path in default_storage docs example.
Backport of 1e429df748 from master
2019-08-20 12:03:04 +02:00
Garry Polley 4a24fe940e [2.2.x] Removed outdated examples of flatpages served sites.
Removing the lawrence journal flat page examples because one is no longer a web page (404) and the other is no longer served by Django: https://www.reddit.com/r/django/comments/8v0fpb/the_lawrence_journalworld_where_django_was/
Backport of 10528a81ed from master
2019-08-19 12:28:27 +02:00
Mariusz Felisiak 98464dde12 [2.2.x] Fixed broken links and redirects to OGR library in docs.
Backport of 49aeabbf27 from master
2019-08-19 11:43:44 +02:00
bcye 9ecff12720 [2.2.x] Fixed broken links to Dive Into Python 3 book.
Backport of ac34fccdb9 from master
2019-08-19 07:20:39 +02:00
Claude Paroz 556cef1ba8 [2.2.x] Fixed #30694 -- Documented FileResponse does not seek its file source.
Backport of 7203efb799 from master
2019-08-17 09:21:48 +02:00
Mariusz Felisiak 6624a3de28
[2.2.x] Fixed test_json.TestQuerying.test_key_transform_expression() on Python 3.5. 2019-08-15 19:38:12 +02:00
zeyneloz c2732e6839 [2.2.x] Fixed #30449 -- Fixed RelatedFieldListFilter/RelatedOnlyFieldListFilter to respect model's Meta.ordering.
Regression in 6d4e5feb79.

Co-Authored-By: Mariusz Felisiak <felisiak.mariusz@gmail.com>

Backport of 00035672a4 from master
2019-08-15 13:14:17 +02:00
Mariusz Felisiak 52a7759a49 [2.2.x] Fixed #30672 -- Fixed crash of JSONField/HStoreField key transforms on expressions with params.
Regression in 4f5b58f5cd.

Thanks Florian Apolloner for the report and helping with tests.

Backport of 1f8382d34d from master.
2019-08-14 15:29:13 +02:00
Akash Agrawal be4a2a0358 [2.2.x] Fixed #30696 -- Removed obsolete mention of CheckConstraint in the AddConstraint docs.
Follow up to 8eae094638.

Backport of c1b26c77a9 from master
2019-08-11 16:30:44 +02:00
Akash Agrawal 8a3a328020 [2.2.x] Fixed #30670 -- Doc'd SchemaEditor.add/remove_constraint().
Backport of af08a54415 from master
2019-08-11 03:28:01 +02:00
Carlton Gibson c5cbb797d7 [2.2.x] Fixed #30688 -- Clarified base_manager_name docs.
Backport of 514efa3129 from master
2019-08-09 10:10:15 +02:00
Adnan Umer 1265a26b2f [2.2.x] Fixed #30673 -- Relaxed system check for db_table collision when database routers are installed by turning the error into a warning.
Backport of 8d3519071e from master.
2019-08-08 21:40:06 +02:00
Mariusz Felisiak 2c66f340bb [2.2.x] Added stub release notes for 2.2.5.
Backport of 1af469e67f from master
2019-08-03 11:28:47 +02:00
niauah 5b294d3931 [2.2.x] Corrected StreamingHttpResponse.streaming_content description in docs.
Backport of 75f8264083 from master
2019-08-02 16:47:00 +02:00
Carlton Gibson 68cc954ffb [2.2.x] Added CVE-2019-14235 to security release archive.
Backport of a5652eb795 from master
2019-08-01 12:04:18 +02:00
Carlton Gibson 3bfa2f99d8 [2.2.x] Added CVE-2019-14234 to security release archive.
Backport of 3a6a2f5eaf from master
2019-08-01 12:04:06 +02:00
Carlton Gibson 859d1d1cb0 [2.2.x] Added CVE-2019-14233 to security release archive.
Backport of 9600f63885 from master
2019-08-01 12:03:53 +02:00
Carlton Gibson 928d596886 [2.2.x] Added CVE-2019-14232 to the security release archive.
Backport of 87750787d1 from master
2019-08-01 12:03:34 +02:00
Carlton Gibson 7c65adf0f8 [2.2.x] Post-release version bump. 2019-08-01 10:59:41 +02:00
Carlton Gibson 8687fbe034 [2.2.x] Bumped version for 2.2.4 release. 2019-08-01 10:56:47 +02:00
Florian Apolloner cf694e6852 [2.2.x] Fixed CVE-2019-14235 -- Fixed potential memory exhaustion in django.utils.encoding.uri_to_iri().
Thanks to Guido Vranken for initial report.
2019-07-29 11:06:54 +02:00
Mariusz Felisiak 4f5b58f5cd [2.2.x] Fixed CVE-2019-14234 -- Protected JSONField/HStoreField key and index lookups against SQL injection.
Thanks to Sage M. Abdullah for the report and initial patch.
Thanks Florian Apolloner for reviews.
2019-07-29 11:06:54 +02:00
Florian Apolloner e34f3c0e9e [2.2.x] Fixed CVE-2019-14233 -- Prevented excessive HTMLParser recursion in strip_tags() when handling incomplete HTML entities.
Thanks to Guido Vranken for initial report.
2019-07-29 11:06:54 +02:00
Florian Apolloner c3289717c6 [2.2.X] Fixed CVE-2019-14232 -- Adjusted regex to avoid backtracking issues when truncating HTML.
Thanks to Guido Vranken for initial report.
2019-07-29 11:00:01 +02:00
daniel a rios f9462f4c82 [2.2.x] Fixed #30656 -- Added QuerySet.bulk_update() to the database optimization docs.
Backport of 68aeb90160 from master
2019-07-29 10:10:00 +02:00
daniel a rios b4139ed6ea [2.2.x] Refs #30656 -- Reorganized bulk methods in the database optimization docs.
Backport of fe33fdc049 from master
2019-07-29 10:09:53 +02:00
Carlton Gibson ea57c8a345 [2.2.x] Added stub release notes for security releases.
Backport of f13147c8de from master
2019-07-25 10:50:18 +02:00
Tom Forbes 4d6449e125 [2.2.x] Fixed #30647 -- Fixed crash of autoreloader when extra directory cannot be resolved.
Backport of fc75694257 from master.
2019-07-24 14:38:24 +02:00
terminator14 61d4a15989 [2.2.x] Fixed typo in docs/topics/http/sessions.txt.
Backport of 8323691de0 from master
2019-07-23 15:11:54 +02:00
Tom Forbes 2d2859bec2 [2.2.x] Fixed #30506 -- Fixed crash of autoreloader when path contains null characters.
Backport of 2ff517ccb6 from master.
2019-07-23 10:41:50 +02:00
Mariusz Felisiak 506f800ead [2.2.x] Refs #30083 -- Added a warning about performing queries in pre/post_init receivers.
Thanks Carlton Gibson the review.

Backport of fc1182af01 from master
2019-07-19 16:07:29 +02:00