| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-10-27 | Fixed QuerySet datetimes argument name in docs. | Oliver Meinusch | |
| 2014-10-27 | Fixed #23708 -- Corrected mod_wsgi docs reference to nonexistent comment in ↵ | Tim Graham | |
| wsgi.py. Thanks inglesp for the report. | |||
| 2014-10-27 | Fixed typo in squashing migrations documentation | bahoo | |
| 2014-10-27 | Fixed typo in MySQL backend doctring | Claude Paroz | |
| Thanks CHI Cheng for the report. | |||
| 2014-10-27 | Fixed #23717 -- Fixed makemessages crash when STATIC_ROOT=None | Claude Paroz | |
| 2014-10-27 | Fixed #22879 -- Intercept errors coming from cursor.__next__() | Mikhail Denisenko | |
| 2014-10-27 | Removed some commented code in the forms Media class. | Tim Graham | |
| 2014-10-27 | Forwardported release note for refs #23621. | Tim Graham | |
| 2014-10-27 | Fixed #23699 -- Prevented flush from loading initial data for apps with ↵ | Tony Zhu | |
| migrations. | |||
| 2014-10-27 | Fixed documentation of make_password kwargs. | Ilya Baryshev | |
| 2014-10-27 | Fixed #23446 -- Officially recommended mysqlclient as MySQL driver | Claude Paroz | |
| Thanks Corey Farwell for the report and Tim Graham for the review. Thanks also to Inada Naoki for creating and maintaining mysqlclient. | |||
| 2014-10-25 | Removed simplejson inventory file from docs/conf.py. | Berker Peksag | |
| 2014-10-24 | Replaced dead links to python-distribute.org. | Tim Graham | |
| 2014-10-24 | Fixed versionchanged indentation in topics/testing/advanced.txt. | Berker Peksag | |
| 2014-10-24 | Removed unused import | Claude Paroz | |
| 2014-10-24 | Fixed #23652 -- Restored database name after destroying test database | Claude Paroz | |
| Thanks Bjarkias for the report. | |||
| 2014-10-24 | Updated gis_migrations tests | Claude Paroz | |
| 2014-10-24 | Fixed #23618 -- Allowed apps with no models to still have migrations | Claude Paroz | |
| Basically a4737bf6ae reapplied. | |||
| 2014-10-24 | Fixed typo in docs/ref/request-response.txt | James Doherty | |
| 2014-10-23 | Fixed #23707 -- Prevented discovery of duplicated tests | Claude Paroz | |
| 2014-10-23 | Fixed #23702 -- Fixed adding an explicit id field on SQLite. | Tim Graham | |
| Thanks gavinwahl for the report. | |||
| 2014-10-23 | Fixed #23444 -- Deprecated ↵ | a1tus | |
| django.contrib.admin.helpers.InlineAdminForm.original_content_type_id | |||
| 2014-10-23 | Added missing available app in migrations test case | Claude Paroz | |
| In some test combinations, having contrib.auth available but not contrib.contenttypes can produce failures while creating permissions. | |||
| 2014-10-23 | Fixed #23705 -- Removed unnecessary AliasMatch from example Apache config. | Tim Graham | |
| Thanks Keryn Knight for the report. | |||
| 2014-10-23 | Fixed #23630 -- Made AlterModelTable rename auto-created M2M tables. | Tim Graham | |
| Thanks Naddiseo for the report, Andrew Godwin for guidance, and Shai Berger for review. | |||
| 2014-10-23 | Fixed versionchanged indentation in unit-tests.txt. | Berker Peksag | |
| 2014-10-23 | Made a doctest compatible with Python 2 | Claude Paroz | |
| That test might not always execute, but can be executed when the parent test label is explicitely given. | |||
| 2014-10-22 | Fixed flake8 warning. | Tim Graham | |
| 2014-10-22 | Allowed test from refs #23612 to be run from a directory other than tests. | Tim Graham | |
| 2014-10-23 | Improved warning message when reloading models. Refs #23621. | Loic Bistuer | |
| Thanks dfunckt and Tim Graham. | |||
| 2014-10-23 | Fixed #23621 -- Warn for duplicate models when a module is reloaded. | Loic Bistuer | |
| Previously a RuntimeError was raised every time two models clashed in the app registry. This prevented reloading a module in a REPL; while it's not recommended to do so, we decided not to forbid this use-case by turning the error into a warning. Thanks @dfunckt and Sergey Pashinin for the initial patches. | |||
| 2014-10-22 | Added stub release notes for 1.7.2. | Tim Graham | |
| 2014-10-22 | Fixed #23701 -- Removed an unneeded check in collectstatic. | Tim Graham | |
| Thanks prathik for the report. | |||
| 2014-10-22 | Added release dates to release notes. | Tim Graham | |
| 2014-10-22 | Refactored color_style() and no_style() to improve testability. Refs #23663. | Loic Bistuer | |
| This includes the following improvements: - The type of the style object is now called 'Style' rather than 'dummy'. - The new make_style() function allows generating a Style object directly from a config string. Before the only way to get a style object was through the environ and it also required that the terminal supported colors which isn't necessarily the case when testing. - The output of no_style() is now cached with @lru_cache. - The output of no_style() now has the same set of attributes as the other Style objects. Previously it allowed anything to pass through with __getattr__. | |||
| 2014-10-22 | Fixed #23686 -- Tweak color output of the system check framework. | Loic Bistuer | |
| Thanks Tim Graham for the review. | |||
| 2014-10-21 | Removed unused import from the JSON serialization example. | Berker Peksag | |
| This is a leftover from 5612f54bd56086e2a375e86474ec734c172e7d1f. | |||
| 2014-10-22 | Made testing of stdout and stderr more consistent. | Loic Bistuer | |
| Refs #23663. | |||
| 2014-10-22 | Fixed #23663 -- Initialize output streams for BaseCommand in __init__(). | Loic Bistuer | |
| This helps with testability of management commands. Thanks to trac username daveoncode for the report and to Tim Graham and Claude Paroz for the reviews. | |||
| 2014-10-21 | Fixed #23653 -- Fixed Windows failure of a logging test added in refs #23569. | Tim Graham | |
| 2014-10-21 | Removed unneeded override_system_checks | Claude Paroz | |
| Refs #23685. | |||
| 2014-10-21 | Fixed #23583 -- More selectively ignored static/media roots | Claude 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. | |||
| 2014-10-22 | Fixed #23107 -- Made runserver output respect --no-color. | Loic Bistuer | |
| This commit reverts 67d7da5fb9498b811f0168f5df2308ad4743027f. The previous fix changed the environment globally, which meant that any call to `call_command(no_color=True)` prevented further `call_command` with color. This fix still relies on the environment because it's currently the only way to reach WSGIRequestHandler, but it's now limited to the `runserver` command. This seems an acceptable compromise considering `runserver` runs indefinitely. Thanks Tim Graham for the review. | |||
| 2014-10-21 | Fixed #23695 -- Made condition decorator work for HEAD requests without ETag. | Anton Novosyolov | |
| 2014-10-21 | Fixed #23396 -- Ensured ValueQuerySets are not checked by check_related_objects. | Gabe Jackson | |
| 2014-10-21 | Fixed firstof docs error introduced in 1ea44a; refs #17906. | Ralph Broenink | |
| 2014-10-21 | Fixed #21740 -- Allowed test client data to be an empty string | Claude Paroz | |
| This fixes a regression introduced by 2a31d00933. Thanks tony-zhu for the report. | |||
| 2014-10-20 | Fix SettingsCustomLoggingTest on Windows when path contains \u | Michael Manfre | |
| 2014-10-20 | Fixed #23688 -- Updated cached_property to preserve docstring of original ↵ | John-Scott Atlakson | |
| function | |||
| 2014-10-20 | Fixed #20221 -- Allowed some functions that use mark_safe() to result in ↵ | Jon Dufresne | |
| SafeText. Thanks Baptiste Mispelon for the report. | |||
