summaryrefslogtreecommitdiff
path: root/docs
AgeCommit message (Collapse)Author
2015-10-19[1.9.x] Fixed #25563 -- Cached deferred models in their proxied model's ↵Simon Charette
_meta.apps. Thanks to Andriy Sokolovskiy for the report and Tim Graham for the review. Backport of 3db3ab71e97d34260057a6f51d4b2f72da30dc8d from master
2015-10-17[1.9.x] Fixed #25517 -- Made Concat function idempotent on SQLite.Josh Smeaton
Backport of 6c95b134e9b2d5641c123551c080305e90e6a89d from master
2015-10-14[1.9.x] Forwardported 1.8.6 release note.Tim Graham
2015-10-14[1.9.x] Fixed #25506 -- Allowed filtering over a RawSQL annotation.Antoine Catton
Co-Authored-By: Gavin Wahl <gwahl@fusionbox.com> Backport of b971c1cd78a0bf831c1c30080089c4a384d037a0 from master
2015-10-14[1.9.x] Fixed #25535 -- Made ForeignObject checks less strict.Antoine Catton
Check that the foreign object `from_fields` are a subset of any unique constraints on the foreign model. Backport of 80dac8c33e7f6f22577e4346f44e4c5ee89b648c and c7aff31397a7228f6ac2e33c10ebdf36c4b7a9b7 from master
2015-10-13[1.9.x] Fixed quotes in GeoQuerySet aggregates examples.Sergey Fedoseev
Backport of 92c1ae1b0b9955a511c19e07921c10126b6faa54 from master
2015-10-13[1.9.x] Fixed typo in docs/ref/models/relations.txt.Tim Graham
Backport of f6b9e6bf4fab731a28489ec735cc330255ef03ab from master
2015-10-12[1.9.x] Added precision about GeoJSON field outputsClaude Paroz
Backport of 533c1099 from master.
2015-10-11[1.9.x] Fixed #25498 -- Documented ST_Distance/ST_Distance_Sphere differenceClaude Paroz
Thanks Bibhas Debnath for the report and Tim Graham for the review. Backport of 617b1a21f from master.
2015-10-07[1.9.x] Refs #25527 -- Removed redundant doc heading link that leads to a ↵Tim Graham
warning when generating PDF. Backport of 25f287f6b2f677213605364c33bb37f33feac953 from master
2015-10-07[1.9.x] Added some function links in translation docsClaude Paroz
Backport of 9a6fc9606c from master.
2015-10-06[1.9.x] Fixed #25503 -- Fixed system check crash on ForeignKey to abstract ↵Mariusz Felisiak
model. Backport of 914167abf19d16ac97c0f1f6ae1b08cb377c8f3a from master
2015-10-06[1.9.x] Fixed #25515 -- Documented the return value of BaseCommand.handle()Tim Graham
Backport of 3f766d44c5ea000ecf47829ca565b1921dab2ac1 from master
2015-10-06[1.9.x] Fixed #25516 -- Documented that parallel test excution doesn't work ↵Tim Graham
with pdb. Backport of cb15ceb5555de0799210a0ce37e744fd4f284b36 from master
2015-10-06[1.9.x] Refs #12118 -- Allowed "mode=memory" in SQLite test database names.Riccardo Magliocchetti
Backport of 3543fec3b739864c52de0a116dde3b0e5e885799 from master
2015-10-05[1.9.x] Fixed #25496 -- Made ModelChoiceField respect prefetch_related().Tim Graham
Backport of 6afa6818fcf25665bbf61f0921c8c8c6fa8f223e from master
2015-10-05[1.9.x] Fixed #25502 -- Added supported Python versions in 1.7, 1.8 release ↵Tim Graham
notes. Backport of b215a3ab63d1c34746855594656e988561484fe3 from master
2015-10-03[1.9.x] Added stub release notes for 1.8.6.Tim Graham
Backport of 58195f0b16999245ada6bd010b71c9c5352ae608 from master
2015-10-03[1.9.x] Added release date for 1.8.5.Tim Graham
Backport of 2eb5589a721488b592ed05d6790d9ad7d2b9dafd from master
2015-10-03[1.9.x] Fixed #25389 -- Fixed pickling a SimpleLazyObject wrapping a model.Ben Kraft
Pickling a `SimpleLazyObject` wrapping a model did not work correctly; in particular it did not add the `_django_version` attribute added in 42736ac8. Now it will handle this and other custom `__reduce__` methods correctly. Backport of 35355a4ffedb2aeed52d5fe3034380ffc6a438db from master
2015-10-03[1.9.x] Fixed #25398 -- Revised instances of os.path.join()Andrew Artajos
Replaced occurrences of os.path.join(BASE_DIR, 'folder/subfolder') to os.path.join(BASE_DIR, 'folder', 'subfolder') Backport of d2ef521a53 from master.
2015-10-02[1.9.x] Fixed #25481 -- Added field.help_text to "Looping over a form's ↵John Moses
fields" docs. Backport of ac09d22f7913ff09f98001ff51b783932290e378 from master
2015-10-02[1.9.x] Fixed link to the MySQL Connector/Python Django Backend documentation.Nick Williams
Backport of 3f342d74e9196da475dd312cf43eaffec13af964 from master
2015-10-01[1.9.x] Made a couple tutorial corrections for Django 1.9.Tim Graham
Backport of 8a5a002f2f94eec2a6d01e3004c3e6a2ddccd432 from master
2015-10-01[1.9.x] Removed an old note (Django 1.4-era) from the tutorial.Tim Graham
Backport of 1515b6a8b375612addc0019d537fcbf0349d942c from master
2015-09-30[1.9.x] Refs #24505 -- Forwardported 1.8.5 release note.Tim Graham
Backport of 061801e3dfb3f88550cdaeef1a6dd1c24c13d53d from master
2015-09-30[1.9.x] Clarified that Model.delete() isn't called as a result of a ↵David Sanders
cascading delete. Backport of 5c6316dc3467fd7b669bea9157f591ac5fd00ec4 from master
2015-09-29[1.9.x] Made cosmetic cleanups to docs/ref/contrib/contenttypes.txtTim Graham
Backport of b47552b445547e60cc89213f79e02333cb63f270 from master
2015-09-29[1.9.x] Fixed #25466 -- Added backwards compatibility aliases for ↵Tim Graham
LoaderOrigin and StringOrigin. Thanks Simon Charette for the DeprecationInstanceCheck class. Backport of 8d1a001ef6dcbbe8053da05cdb3ec99965b0953f from master
2015-09-29[1.9.x] Improved "“standalone” Django usage" example.David Sanders
Backport of ae9f9dc37f39afeaa45c646cf6eef81beffcf021 from master
2015-09-29[1.9.x] Fixed #25376 -- Required virtualenv in installation instructions.Tim Graham
Thanks Anjul Tyagi for some of the draft text. Backport of a523d94b4581ec41c86f5bbaaffdf5bb6b819c2e from master
2015-09-28[1.9.x] Documented auth's login/logout function parameters.Tim Graham
Backport of c14b6b52ff131db263bf06a02f903a73390975da from master
2015-09-28[1.9.x] Fixed #24323 -- Documented @admin.register can't be used with ↵Tim Graham
super(XXXAdmin in __init__(). Backport of 4cd2bdae07ac5561fdae0eede58c68df4dfcc780 from master
2015-09-26[1.9.x] Fixed #25421 -- Fixed test --keepdb option on Oracle.Mariusz Felisiak
Backport of a3a6def867c61d24dfded6cbfef7f820409dc739 from master
2015-09-25[1.9.x] Corrected use of 'affect' vs 'effect' in docs.Rob Hudson
Backport of 021782d22b80ea57fdd5e040add58adeafaedc55 from master
2015-09-25[1.9.x] Fixed #25462 -- Removed Model.__unicode__() in favor of ↵Tim Graham
@python_2_unicode_compatible. Backport of de99f558d806a2a1b30072ec95bc44d412d80dab from master
2015-09-25[1.9.x] Fixed #25451 -- Added advice about organizing tests.Tim Graham
Backport of 53e89ce2e71411ff9d1c3fd6f2b10d052a4aeace from master
2015-09-24[1.9.x] Fixed #25455 -- Optimized dictfetchall() example.Tim Graham
Thanks aklim007 for the suggestion. Backport of 361f60479d1890e8144fc254d7389a67b35725e9 from master
2015-09-24[1.9.x] Bumped latest Python 2.7 release in docs/ref/databases.txt.Tim Graham
Backport of ce531f7ad783facc5799cf43b59b5ce053aa5d9e from master
2015-09-24[1.9.x] Fixed typo in 1.9 release notes.Samir Shah
Backport of dfa81bb1df81637be333e9a67120a1670703a941 from master
2015-09-23[1.9.x] Bumped django_next_version in docs config.Tim Graham
2015-09-23Updated man page for Django 1.9 alpha.Tim Graham
2015-09-23Fixed #25386 -- Warned about differences between Engine and DjangoTemplates.Tim Graham
2015-09-23Added some more links in form field docsClaude Paroz
2015-09-23Fixed typo in docs/topics/db/examples/one_to_one.txtDon Kirkby
2015-09-23Refs #25373 -- Doc'd logging of exceptions during {% include %} rendering.Tim Graham
2015-09-23Refs #24526 -- Made the django logger handle INFO messages.Tim Graham
Without an explicit 'level', only messages at WARNING or higher are handled. This makes the config consistent with the docs which say, "The django catch-all logger sends all messages at the INFO level or higher to the console."
2015-09-23Refs #21927 -- Added examples to urls.include() changes in 1.9 release notes.Tim Graham
2015-09-22Fixed #25447 -- Emphasized the need to restart dev server when adding ↵Henry Jordan
template tags.
2015-09-22Refs #24115 -- Added docs for password updates on bcrypt rounds change.Tim Graham