summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-04-21Added information on resolved security issues to release notes.Erik Romijn
2014-04-21Fixed queries that may return unexpected results on MySQL due to typecasting.Erik Romijn
This is a security fix; disclosure to follow shortly.
2014-04-21Prevented leaking the CSRF token through caching.Aymeric Augustin
This is a security fix. Disclosure will follow shortly.
2014-04-21Fixed a remote code execution vulnerabilty in URL reversing.Tim Graham
Thanks Benjamin Bach for the report and initial patch. This is a security fix; disclosure to follow shortly.
2014-04-21Fixed table cleanup in GIS migration testsClaude Paroz
2014-04-21Fixed PostGIS remove_field implementationClaude Paroz
Fixed bad code introduced in 2f9d1576e8.
2014-04-21Fixed removal of GIS column in PostGIS 1.x migrationClaude Paroz
Refs #22481.
2014-04-21Fixed adding new GIS column in PostGIS 1.x migrationClaude Paroz
Refs #22451.
2014-04-21Corrected the section identifier for MySQL unicode reference.Matt Lauber
2014-04-21Merge pull request #2592 from prestontimmons/remove-test-runner-casesAymeric Augustin
Removed old test runner test cases.
2014-04-21Fixed migrate when called inside a transaction.Florian Apolloner
This is useful for tests manually calling migrate inside a testcase, for normal usage this should make no difference, since there is no surrounding transaction after all. If there is one we still try to leave the transaction in a useable state (for postgres at least). If this commit turns out to be causing issues, settings savepoint=False is probably the right fix :)
2014-04-21Fixed monkeypatching in a staticfiles test.Florian Apolloner
2014-04-21Appeased flake8 2.1.0.Aymeric Augustin
2014-04-21Consolidated expressions tests.Aymeric Augustin
2014-04-21Consolidated get_or_create tests.Aymeric Augustin
2014-04-21Further consolidated the model_inheritance tests.Aymeric Augustin
2014-04-21Fixed #22402 -- Consolidated model_inheritance tests.Aymeric Augustin
The model_inheritance_same_model_name tests couldn't be run without the model_inheritance tests. Make the problem go away by merging them. Thanks timo for the report.
2014-04-20Removed old test runner test cases.Preston Timmons
These files were added as part of #12658, which pertained to the old django.test.simple test runner. No tests call them anymore.
2014-04-20Fixed flake8 errors.Tim Graham
2014-04-20Changed paths in docs that referred to Python 2.Aymeric Augustin
2014-04-19Fixed #22417 -- Added additional documentation for refs #16969.Tim Graham
Thanks Jon Foster for the report.
2014-04-18Fixed #22397 -- Issues removing M2M field with explicit through modelAndrew Gorcester
Changed the migration autodetector to remove models last so that FK and M2M fields will not be left as dangling references. Added a check in the migration state renderer to error out in the presence of dangling references instead of leaving them as strings. Fixed a bug in the sqlite backend to handle the deletion of M2M fields with "through" models properly (i.e., do nothing successfully). Thanks to melinath for report, loic for tests and andrewgodwin and charettes for assistance with architecture.
2014-04-18Moved RemoteUserBackend documentation to reference guide.Tim Graham
2014-04-18Fixed #22458 -- Added a note about MySQL utf8_unicode_ci collationMoayad Mardini
Thanks tobami at gmail.com for the report.
2014-04-18Fixed #22473 -- Emphasized that Model.clean() is not called from Model.save().Tim Graham
2014-04-18Adapted fixture read mode to file typeClaude Paroz
Binary mode added in ed532a6a1e is not supported by ZipFile. Refs #22399.
2014-04-18Fixed #22472 -- Clarified meaning of dots in tutorial 4 code block.Tim Graham
2014-04-18Fixed #22399 -- Forced fixture reading in binary modeClaude Paroz
This might help on systems where default encoding is not UTF-8 (and on Python 3). Thanks bacilla for the report.
2014-04-18Added some missing items to the 1.6.3 release notes.Tim Graham
2014-04-18Fixed #22471 -- Corrected misprint in i18n docsErik Romijn
Thanks to aruseni for the report.
2014-04-18Added missing versionadded annotation and tweaked release note; refs #22465.Tim Graham
2014-04-18Fixed #22465 -- New assertion assertJSONNotEqualamatellanes
2014-04-18Fixed a test failure introduced by 214d1e1b0f.Simon Charette
2014-04-17Merge pull request #2586 from mmardini/patch-2Alex Gaynor
Fixed #22464 - included contrib/gis/static in tarball
2014-04-18Fixed #22464 - included contrib/gis/static in tarballMoayad Mardini
After switching to setuptools in commit 66f546b, contrib/gis/static isn't included in tarball anymore, this commit adds that path to be `recursive-include` in `MANIFEST.in`
2014-04-18Revert "Fixed #22397 -- Issues removing M2M field with explicit through model."Simon Charette
This reverts commit 00e3b9a2a992ee0b7288eeeb03e7cbd52ebc6dce. It's causing a regression when tested with the proxy_model_inheritance tests.
2014-04-17Fixed #22454 - Changed compatibility warning hintMoayad Mardini
The warning hint of `_check_test_runner` of 1.6 compatibility had a link to a general release note. The link should be edited to refer the relevant "Backwards incompatible changes in 1.6" section that documents the cause and the possible solutions and workarounds of the warning.
2014-04-17Fixed #22444 -- Marked initial SQL/fixture loading as deprecated.Tim Graham
Thanks Karen Tracey for the report.
2014-04-17Fixed a KeyError on login with legacy sessions; refs #21649.Tim Graham
Thanks Loic for the report.
2014-04-17Merge pull request #2582 from alex/stdlib-pbkdf2hmacDonald Stufft
Use the stdlib's PBKDF2 implementation when available.
2014-04-17Merge pull request #2583 from alex/extras-bcryptDonald Stufft
Include an 'extra_requires' for bcrypt
2014-04-17Confirmed support for PostGIS 2.1 and GDAL 1.10Claude Paroz
Refs #22456.
2014-04-17Fixed #22456 -- Replaced 900913 EPSG code by 3857 in some testsClaude Paroz
3857 is now the official EPSG code for the Google spherical mercator projection and some recent versions of GDAL do not recognize 900913 any longer. Thanks Tim Graham for the report and initial patch.
2014-04-17Stray parenAlex Gaynor
2014-04-17Include an 'extra_requires' for bcryptAlex Gaynor
2014-04-17For another dayAlex Gaynor
2014-04-17Typo fixAlex Gaynor
2014-04-17Use the stdlib's PBKDF2 implementation when available.Alex Gaynor
This is a bit faster than ours, which is good, because it lets you increase the iteration counts. This will be used on Python 3.4+, and, pending the acceptance of PEP466, on newer Python 2.7s.
2014-04-17Fixed #22397 -- Issues removing M2M field with explicit through model.Andrew Gorcester
Changed the migration autodetector to remove models last so that FK and M2M fields will not be left as dangling references. Added a check in the migration state renderer to error out in the presence of dangling references instead of leaving them as strings. Fixed a bug in the sqlite backend to handle the deletion of M2M fields with "through" models properly (i.e., do nothing successfully). Thanks to melinath for report, loic for tests and andrewgodwin and charettes for assistance with architecture.
2014-04-16Revert "Fixed #22401 -- Deprecated regular expression parsing of initial SQL ↵Tim Graham
in favor of installing sqlparse." This reverts commit 071c9337750b296d198cced56f3ffad0e176afb6. This introduced a regression on MySQL and custom SQL is deprecated.