summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2013-09-15[1.6.x] Add release notes and bump version number for security release.1.6b4James Bennett
2013-09-15[1.6.x] Ensure that passwords are never long enough for a DoS.Russell Keith-Magee
* Limit the password length to 4096 bytes * Password hashers will raise a ValueError * django.contrib.auth forms will fail validation * Document in release notes that this is a backwards incompatible change Thanks to Josh Wright for the report, and Donald Stufft for the patch. This is a security fix; disclosure to follow shortly. Backport of aae5a96d5754ad34e48b7f673ef2411a3bbc1015 from master.
2013-09-13[1.6.x] Fixed #21101 -- Updated urlize documentation to mention email addressesGoetz
Backport of 39b49fd339 from master
2013-09-13[1.6.x] Fixed #21100 -- Noted that Create/UpdateViews.fields is new in 1.6Tim Graham
Thanks AndrewIngram for the suggestion. Backport of ec89e1725a from master
2013-09-13[1.6.x] Fixed #21094 -- Updated reuseable apps tutorial to use pip for ↵Tim Graham
installation. Thanks ylb415 at gmail.com for the suggestion. Backport of e4aab1bb8d from master
2013-09-13[1.6.x] Documentation -- added instructions on working with pull requestsKevin Christopher Henry
Since non-core contributors are asked to review patches, instructions on working with pull requests were added to the Working with Git and GitHub page (based on the existing instructions in the core committers page). Backport of 990ce9aab9 from master
2013-09-13[1.6.x] Fixed #21095 -- Documented new requirement for dates lookups.Matt Austin
Day, month, and week_day lookups now require time zone definitions in the database. Backport of 9451d8d from master.
2013-09-12[1.6.x] Fixed a couple of typos in GeoDjango docs.Ramiro Morales
8b366a50f4 from master.
2013-09-11[1.6.x] Minor typo fix in django.contrib.auth.models.User docsPhaneendra Chiruvella
Backport of bd72c2acb6 from master
2013-09-11[1.6.x] Fixed #20887 -- Added a warning to GzipMiddleware in light of BREACH.Tim Graham
Thanks EvilDMP for the report and Russell Keith-Magee for the draft text. Backport of da843e7dba from master
2013-09-11[1.6.x] Documentation -- Improved description of cache argumentsKevin Christopher Henry
- Fixed some grammar and formatting mistakes - Added the type and default for CULL_FREQUENCY - Made the note on culling the entire cache more precise. (It's actually slower on the filesystem backend.) Backport of 5eca021d48 from master
2013-09-10[1.6.x] Added 1.4.7/1.5.3 release notesTim Graham
Backport of baec6a26dd from master
2013-09-10[1.6.x] Fixed broken sphinx reference to staticfiles.Tarjei Husøy
Backport of 751dc0a36b from master
2013-09-10[1.6.x] Took advantage of django.utils.six.moves.urllib.*.Aymeric Augustin
Backport of 6a6428a36 from master.
2013-09-10[1.6.x] Fixed #21075 - Improved doc for calling call_command with arguments.oz123
Backport of fca4c4826e from master
2013-09-09[1.6.x] Fixed spelling; refs #16895.Tim Graham
Thanks Panagiotis Issaris for the report. Backport of fb51c9a0f2 from master
2013-09-09[1.6.x] Fixed #16895 -- Warned about cost of QuerySet orderinge0ne
Thanks outofculture at gmail.com for the suggestion. Backport of cbf08c6b0c from master
2013-09-07[1.6.x] Fixed #21068 -- Added some docs for DiscoverRunnerTim Graham
Thanks jcd. Backport of e4b012feeb from master
2013-09-07Fixed #20409 -- Clarified how unique_for_date works when USE_TZ is set.Aymeric Augustin
2013-09-07[1.6.x] Fixed #20005 -- Documented that Oracle databases need execute ↵Tim Graham
permission on SYS.DBMS_LOB. Thanks jafula for the suggestion. Backport of a86ecc80a2 from master
2013-09-07[1.6.x] Fixed #20938 -- Added cached sessions note to deployment checklist.Tim Graham
Thanks mjtamlyn for the suggestion. Backport of 4e784f337c from master
2013-09-07[1.6.x] Fixed #16992 -- Added InnoDB warning regarding reuse of ↵Keith Edmiston
AUTO_INCREMENT values. Thanks kent at nsc.liu.se for the report. Backport of c54fa1a7bc from master
2013-09-06[1.6.x] Fixed a link in topics/testing/overview.txtTim Graham
Backport of 0c295a7718 from master
2013-09-06[1.6.x] Fixed #19295 -- Documented that CachedStaticFilesStorage isn't ↵Keith Edmiston
compatible with runserver --insecure. Backport of 028db97503 from master
2013-09-06[1.6.x] Fixed #20646 -- Clarified the use of AbstractBaseUser.REQUIRED_FIELDSTim Graham
Thanks craigbruce. Backport of db3de52807 from master
2013-09-06[1.6.x] Fixed instructions for running a subset of tests.Tim Graham
Backport of cd4068f359 from master
2013-09-05[1.6.x] Fixed #21035 -- Changed docs to treat the acronym SQL phonetically.Eric Boersma
The documentation and comments now all use 'an' to refer to the word SQL and not 'a'. Backport of 4d13cc56de from master
2013-09-05[1.6.x] Fixed #21047 -- Added CLA mesage on the new contributor advice docmicahhausler
Backport of 93dd31cadf from master
2013-09-05[1.6.x] Fixed #21044 -- Documented django.core.urlresolvers.Resolver404Tim Graham
Thanks Keryn Knight for the suggestion. Backport of eacf060e01 from master
2013-09-05[1.6.x] Fixed #20900 -- Documented RemoteUserBackend.authenticateTim Graham
Backport of 7b62b80693 from master
2013-09-04[1.6.x] Fixed #20958 -- Documented that GenericForeignKey fields can't be ↵Tim Graham
accessed in forms. Thanks marky1991. Backport of 533d1ab334 from master
2013-09-04[1.6.x] Clarified docs for some tags and filtersPaul C. Anagnostopoulos
Backport of 1ccdc08189 from master
2013-09-03[1.6.x] Fixed #20973 -- Document serving static files without ↵Loic Bistuer
django.contrib.staticfiles Backport of 7b04038a7f from master
2013-09-03[1.6.x] Replaced "not PY3" by "PY2", new in six 1.4.0.Aymeric Augustin
Conflicts: django/db/backends/oracle/base.py django/db/backends/sqlite3/base.py django/db/models/base.py Backport of 365c3e8b from master.
2013-09-03[1.6.x] Fixed #21002 -- Documented JSON session serialization requires ↵Tim Graham
string keys Thanks jeroen.pulles at redslider.net for the report. Backport of 3baf1d1042 from master
2013-09-02[1.6.x] Fixed #20998 -- Allow custom (de)serialization for GIS widgetsClaude Paroz
Thanks Mathieu Leplatre for the report and the initial patch. Backport of 102f26c92 from master.
2013-08-31[1.6.x] Made the doc about translating string literals in templates more ↵Loic Bistuer
prominent. Backport of 9885f07757 from master
2013-08-31[1.6.x] Fixed copy/paste error in measurement docsClaude Paroz
Backport of e87997dd33 frmo master.
2013-08-30[1.6.x] Fixed typo in docs/ref/models/options.txtTim Graham
Backport of a89c856a7a from master
2013-08-30[1.6.x] Fixed #20999 - Allow overriding formfield class with choices, ↵Carl Meyer
without subclass restrictions. Refs #18162. Thanks claudep and mjtamlyn for review. Backport of 7211741fc5d50425 from master.
2013-08-30[1.6.x] Fixed #20988 -- Added model meta option select_on_saveAnssi Kääriäinen
The option can be used to force pre 1.6 style SELECT on save behaviour. This is needed in case the database returns zero updated rows even if there is a matching row in the DB. One such case is PostgreSQL update trigger that returns NULL. Reviewed by Tim Graham. Refs #16649 Backport of e973ee6a9879969b8ae05bb7ff681172cc5386a5 from master Conflicts: django/db/models/options.py tests/basic/tests.py
2013-08-29[1.6.x] Added links to file docs.Jorge C. Leitão
Backport of d72f83c410 from master
2013-08-28[1.6.x] Minor spelling correction in ModelForms docsPhaneendra Chiruvella
Backport of 2fbf949760 from master
2013-08-27[1.6.x] Fixed #20981 -- Noted the default value of disable_existing_loggers.Krzysztof Jurewicz
Backport of 095643e691 from master
2013-08-27[1.6.x] Fixed typo in docs/topics/conditional-view-processing.txtJan Böcker
Backport of 5fd2c979cb from master
2013-08-27[1.6.x] Updated instructions for running contrib tests.Matt Robenolt
Backport of 08e7a64369 from master
2013-08-22[1.6.x] Typos introduced in 57c82f909b.Ramiro Morales
2013-08-22[1.6.x] Fixed #20922 -- Allowed customizing the serializer used by ↵Tim Graham
contrib.sessions Added settings.SESSION_SERIALIZER which is the import path of a serializer to use for sessions. Thanks apollo13, carljm, shaib, akaariai, charettes, and dstufft for reviews. Backport of b0ce6fe656 from master
2013-08-22[1.6.x] Documentation -- Clarified use of 'view' in test client introduction.Kevin Christopher Henry
Backport of 2e926b041c from master
2013-08-22[1.6.x] Fixed #20944 -- Removed inaccurate statement about View.dispatch().Marc Tamlyn
Backport of bac4d03ce6 from master