summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2015-11-24[1.7.x] Added release date for 1.7.11 release.Tim Graham
2015-11-16[1.7.x] Fixed a settings leak possibility in the date template filter.Florian Apolloner
This is a security fix.
2015-11-16[1.7.x] Refs #23751 -- Added some unicode characters to the latex preamble.Tim Graham
Thanks Graham Wideman for the patch. Backport of a80d70dd10f3c7d483579734e524c94c62832070 from master
2015-11-16[1.7.x] Fixed #23751 -- Fixed code snippet formatting in docs PDF.Tim Graham
Thanks Graham Wideman for the patch. Backport of e48a5b5a03181b3ada6183595eb6e1c599a9657a from master
2015-11-11[1.7.x] Fixed #25693 -- Prevented data loss with Prefetch and ManyToManyField.Ian Foote
Thanks to Jamie Matthews for finding and explaining the bug. Backport of 4608573788c04fc047da42b4b7b48fdee8136ad3 from master
2015-10-29[1.7.x] Fixed #23985 -- Documented a backwards incompatible change in ↵Tim Graham
URLValidator. Backport of 8c5b8018f69226389a1373523c41cd37883c9556 from master
2015-10-26[1.7.x] Documented Python 3.5 support for Django 1.8.Tim Graham
Backport of d27085b02d58ecf8b72e7189b6a5feaf634ec977 from stable/1.8.x
2015-10-02[1.7.x] Fixed link to the MySQL Connector/Python Django Backend documentation.Nick Williams
Backport of 3f342d74e9196da475dd312cf43eaffec13af964 from master
2015-09-28[1.7.x] Documented auth's login/logout function parameters.Tim Graham
Backport of c14b6b52ff131db263bf06a02f903a73390975da from master
2015-09-23[1.7.x] Refs #24361 -- Corrected documented level of the 'django' logger.Tim Graham
The logger doesn't define an explicit level, therefore it defaults to WARNING. Backport of 4a06a904dcd27388ec9a3cfb2bc8a8421bb44816 from stable/1.8.x
2015-09-05[1.7.x] Added default value for default kwargs for QueryDict.David Sanders
Backport of 48c420d99209b147b58d7b873d1b54f76249c8dc from master
2015-09-04[1.7.x] Refs #25144 -- Revised deprecation timeline: migrations won't become ↵Tim Graham
compulsory. Backport of e133b55943f26e87cff5b22215a776a9ce3fc6f3 from master
2015-08-19[1.7.x] Fixed style issues in testing docsMarkus Holtermann
Backport of f33607ce0b744794f6ceafa1dddffbcb32e90978 from master
2015-08-18[1.7.x] Fixed DoS possiblity in contrib.auth.views.logout()Tim Graham
Refs #20936 -- When logging out/ending a session, don't create a new, empty session. Previously, when logging out, the existing session was overwritten by a new sessionid instead of deleting the session altogether. This behavior added overhead by creating a new session record in whichever backend was in use: db, cache, etc. This extra session is unnecessary at the time since no session data is meant to be preserved when explicitly logging out. Backport of 393c0e24223c701edeb8ce7dc9d0f852f0c081ad, 088579638b160f3716dc81d194be70c72743593f, and 2dee853ed4def42b7ef1b3b472b395055543cc00 from master Thanks Florian Apolloner and Carl Meyer for review. This is a security fix.
2015-08-18[1.7.x] Added stub release notes for security releases.Tim Graham
2015-08-11[1.7.x] Fixed typo in docs/ref/contrib/gis/geoquerysets.txtTim Graham
Backport of 56ed80ac2a7dac6dc26754f7fe95941e8a6f124e from master
2015-08-04[1.7.x] Fixed #25224 -- Fixed typo in docs/ref/contrib/flatpages.txtTim Graham
Backport of 28cb272a7279e6dfc4d5c53838ebf7343c3e66b5 from master
2015-07-30[1.7.x] Fixed #25199 -- Fixed dead link to HTMLdoc.Tim Graham
Backport of e176de25127a2750ea1c6a705b2c0983b5782b41 from master
2015-07-27[1.7.x] Fixed typo in docs/ref/middleware.txtjorgecarleitao
Backport of 7c642cafbb9e9ab1ba3ee7bb3d8fe1c0a58e06e8 from master
2015-07-20[1.7.x] Fixed signature of ModelAdmin.get_paginator() in docs.Ali Vakilzade
Backport of ecf4ed246ae192f8d381b799b921a892fd7afa85 from master
2015-07-14[1.7.x] Added 1.4.22 release notes.Tim Graham
Backport of 427a49f9e996d5d7712472ce287b80857086ee02 from master
2015-07-08[1.7.x] Prevented newlines from being accepted in some validators.Tim Graham
This is a security fix; disclosure to follow shortly. Thanks to Sjoerd Job Postmus for the report and draft patch.
2015-07-08[1.7.x] Fixed #19324 -- Avoided creating a session record when loading the ↵Carl Meyer
session. The session record is now only created if/when the session is modified. This prevents a potential DoS via creation of many empty session records. This is a security fix; disclosure to follow shortly.
2015-07-08[1.7.x] Added security release note stubs.Tim Graham
2015-07-08[1.7.x] Corrected example code for get_query_set upgrade in 1.6 release notesLuke Plant
The conditional setting of `get_query_set` is required for correct behaviour if running Django 1.8. The full gory details are here: http://lukeplant.me.uk/blog/posts/handling-django%27s-get_query_set-rename-is-hard/ Backport of f87e552d9842ff9591a9c51ebdb5f96e4dd54b00 from master
2015-06-17[1.7.x] Corrected Python version support info in docs/topics/install.txtTim Graham
2015-06-09[1.7.x] Fixed #24903 -- Fixed assertRaisesMessage on Python 2.7.10.Tim Graham
A regression found in in Python 2.7.10 rc1 wasn't reverted for the final release: https://bugs.python.org/issue24134 Backport of two commits from master: * c2bc1cefdcbbf074408f4a4cace88b315cf9d652 * e89c3a46035e9fe17c373a6c9cd63b9fd631d596
2015-06-09[1.7.x] Fixed import in docs/ref/contrib/syndication.txtargaen
Backport of 1725d009918e7d37390d5abd34034f3defca5fc3 from master
2015-05-28[1.7.x] Fixed #24817 -- Prevented loss of null info in MySQL field renaming.Andriy Sokolovskiy
Backport of 80ad5472ce4b6ba6e94227422d0727371e97cdf0 from master
2015-05-22[1.7.x] Fixed mistakes in docs/topics/forms/formsets.txt examples.I am Clinton
Backport of 9c8a2ab81db1fa999862034d9e8e9e1d091a72e5 from master
2015-05-20[1.7.x] Fixed typo in docs/ref/contrib/admin/index.txtlatyas(懒)
Backport of 8b106cfaa07dc04ad27a1a90c1eb03af80111695 from master
2015-05-19Reverted "[1.7.x] Made minor edits to docs/intro/tutorial01.text"Tim Graham
This reverts commit ba4237c3b31906aa7cf1c2ec02751b878c962c53. Claude asked that these fixes not be backported as they affect translations.
2015-05-19[1.7.x] Made minor edits to docs/intro/tutorial01.textI am Clinton
Backport of f3b51f51931d42cbba8a18e34d0aaee1b2f085bc from master
2015-05-18[1.7.x] Fixed typos in docs/ref/request-response.txtI am Clinton
Backport of e4f0e5a981e1965bd6b6b5d51f87499fa5f780b3 from master
2015-05-13[1.7.x] Fixed #24789 -- Fixed wrong positional args order in doc exampleCharles Dee Rice
Arguments shown in example code (signal, sender, instance) appeared to be the incorrect positional arguments for a post_save signal (which might start as: sender, instance, created), as documented: ​https://docs.djangoproject.com/en/1.8/ref/signals/#post-save Backport of 4f3c44424187de20d7f75fdde6624b9f683a9cf2 from master.
2015-05-12[1.7.x] Light edits to docs/topics/forms/index.txtI am Clinton
Backport of ec74dba2ab3f04fb828c0b926b49f63ec8486dd8 from master
2015-05-11[1.7.x] Fixed #24780 -- Removed outdated discussion of signals and custom users.Tim Graham
Backport of 8e86d9d3dfd68bebbfd1dd5006e0c25696855269 from master
2015-05-06[1.7.x] Fixed typos in docs/ref/contrib/gis/geoquerysets.txtSławomir Ehlert
Backport of 64ed8cdc9f2f7333b2a9fd6b318f520278c39293 from master
2015-05-05[1.7.x] Refs #21357 -- Added a working session example to the docs.Simon Baechler
2015-05-02[1.7.x] Fixed typo in translation import statementJosé Padilla
Backport of b0bd1f0e19857ed8c085f4621c5b7fcfde5ec040 from master
2015-05-01[1.7.x] Added dates to release notes.Tim Graham
Backport of 06aaed41a4a9b8da8aca5854a45e457c0b72210e from master
2015-04-29[1.7.x] Added translation.override() context manager to docs.Dmitry Medvinsky
Backport of cf34ee68f0d70cfbcba40524b5d1086ad94874e1 from master
2015-04-28[1.7.x] Fixed typo in docs/topics/i18n/translation.txtMounir
Backport of 25b52d04f6eace3b702adf7c6ab68daf1867c7e3 from master
2015-04-25[1.7.x] Fixed #24704 -- Clarified system check interaction with runserver.Tim Graham
Backport of 0f2e82b9ec9797147945a6f9a402b5ae0fb1d9f4 from master
2015-04-24[1.7.x] Added missing comma in LocMemCache example.Nik Nyby
Backport of 9d6914da668d9a38537d4c29e3601f06dd830477 from master
2015-04-24[1.7.x] Updated startproject MIDDLEWARE_CLASSES in docs.Daniel Harding
Backport of ad31bc0565914c4676bfb7c116c4be407a367be4 from master
2015-04-22[1.7.x] Fixed #24613 -- Added example to QuerySet.defer() documentationRichard Eames
Backport of dd99f57710bb4930561a6c049f54719af80850ec from master
2015-04-22[1.7.x] Fixed #24684 -- Typo in docs/topics/forms/modelforms.txtTim Graham
Backport of 1418f7530455abf3e6f743164ae15ee6b2566a3c from master
2015-04-20[1.7.x] Fixed #24674 -- Documented the correct NullBooleanField formfield.Simon Charette
Thanks to knbk for the report. Backport of 37e23c606031d5b34197e196fb6e6fed0137bb37 from master
2015-04-20[1.7.x] Fixed typo in docs/topics/class-based-views/intro.txtAnton
Backport of f5fbddf22f5e9b760e76ef35f104270026c60693 from master