summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2012-11-27[1.5.x] Bump version numbers for 1.5 beta 1.1.5b1James Bennett
2012-11-27Fixed a couple of typos in the 1.5 (and beta) release notes.Jacob Kaplan-Moss
Backport of [7cea123bdebd45dc1bafe02d57a90995e76c28a9] from master.
2012-11-27Added 1.5 beta release notes.Jacob Kaplan-Moss
Backport of [7a62339f595f03170903d04cbb3e170fd03c657b] from master.
2012-11-27[1.5.x] Fixed #19370 -- Made date filter properly handle midnight valueDanilo Bargen
Backport of c10aaa70a from master.
2012-11-27[1.5.x] Removed duplicate opts.pk_index() methodAnssi Kääriäinen
Backpatch of [d37483c533868e78afd0ca3faf993fee97097f9f]
2012-11-27[1.5.x] Fixed #19362 -- Detected invalid use of @python_2_unicode_compatible.Aymeric Augustin
Thanks m3wolf for the report and akaariai for reproducing the problem. Backport of 2ea80b9.
2012-11-25[1.5.x] Fixed #17911 -- Ensure that admin readonly fields' display values ↵Edward Tjörnhammar
are shown in change forms when the raw value is None. Backport of 29d59a879ea5b116
2012-11-25[1.5.x] Fixed #17646 -- Added a get_list_filter() method to ModelAdmin. ↵Julien Phalip
Thanks to rasca for the suggestion and to mateusgondim for the patch. Backport of ae206d78f6d991e
2012-11-25[1.5.x] Fixed test failure following capitalization fix in 2f035a972Claude Paroz
Backport of f26b956e80 from master.
2012-11-25[1.5.x] Change exception type to reduce confusion.Aymeric Augustin
TemplateSyntaxError is expected at compile time, not at run time. Refs #19280. Backport of 7644800.
2012-11-25[1.5.x] Fixed two typos.Aymeric Augustin
Backport of f89901d from master.
2012-11-25[1.5.x] Enabled SimpleTestCase to be decorated by override_settingsClaude Paroz
Refs #18417. Also fixed some test case classes which subclassed the wrong parent. Backport of a5d47415f from master.
2012-11-25[1.5.x] Fixed #18417 -- Raised exception when unittest.TestCase is decorated ↵Claude Paroz
with override_settings Backport of 9f7cefd5 from master.
2012-11-25[1.5.x] Fixed #19355 -- Improved LiveServerThread's handling of exceptions. ↵Julien Phalip
Thanks to flub for the report. Backport of 612357f8ef
2012-11-24[1.5.x] Fixed #19280 -- Raised an explicit exception for the old {% url %} ↵Aymeric Augustin
syntax. Backport of 6b8a7ce.
2012-11-24[1.5.x] Used a django.test.TestCase for compatibility with @override_settings.Aymeric Augustin
These tests were silently skipped. Backport of 95edeab.
2012-11-24[1.5.x] Fixed #19293 -- Updated Czech input formatsVladimír Macek
Thanks vzima for the report. Backport of abd0e76d2 from master.
2012-11-24[1.5.x] Fixed #18722 -- Adjusted width of sortable columns in adminJonatan Heyman
Thanks Simon Charette for the report. Backport of 35a0fff2 from master.
2012-11-24[1.5.x] Updated User manager when testing custom AUTH_USER_MODELClaude Paroz
This is giving more real test conditions when AUTH_USER_MODEL is set with override_settings. Backport of a962bc7c4 from master.
2012-11-24[1.5.x] Fixed ordering-related failure in m2m_through_regress testsAnssi Kääriäinen
Backpatch of dc569c880143db07e01b3293d698ad8fe4a0136f
2012-11-24[1.5.x] Fixed #19237 -- Improved strip_tags utilityChris Khoo
The previous pattern didn't properly addressed cases where '>' was present inside quoted tag content. Backport of bf1871d87 from master.
2012-11-24[1.5.x] Fixed #19343 -- Deadlock with TransactionTestCase + TEST_MIRROR + ↵Aymeric Augustin
multi_db. Thanks Jeremy Dunck for the review. Backport of be64dd3 from master.
2012-11-24[1.5.x] Removed some stray debug lines introduced accidentally in c8985a8.Russell Keith-Magee
Backport of f2d8004.
2012-11-24[1.5.x] Simplified the deletions performed by the swappable_models test.Russell Keith-Magee
This is required to allow the test to run without error under SQLite in the CI environment. Backport of 18d7c1e.
2012-11-24[1.5.x] Fixed #19218 -- Added documentation note on limitations of signals ↵Russell Keith-Magee
with custom User models. Thanks to kunitoki@gmail.com for the report. Backport of fdb5c98d7ee54c7f89ec10b0203263f1f5b37510.
2012-11-24[1.5.x] Fixed #19806 -- Ensure that content types and permissions aren't ↵Russell Keith-Magee
created for swapped models. Thanks to rizumu for the report. Backport of c8985a8a7317042a641e870cb75b3005cc5d67b1.
2012-11-23Changed Luxembourgish name_local to unicode escapes.Jeremy Dunck
Fixes 6a00c196.
2012-11-24[1.5.x] Fixed #19351 -- SQLite bulk_insert of more than 500 single-field objsAnssi Kääriäinen
Backpatch of 0a0a0d66b316598f7c296e8bf75749a14ce3ac49
2012-11-24[1.5.x] Fixed SQLite's collapsing of same-valued instances in bulk_createAnssi Kääriäinen
SQLite used INSERT INTO tbl SELECT %s UNION SELECT %s, the problem was that there should have been UNION ALL instead of UNION. Refs #19351 Backpatch of a27582484cf814554907d2d1ad077852de36963f
2012-11-23Added new languagesClaude Paroz
Afrikaans, Belarusian, Breton, Venezuelan Spanish, Interlingua, Luxembourgish, Udmurt
2012-11-23[1.5.x] Negligible style fix in docs.Aymeric Augustin
Backport of 5c81e9d.
2012-11-23[1.5.x] Fixed #18375 -- Removed dict-ordering dependency for F-expressionsAnssi Kääriäinen
F() expressions reuse joins like any lookup in a .filter() call - reuse multijoins generated in the same .filter() call else generate new joins. Also, lookups can now reuse joins generated by F(). This change is backwards incompatible, but it is required to prevent dict randomization from generating different queries depending on .filter() kwarg ordering. The new way is also more consistent in how joins are reused. Backpatch of 90b86291d022a09031d1df397d7aaebc30e435f7
2012-11-23[1.5.x] Fixed cursor commit command in PostGIS backendClaude Paroz
Thanks Bruno Renié for noticing the error. Backport of 7b9a1fb96 from master.
2012-11-23[1.5.x] Fixed #19152 -- Allowed PostGIS tests to be run without templateFlavio Curella
From version 2, a PostGIS template is no longer required to create a GIS-enabled database. Backport of fbd1df8e from master.
2012-11-23[1.5.X] Changed if statement to a slightly cleaner variantWoLpH
Backport of eabb44417c from master
2012-11-23[1.5.X] Fixed #19348 - Clarified the units of filesizeformat.Tim Graham
Thanks george_edison for the report and Claude Paroz for the patch. Backport of 63e6cd1bb3 from master
2012-11-23[1.5.x] Tweak a test to avoid hitting a limit with SQLite.Aymeric Augustin
Django cannot delete more than 999 objects at a time with SQLite. Refs #16426, #16039. Backport of 2875b5d from master.
2012-11-22[1.5.X] Fixed #19346 - Typo in docs/ref/contrib/gis/install/index.txtTim Graham
Backport of c13912ac7f from master
2012-11-22[1.5.X] Spell checked 1.5 alpha release notesTim Graham
Backport of e94f8babc2 from master
2012-11-22[1.5.X] Fixed #18974 - Warned against using models.permalinkTim Graham
Thanks dstufft for the draft patch. Backport of 0e3690d230 from master
2012-11-22[1.5.x] Fixed #18984 -- Avoided a deadlock in test teardown.Aymeric Augustin
Thanks Jeremy Dunck for the report. Backport of 891c530 from master.
2012-11-22[1.5.x] Fixed #16039 -- Made post_syncdb handlers multi-db aware.Aymeric Augustin
Also reverted 8fb7a9002669fb7ba7bec7df90b465b92e1ed3c2. Refs #17055. Backport of a026e48 from master.
2012-11-22[1.5.x] Fixed #19316 -- Set View args/kwargs/request before dispatchGeorge Hickman
Backport of ea6b95db from master.
2012-11-22[1.5.X] Documented behavior of get_or_create when multiple objects are returned.Tim Graham
Thanks Matt Lauber for the patch. Backport of 71a3162a70 from master
2012-11-22[1.5.X] Clarified usage of as_view kwargs for setting arguments on class ↵Tim Graham
based views Thanks Dave McLain for the patch. Backport of 7b2d95eb30 from master
2012-11-22[1.5.X] Fixed #19317 - Added an image for warning blocks in the docsTim Graham
Thanks tome for the suggestion and patch. Backport of 3587991ba8 from master
2012-11-21[1.5.x] Added examples of using startproject/app with URLsPreston Holmes
thanks to Brent O'Connor for the idea and intial docs
2012-11-21[1.5.X] Fixed #19243 - Edited GeoDjango Tutorial for consistency and style.shepdl
Backport of 8e5573e99a from master
2012-11-21[1.5.X] Fixed #19335 - Typo and cleanups in ↵Tim Graham
docs/topics/class-based-views/index.txt Backport of e2b1808196 from master
2012-11-21[1.5.x] Fixed #18920 -- Added `.gitattributes` to normalize line endings in ↵Julien Phalip
HTML templates and avoid spurious failures in the core test suite on Windows. Many thanks to manfre, Claude Paroz, Karen Tracey, MaxV and Daniel Langer for their advising and testing.