summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2016-11-06Fixed typo in docs/ref/middleware.txt.Tim Graham
2016-11-06Fixed #27133 -- Doc'd how to provide initial data with migrations.Krzysztof Żuraw
2016-11-06Added myself to the Ops team. (#7518)Tobias McNulty
2016-11-05Fixed #27346 -- Stopped setting the Content-Length header in ↵Adam Malinowski
ConditionalGetMiddleware.
2016-11-05Adjusted documentation of migration related commands.Krzysztof Gogolewski
2016-11-05Readded 'pytz' to spelling wordlist.Rivo Laks
2016-11-05Removed myself from the ops team.Aymeric Augustin
2016-11-04Updated "fork Django on GitHub" link.Tim Graham
2016-11-04Fixed typo in docs/topics/testing/tools.txt.Pamela McA'Nulty
2016-11-03Fixed #27425 -- Removed obsolete "developers for hire" FAQ.Tim Graham
2016-11-01Added CVE-2016-9013,14 to the security release archive.Tim Graham
2016-11-01Fixed CVE-2016-9014 -- Validated Host header when DEBUG=True.Tim Graham
This is a security fix.
2016-11-01Fixed CVE-2016-9013 -- Generated a random database user password when ↵Marti Raudsepp
running tests on Oracle. This is a security fix.
2016-11-01Added stub release notes for 1.9.11/1.8.16.Tim Graham
2016-11-01Fixed #27363 -- Replaced unsafe redirect in SessionMiddleware with ↵Andrew Nester
SuspiciousOperation.
2016-10-31Fixed #27400 -- Documented {% static %} encoding change in 1.10.Henry Dang
2016-10-31Updated docs/topics/db/queries.txt examples to use print() function.Timothy Allen
2016-10-31Fixed #27410 -- Clarified when static files is enabled in STATIC_ROOT docs.Tim Graham
2016-10-31Updated Oracle docs links to Oracle 12c.Mariusz Felisiak
2016-10-31Fixed #27063 -- Prevented i18n_patterns() from using too much of the URL as ↵Krzysztof Urbaniak
the language.
2016-10-31Updated by bio.Anssi Kääriäinen
2016-10-29Fixed #27382 -- Doc'd that ugettext_lazy() should be converted to text for ↵medmunds
non-Django code.
2016-10-28Fixed #27188 -- Allowed using unique=True with FileField.Michael Scott
Thanks Tim Graham for the initial patch.
2016-10-28Added require_ready argument to get_model methods.Aymeric Augustin
This allows bringing back the behavior of Django < 1.7. Also fixed the check for the app registry being ready in AppConfig.get_model(s), which was inconsistent with the equivalent check in Apps.get_model(s). That part is a backwards-incompatible change.
2016-10-28Modified readiness check in AppConfig.get_model(s).Aymeric Augustin
It was inconsistent with the equivalent check in Apps.get_model(s) because I made incorrect assumptions when I wrote that code and needlessly complicated readiness checks. This is a backwards-incompatible change.
2016-10-27Documented that cache keys are strings rather than bytes.Adam Chainz
2016-10-27Described PostgreSQL as more scalable than SQLite.mark-summerfield
2016-10-27Fixed #27327 -- Simplified time zone handling by requiring pytz.Tim Graham
2016-10-27Updated "running the tests" to use 'pip install -e'.Tim Graham
2016-10-26Fixed #27299 -- Documented the Widget.use_required_attribute() method.Jon Dufresne
Thanks Tim Graham for the review and edits.
2016-10-26Clarified when the post_migrate signal is sent during migrate.Thomas Güttler
2016-10-25Reverted "Fixed #26401 -- Added BaseAuthConfig to use auth without migrations."Jon Dufresne
This reverts commit 1ec1633cb294d8ce2a65ece6b56c258483596fba as it doesn't handle ContentType's auth.Permission dependency. Thus, it doesn't allow auth without migrations.
2016-10-25Fixed #27385 -- Fixed QuerySet.bulk_create() on PostgreSQL when the number ↵David Barragán Merino
of objects is a multiple plus one of batch_size.
2016-10-25Replaced Outputting PDF's "Further Resources" with a link to Django Packages.Tim Graham
2016-10-25Updated postgresql.org links to https and made them canonical.Marti Raudsepp
2016-10-24Fixed #26357 -- Allowed admin popups to work on links added after page load.Julian Andrews
2016-10-24Documented how to request CVE IDs.Tim Graham
2016-10-22Fixed #27374 -- Made JavaScriptCatalog respect the packages argument.Alvin Lindstam
2016-10-19Fixed #27361 -- Used "from django import forms" in forms api docs.Zach Borboa
2016-10-18Fixed #27352 -- Doc'd social media fingerprinting consideration with login's ↵Markus Holtermann
redirect_authenticated_user.
2016-10-17Fixed ModelAdmin.get_max_num() example if obj is None.Riccardo Magliocchetti
2016-10-15Updated security policy according to current practices.Tim Graham
Also added security release date notifications to django-announce.
2016-10-14Fixed #27349 -- Doc'd the CSRF_FAILURE_VIEW setting in view topic guide.David D Lowe
2016-10-14Fixed #27345 -- Stopped setting the Date header in ConditionalGetMiddleware.Tim Graham
2016-10-14Refs #19705 -- Documented decorator ordering with @condition().Kevin Christopher Henry
2016-10-13Refs #19705 -- Made GZipMiddleware make ETags weak.Kevin Christopher Henry
Django's conditional request processing can now produce 304 Not Modified responses for content that is subject to compression.
2016-10-13Fixed #27200 -- Provided makemigration's allow_migrate() with model_name.Tim Graham
2016-10-13Fixed #27342 -- Corrected QuerySet.update_or_create() example.Tim Graham
2016-10-11Fixed typo in docs/ref/checks.txt.Nick Pope
2016-10-10Doc'd the need to provide initial for formset submissions.Tim Graham