summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2019-01-04[2.1.x] Bumped version for 2.1.5 release.2.1.5Tim Graham
2019-01-03[2.1.x] Fixed #30070, CVE-2019-3498 -- Fixed content spoofing possiblity in ↵Tom Hacohen
the default 404 page. Co-Authored-By: Tim Graham <timograham@gmail.com> Backport of 1ecc0a395be721e987e8e9fdfadde952b6dee1c7 from master.
2019-01-02[2.1.x] Added __init__.py for db_utils tests.Tim Graham
Backport of b5fe97a34ea527d4254b58c2e828450e7c32157f from master.
2019-01-02[2.1.x] Fixed typo in docs/ref/migration-operations.txt.Jozef
Backport of 5bbf31634faad13658dc7bcaeb8139d8625e4349 from master.
2019-01-02[2.1.x] Pinned Pillow != 5.4.0 in test requirements.Tim Graham
There's a bug that causes a test failure in forms_tests: https://github.com/python-pillow/Pillow/pull/3501/files#r244651761. Backport of e4a714b259125423059b9f65f5e0ab70d78521ba from master.
2019-01-01[2.1.x] Fixed #30050 -- Fixed InlineModelAdmin.has_change_permission() ↵Tim Graham
called with non-None obj during add. Thanks andreage for the report and suggested fix. Backport of 02c07be95c47efaab9da7422c33ee76142f11336 from master.
2018-12-29[2.1.x] Added examples to HttpRequest.build_absolute_uri() docs.Adam Johnson
Backport of b71e3d635a5731ec02469822694d06d964007f9b from master.
2018-12-27[2.1.x] Updated OWASP Top 10 link to the latest version.Vedran Karačić
Backport of 293db9eb36e42e8ba976c2639800020d04b95deb from master.
2018-12-27[2.1.x] Fixed broken links to PyYAML page.CHI Cheng
Backport of b7dbd5ff68bb9d2235ca081c0bd0b8baa65f8c77 from master.
2018-12-24[2.1.x] Added import locations to contrib.postgres aggregates and validators ↵Marten Kenbeek
docs. Backport of 7a6dbbb655850bff56cd717a3bfa0975e200d15f from master.
2018-12-20[2.1.x] Fixed #30015 -- Ensured request body is properly consumed for ↵Konstantin Alekseev
keep-alive connections. Backport of b514dc14f4e1c364341f5931b354e83ef15ee12d and bbe28fa07658f00786dc1d91ee281b4daac22d07 from master.
2018-12-20[2.1.x] Removed unused imports in tests/test_runner/tests.py.Tim Graham
2018-12-17[2.1.x] Fixed #30023 -- Prevented SQLite schema alterations while foreign ↵Simon Charette
key checks are enabled. Prior to this change foreign key constraint references could be left pointing at tables dropped during operations simulating unsupported table alterations because of an unexpected failure to disable foreign key constraint checks. SQLite3 does not allow disabling such checks while in a transaction so they must be disabled beforehand. Thanks ezaquarii for the report and Carlton and Tim for the review. Backport of 315357ad25a6590e7f4564ec2e56a22132b09001 from master.
2018-12-12[2.1.x] Fixed #30036 -- Removed unused imports in pagination example.Carlton Gibson
Backport of a394289b58b1773c4959ed768fdb325c91b2b589 from master
2018-12-07[2.1.x] Fixed #29182 -- Fixed schema table alteration on SQLite 3.26+.Simon Charette
SQLite 3.26 repoints foreign key constraints on table renames even when foreign_keys pragma is off which breaks every operation that requires a table rebuild to simulate unsupported ALTER TABLE statements. The newly introduced legacy_alter_table pragma disables this behavior and restores the previous schema editor assumptions. Thanks Florian Apolloner, Christoph Trassl, Chris Lamb for the report and troubleshooting assistance. Backport of c8ffdbe514b55ff5c9a2b8cb8bbdf2d3978c188f from master.
2018-12-06[2.1.x] Fixed #29895 -- Doc'd why MySQL's atomic DDL statements don't work ↵Rodrigo
for atomic migrations. Backport of ad191d9e011f37d79a7f2df3da881b06539aaaea from master.
2018-12-05[2.1.x] Refs #30013 -- Fixed SchemaEditor.quote_value() test for mysqlclient ↵Tim Graham
1.3.14+. Backport of 734ce71824180740f2318750ae2436f4b60c30b1 from master.
2018-12-05[2.1.x] Fixed #30013 -- Fixed DatabaseOperations.last_executed_query() with ↵Tim Graham
mysqlclient 1.3.14+. Backport of 284b3221a2c17af5bfe2edbf851ac0a9901f91a0 from master.
2018-12-04[2.1.x] Added stub release notes for 2.1.5 release.Carlton Gibson
Backport of 196b420fcb0cbdd82970e2b9aea80251bde82056 from master
2018-12-03[2.1.x] Post-release version bump.Carlton Gibson
2018-12-03[2.1.x] Bumped version for 2.1.4 release.2.1.4Carlton Gibson
2018-12-03[2.1.x] Added release date for 2.1.4.Carlton Gibson
Backport of 346721a0389657e800ef917cfee063c1f49ae0b3 from master
2018-12-03[2.1.x] Fixed #29930 -- Allowed editing in admin with view-only inlines.Carlton Gibson
Co-authored-by: Tim Graham <timograham@gmail.com> Backport of 8245c99ee6032c2748ba46583d8cab15b2f9438e from master
2018-12-03[2.1.x] Added release date for 1.11.17.Carlton Gibson
Backport of 950112548e61098f442d37a8ded4ef9f83ff8fda from master
2018-11-29[2.1.x] Fixed #29991 -- Doc'd logger propogation for the default logging config.raratiru
Backport of 793a71b7be9970bee8cbac68985684628e99ad23 from master.
2018-11-28[2.1.x] Fixed #29929 -- Fixed admin view-only change form crash when using ↵Basil Dubyk
ModelAdmin.prepopulated_fields. Backport of 7d1123e5ada60963ba3c708a8932e57342278706 from master.
2018-11-28[2.1.x] Refs #28205 -- Corrected ModelAdmin.prepopulated_fields docs ↵Tim Graham
regarding when they're populated. Backport of 682cdf6cab8cb76ef1808df45631c39748052e13 from master.
2018-11-27[2.1.x] Fixed #29317 -- Doc'd filter argument in contrib.postgres aggregates.Tim Graham
Backport of 926fa7116fd633b69277c3ad9b3370ca45163231 from master.
2018-11-27[2.1.x] Corrected Aggregate docs to reflect that it accepts multiple ↵Simon Charette
expressions. Backport of 9a7d336c3866c5226ed11868be0234c7e2fa47fa from master.
2018-11-26[2.1.x] Updated docs for fast column creation with defaults in PostgreSQL 11.Damian Dimmich
Backport of 133e79399a0aeecaca7379dd79cc1cc3f8b5e7ae from master.
2018-11-25[2.1.x] Fixed typo in patch_logger() docstring.takaaki shimbo
Backport of 6275b50ac26ea6c026aa7b2aae9192f5792e8a94 from master
2018-11-23[2.1.x] Fixed typo in docs/topics/i18n/translation.txt.andreage
Backport of 78fc64578a8715b9812075bbebc829c1251c07fa from master
2018-11-20[2.1.x] Fixed #29849 -- Fixed keep-alive support in runserver.Florian Apolloner
Ticket #25619 changed the default protocol to HTTP/1.1 but did not properly implement keep-alive. As a "fix" keep-alive was disabled in ticket #28440 to prevent clients from hanging (they expect the server to send more data if the connection is not closed and there is no content length set). The combination of those two fixes resulted in yet another problem: HTTP/1.1 by default allows a client to assume that keep-alive is supported unless the server disables it via 'Connection: close' -- see RFC2616 8.1.2.1 for details on persistent connection negotiation. Now if the client receives a response from Django without 'Connection: close' and immediately sends a new request (on the same tcp connection) before our server closes the tcp connection, it will error out at some point because the connection does get closed a few milli seconds later. This patch fixes the mentioned issues by always sending 'Connection: close' if we cannot determine a content length. The code is inefficient in the sense that it does not allow for persistent connections when chunked responses are used, but that should not really cause any problems (Django does not generate those) and it only affects the development server anyways. Refs #25619, #28440. Regression in ac756f16c5bbbe544ad82a8f3ab2eac6cccdb62e. Backport of 934acf1126995f6e6ccba5947ec8f7561633c27f from master.
2018-11-17[2.1.x] Doc'd purpose of "Database backend API" backwards incompatible ↵Tim Graham
changes section. Backport of f436c82637dafa3a9abbd65a3be77bf7ad431213 from master.
2018-11-17[2.1.x] Refs #28814 -- Doc'd Python 3.7 compatibility in Django 1.11.x.Tim Graham
Backport of 2fd21a18584dc62cfad65cc112465ce68db5561a from master.
2018-11-16[2.1.x] Fixed #29959 -- Cached GEOS version in WKBWriter class.Claude Paroz
Regression in f185d929fa1c0caad8c03fccde899b647d7248c6. Backport of e7e55059027ae2f644c852e0ba60dc9307b425e1 from master.
2018-11-16[2.1.x] Removed release date for 2.0.10 and 1.11.17.Tim Graham
Backport of 97cec6f75d9d9b86892829f784e5e9dabfd1242a from master.
2018-11-15[2.1.x] Fixed #29864 -- Added link targets for low-level cache API.Prabakaran Kumaresshan
Backport of 8250538bfc9792c87cd42c27fa778f12e14350cb from master.
2018-11-15[2.1.x] Fixed #29952 -- Lowercased all passwords in contrib.auth's ↵Mathew Payne
auth/common-passwords.txt.gz. Backport of 26bb2611a567d43bc258aa7806eef766b7adcfe5 from master.
2018-11-14[2.1.x] Fixed typo in docs/ref/middleware.txt.Daniel Musketa
Backport of ca2856fb6297378c40622521d21539097c28eb0b from master.
2018-11-13[2.1.x] Fixed #29940 -- Recommended using the ORM rather than raw SQL.Katie McLaughlin
Backport of 9886dffdf45873a5ce427eded9277f37d4a30ef1 from master.
2018-11-12[2.1.x] Doc'd PermissionsMixin's usage of User.is_active and is_superuser.Tobias Bengfort
Backport of b1243a55a5916ed08a726b011bc05d40f717ef40 from master.
2018-11-12[2.1.x] Corrected docs regarding RegisterLookupMixin subclasses.Sergey Fedoseev
Backport of d48662122c7f539efca3949f4d9fea82416fbb1a from master.
2018-11-10[2.1.x] Updated some links to https and new locations.Mads Jensen
Backport of 961f8e99850ecb334d63a943b53b3cb1180ef538 from master.
2018-11-10[2.1.x] Removed dead links to botbot.me.Tim Graham
Backport of d293d68f6a6d3b8006c919c54729a724835321a4 from master.
2018-11-10[2.1.x] Removed obsolete and flaky GeoIP tests.Tom Forbes
Backport of 8f90593e6f8197148c8f86e598bfef6792f3f4bf from master.
2018-11-09[2.1.x] Fixed #29941 -- Fixed missing variable in ↵Tim Graham
docs/ref/contrib/contenttypes.txt. Regression in b47552b445547e60cc89213f79e02333cb63f270. Backport of 0b98e8fdad48a33aa34cc84d9bf0c3cd41c56ec6 from master.
2018-11-09[2.1.x] Fixed signing.dumps() example for Python 3.minusf
Backport of 545dae24fd01a9165d869a13aad04f5b88d626c1 from master
2018-11-08[2.1.x] Fixed #29933 -- Fixed typo in docs/intro/contributing.txt.mentix02
Backport of 413583e2e27af89e3ffaa4f8e34ee018fb77173c from master.
2018-11-03[2.1.x] Fixed inconsistent indentation in docs/ref/contrib/auth.txt.Tobias Bengfort
Backport of 9a63d840ffaac291afd443eec89ac9c9d04b49dd from master.