summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
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.
2018-11-02[2.1.x] Fixed typo in docs/internals/contributing/writing-code/coding-style.txt.Mice Pápai
Backport of 5a2dd5ec5330938e9afb77faf6ca89abf39c018c from master
2018-11-01[2.1.x] Updated expected date for 2.1.4 release.Carlton Gibson
Backport of 7e5cb4633020e3943a88d9752f719381b10d7de1 from master
2018-11-01[2.1.x] Fixed #27994 -- Documented ManifestFilesMixin.Theofanis Despoudis
Backport of 084536a9bec1237fabd63fe69a6c17806c9cde53 from master.
2018-11-01[2.1.x] Added stub release notes for 2.1.4 release.Carlton Gibson
Backport of 74ddd0e83b039268e2988b777753cf01e417ccc1 from master
2018-11-01[2.1.x] Post-release version bump.Carlton Gibson
2018-11-01[2.1.x] Bumped version for 2.1.3 release.2.1.3Carlton Gibson
2018-11-01[2.1.x] Added release date for 2.1.3 release.Carlton Gibson
Backport of eb13e6cb9aeb64d042cace2a3d02c439411253f0 from master
2018-10-31[2.1.x] Fixed #22390 -- Doc'd possible server restart required in tutorial 6.Tim Graham
Backport of d8f83531c2dc40a7add4afc5b917c1e5a7452be8 from master.
2018-10-31[2.1.x] Fixed #29890 -- Fixed FileSystemStorage crash if concurrent saves ↵Tim Graham
try to create the same directory. Regression in 632c4ffd9cb1da273303bcd8005fff216506c795. Backport of 98ef3829e96ebc73d4d446f92465e671ff520d2b from master.
2018-10-28[2.1.x] Fixed #29896 -- Fixed incorrect Model.save() cache relation clearing ↵Tim Graham
for foreign keys that use to_field. Regression in ee49306176a2d2f1751cb890bd607d42c7c09196. Backport of f77fc56c9671a2e2498e3920d79e247e6de18c16 from master.
2018-10-25[2.1.x] Fixed #29827 -- Fixed reuse of test databases with --keepdb on MySQL.Sergey Fedoseev
Regression in e1253bc26facfa1d0fca161f43925e99c2591ced. Backport of 9a88c6dd6aa84a1b35e585faa0058a0996cc7ed7 from master.
2018-10-25[2.1.x] Fixed #29879 -- Added CSRF_COOKIE_HTTPONLY to CSRF AJAX docs.Mayank Singhal
Backport of 76b3367035889d87ffef7a52cd44d70e30537f6f from master
2018-10-24[2.1.x] Fixed F841 flake8 warning.Mariusz Felisiak
Backport of 641742528a8babbede92890bc0bef50a255c1bbb from master.
2018-10-24[2.1.x] Ignored flake8 W504 warnings.Mariusz Felisiak
W504 is mutually exclusive with W503 that we follow. Backport of 58d1e9aa8ab505912389e7cd019a6f21785ad4bf from master.
2018-10-23[2.1.x] Refs #29877 -- Made diveinto.org URLs HTTPS.Jon Dufresne
Backport of 136a900ef98a7b7261a124308c8c26370ff2d5e4 from master
2018-10-23[2.1.x] Fixed #29877 -- Replaced diveintopython3.net with diveinto.org/python3/.za
Backport of b0d716cbffdd66dd9108895d0524bef2530fc732 from master
2018-10-22[2.1.x] Fixed #29880 -- Fixed typo in docs/topics/auth/default.txt.Tim Graham
Backport of 043407ec7e6e659a69c2432319140b4a813928d2 from master.
2018-10-21[2.1.x] Removed "encoding" description in GIS tutorial.Atul Varma
An omission in 388165ade4219aeefac1e231c1d44c51a7b62829. Backport of 3deea61f266b8e5c7c6d70ba12e2b95050dfb557 from master
2018-10-19[2.1.x] Fixed #29774 -- Fixed django-admin shell hang on startup.Adam Allred
sys.stdin.read() blocks waiting for EOF in shell.py which will likely never come if the user provides input on stdin via the keyboard before the shell starts. Added check for a tty to skip reading stdin if it's not present. This still allows piping of code into the shell (which should have no TTY and should have an EOF) but also doesn't cause it to hang if multi-line input is provided. Backport of 4e78e389b16fbceb23d5236ee1650b213e71c968 from master.
2018-10-19[2.1.x] Fixed #29858 -- Clarified docs regarding CSRF token header name.Tim Graham
Backport of a29fce89845cc9ca2fa96d8880104726b75dfbd6 from master.