summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-10-22[1.7.x] Bump version number for bugfix release.1.7.1James Bennett
2014-10-22[1.7.x] Added release dates to release notes.Tim Graham
Backport of 9dc782b631 from master
2014-10-21[1.7.x] Fixed #23583 -- More selectively ignored static/media rootsClaude Paroz
Fixed a regression introduced by 28efafa24c. Thanks Michal Čihař for the report and initial patch, and Collin Anderson and Tim Graham for the reviews. Backport of 8b4cc9df9c from master.
2014-10-21[1.7.x] Fixed #21740 -- Allowed test client data to be an empty stringClaude Paroz
This fixes a regression introduced by 2a31d00933. Thanks tony-zhu for the report. Backport of f0bb3c98cc from master.
2014-10-20[1.7.x] Fixed a flake8 warning.Simon Charette
Backport of f6c208d95c from master
2014-10-20[1.7.x] Fixed #23629 -- Allowed autodetector to detect changes in Meta.db_table.Tianyi Wang
Thanks Naddiseo for reporting. Backport of 5732424bee from master
2014-10-20[1.7.x] Fixed #20609 -- Added instructions for using AnonymousUser with ↵Tim Graham
RequestFactory. Backport of a39df37049 from master
2014-10-19[1.7.x] Fixed a typo in urlencode documentation.wrwrwr
Backport of 62a53bdf11 from master
2014-10-18[1.7.x] Fixed #23676 -- Rearranged sentence; "by default" applies only to ↵Jon Dufresne
max length Backport of c1b9f99a81 from master
2014-10-17[1.7.x] Added 1.7.1 release notes for refs #23649.Tim Graham
Backport of 6ce6c77e03 from master
2014-10-17[1.7.x] Fixed #23649 -- Made Oracle test-db creation drop test-user earlier ↵Shai Berger
when needed Checked database destruction for ORA-29857, which happens when objects of some types are left over in an old test database (notably, such objects are created by the GIS backend). When this happens, we can resolve the issue by dropping the test-user (if we are allowed to). An alternative approach, to just switch the order of creation (so that, if the test user exists and can be dropped, it is always dropped before the tablespace) was considered; but since the user creation depends on the tablespace, this would necessitate separating the dropping of the user from its creation -- a change I am reluctant to make. Thanks Josh Smeaton and Tim Graham for reviews. Backport of 2e1ed5f33c from master
2014-10-16[1.7.x] Fixed some intersphinx references.Tim Graham
Backport of babbf18999 from master
2014-10-16[1.7.x] Fixed #23667 -- Incorrect settings reference for language cookie.Tim Graham
Thanks jamesbeith for the report. Backport of bedd439297 from master
2014-10-17[1.7.x] Fixed #23615 -- Validate that a Model instance's "check" attribute ↵Rigel Di Scala
is a method. The "check" name is a reserved word used by Django's check framework, and cannot be redefined as something else other than a method, or the check framework will raise an error. This change amends the django.core.checks.model_check.check_all_models() function, so that it verifies that a model instance's attribute "check" is actually a method. This new check is assigned the id "models.E020". Conflicts: docs/ref/checks.txt Backport of a5c77417a6 from master
2014-10-16[1.7.x] Fixed #12008 -- Clarified relationship between template blocks and ↵mcgeeco
includes. Thanks Daniele Procida for suggested wording. Backport of 80b8d3bee0 from master
2014-10-15[1.7.x] Fixed pep8 in docs/topics/logging.txtIan Lee
Backport of 947af46db3 from master
2014-10-15[1.7.x] Fixed #23651 -- Isolated non-existent fixture testsClaude Paroz
Previous versions of the tests were buggy, as initial_data.json did exist and the test wasn't failing. It was finally failing on Python 3.4.2. Thanks Raphaël Hertzog for the report (and Debian bug #765117 contributors). Backport of 7a893ee771 from master.
2014-10-14[1.7.x] Adapted invalid cookie test to all Python versionsClaude Paroz
Refs #23638. Older Python versions are less strict when parsing invalid cookie content. The test just has to ensure Django doesn't crash.
2014-10-13[1.7.x] Fixed #23638 -- Prevented crash while parsing invalid cookie contentClaude Paroz
Thanks Philip Gatt for the report and Tim Graham for the review. Backport of 59d487e7fc from master.
2014-10-12[1.7.x] Fixed #23063 -- Convert \n and \r to \r\n when using the SMTP ↵Florian Apolloner
backend as per RFC. Backport of 8d789449c7861b8cf8b10d244f26d9d354989aaf from master.
2014-10-12[1.7.x] Fixed #23639 -- Fixed doc error in RegexValidator.regexDori
Thanks to @claudep for the report and the original patch. Backport of c48a29a02a457cfdb1cff11009401459ba24e870 from master.
2014-10-10[1.7.x] Fixed #23631 -- Removed outdated note on MySQL timezone support.Tim Graham
Thanks marfire for the report. Backport of 9db3653670 from master
2014-10-10[1.7.x] Fixed #23616 - Fixed generic relations in ModelAdmin.list_filter.Konrad Świat
Thanks ranjur for reporting bug, timgraham for review, and collinanderson for contributing tips. Backport of 06b11b617e from master
2014-10-09[1.7.x] Fixed #23609 -- Fixed IntegrityError that prevented altering a NULL ↵Markus Holtermann
column into a NOT NULL one due to existing rows Thanks to Simon Charette, Loic Bistuer and Tim Graham for the review. Backport of f633ba778d from master
2014-10-09[1.7.x] Fixed #23365 -- Added support for timezone-aware datetimes to ↵Rudy Mutter
migrations. Backport of a407b846b4 from master
2014-10-08[1.7.x] Fixed #23333 -- Made urlsafe_base64_decode() return proper type on ↵Ian Foote
Python 3. Backport of 03d89168a2 from master
2014-10-08[1.7.x] Fixed #23587 -- Clarified admin template overriding in tutorial 2.Tim Graham
Thanks Petrus van Bork for the report. Backport of e949f4435f from master
2014-10-08[1.7.x] Fixed #23611 -- update_or_create failing from a related managerAndré Ericson
Added update_or_create to RelatedManager, ManyRelatedManager and GenericRelatedObjectManager. Added missing get_or_create to GenericRelatedObjectManager. Conflicts: tests/generic_relations/tests.py tests/get_or_create/tests.py Backport of ed37f7e979 from master
2014-10-06[1.7.x] Fixed #23607 -- Typo in docs/ref/contrib/staticfiles.txt.Tim Graham
Thanks Rolandde for the report. Backport of 87eedfff44 from master
2014-10-06[1.7.x] Fixed #23593 -- Fixed crash in AdminEmailHandler with non-ASCII ↵Tim Graham
characters in request. Thanks edevil for the report and Simon Charette for review. Backport of 9dff5ce7c7 from master
2014-10-06[1.7.x] Fixed #23601 -- Ensured view exists in URLconf before importing it ↵Markus Holtermann
in admindocs. Backport of 2f16ff5a6c from master
2014-10-06[1.7.X] Fixed #23602 -- Add comment on get_absolute_url regarding user inputCarl Meyer
Backport of 04bd84786d39b8a17620dfb3b354599d8d95417b from master.
2014-10-07[1.7.x] Fixed #23594 -- Fixed deepcopy on ErrorList.Loic Bistuer
Thanks Troy Grosfield for the report and Tim Graham for the tests. Backport of ec2fd02bb3 from master
2014-10-06[1.7.x] Updated links in admin docs to use :ref:Kostochko Dmitriy
per Sphinx docs: "Using ref is advised over standard reStructuredText links to sections because it works across files, when section headings are changed, and for all builders that support cross-references. Backport of 13409b932a from master
2014-10-06[1.7.x] Fixed #23604 -- Allowed related m2m fields to be references in the ↵Emmanuelle Delescolle
admin. Thanks Simon Charette for review. Backport of a24cf21722 from master
2014-10-06[1.7.x] Fixed #23597 -- Clarified the manager that ↵Ismail Badawi
{Single,Multiple}ObjectMixin.model uses. Backport of e501d4c505 from master
2014-10-04[1.7.x] Revert "Improved AppRegistryNotReady message."Tim Graham
This reverts commit 154f5f0de108f428de2d5f488e0264f4459a4b66. Aymeric: "I chose not to talk about django.setup() here on purpose. This will hardly always be the correct solution." Backport of 8121860be4 from master
2014-10-04[1.7.x] Improved AppRegistryNotReady message.Collin Anderson
Backport of 6fa9fa91a5 from master
2014-10-04[1.7.x] Made minor typographic correction to SECRET_KEY docs.Erik Romijn
Backport of 2bb00b0b0b5232aff806c8a9b3f1126c1cf79221 from master.
2014-10-04[1.7.x] Fixed #22310 -- Documented exact usage of SECRET_KEYErik Romijn
Backport of 4ad57bbe31bc1813264824111de2f9f74dbda0d6 from master.
2014-10-02[1.7.x] Documented how to rename get_query_set if you are a library authorLuke Plant
Backport of ca139bbfdf48bf59b0918a7d675cdc5d4ae60957 from master
2014-10-01[1.7.x] Added flat=False to signature of QuerySet.values_list()jnothman
Backport of 20f868bc5a from master
2014-10-01[1.7.x] Fixed #23578 -- Changed examples in docs to use patternsAlasdair Nicol
2014-09-30[1.7.x] Updated translations from TransifexClaude Paroz
2014-09-29[1.7.x] Required numpy < 1.9 for tests; refs #23489.Tim Graham
2014-09-29[1.7.x] Fixed #17638 -- Added crosslinks between topic and reference guides.Duane Hilton
Thanks oinopion for the suggestion and jarus for the initial patch. Backport of 054bdfeff1 from master
2014-09-29[1.7.x] Fixed typo in docs/topics/db/managers.txtGreg Brown
Backport of 9e8658db51 from master
2014-09-27[1.7.x] Fixed #23560 -- Fixed MigrationWrite to handle builtin types without ↵Loic Bistuer
imports. Thanks Tim Graham for the review. Backport of b23d47412c from master
2014-09-26[1.7.X] How many is two?Carl Meyer
2014-09-26[1.7.X] Fixed #23561 -- Corrected a security doc example that requires an ↵Carl Meyer
unquoted HTML attribute. Thanks "djbug" for the report.