| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-06-15 | Added database migration for contrib.flatpages. | Claude Paroz | |
| refs #22170. | |||
| 2014-06-15 | Added database migration for contrib.sites. | Claude Paroz | |
| refs #22170. | |||
| 2014-06-15 | Fixed #22568: Better proxy model support in migrations | Andrew Godwin | |
| 2014-06-15 | Fixed #22470: Full migration support for order_with_respect_to | Andrew Godwin | |
| 2014-06-15 | Persist non-schema-relevant Meta changes in migrations | Andrew Godwin | |
| 2014-06-15 | Fixed #22833: Autodetector not doing through mapping correctly | Andrew Godwin | |
| 2014-06-15 | Fixed #22563: Added migration to admin, fixed a few more loader issues. | Andrew Godwin | |
| 2014-06-15 | Improve error message for missing migrations in an app | Andrew Godwin | |
| 2014-06-15 | Merge pull request #2806 from jorgecarleitao/issue22826 | Marc Tamlyn | |
| Fixed #22826 -- Improved internal usage of Query.setup_joins. | |||
| 2014-06-14 | Fixed #7762 -- Hidden full script name in command error output | Claude Paroz | |
| 2014-06-14 | Restored command error behavior when called from command line | Claude Paroz | |
| Refs #19973. | |||
| 2014-06-14 | Fixed several flake8 errors | Alex Gaynor | |
| 2014-06-14 | Improved code style of Query.table_alias() usage. | Jorge C. Leitão | |
| 2014-06-14 | Removed unnecessary attribute assigment to SQLCompiler. | Jorge C. Leitão | |
| 2014-06-14 | Fixed #22826 -- Improved internal usage of Query.setup_joins. | Jorge C. Leitão | |
| 2014-06-14 | Converted remaining management commands to argparse | Claude Paroz | |
| 2014-06-14 | Converted test management command to argparse | Claude Paroz | |
| Keeping backwards compatibility with test_runner.option_list is tricky and would imply transforming an optparse.Option to an argparse.Action. I choose to introduce a backwards incompatible change because it only affects testing, not runtime behavior. | |||
| 2014-06-14 | Fixed #19973 -- Replaced optparse by argparse in management commands | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2014-06-13 | Fixed #22440 -- Updated ConditionalGetMiddleware to comply with RFC 2616. | Mark Lavin | |
| 2014-06-14 | Fixed #22816 -- Corrected Oracle feature flag and fixed introspection test | Shai Berger | |
| 2014-06-13 | Added django.utils.six.buffer_types | Shai Berger | |
| and used it in the Oracle SchemaEditor. Refs #22715. | |||
| 2014-06-13 | Fixed #22771 -- Fixed test.Client.logout when using custom auth backend. | Xavier Fernandez | |
| 2014-06-13 | Fixed #22477 -- Removed contrib middleware from the global settings defaults. | mlavin | |
| Also added a compatibility check for changed middleware defaults. Forwardport of d94de802d3 from stable/1.7.x | |||
| 2014-06-13 | Fixed #7599 -- Added get_user_permissions to ModelBackend. | Jorge C. Leitão | |
| Thanks to @gdub for the report and intial patch and @charettes and @timgraham for the review. | |||
| 2014-06-13 | Fixed #6327 -- Added has_module_permission method to BaseModelAdmin | Maxime Turcotte | |
| Thanks chrj for the suggestion. | |||
| 2014-06-13 | Fixed #16087 -- Added ResolverMatch instance to test client response. | Greg Chapple | |
| Thanks mrmachine for the suggestion. | |||
| 2014-06-12 | Fix test breakage from previous state fix | Andrew Godwin | |
| 2014-06-12 | Fixed #22823 (and partly #22563) - FKs from unmigrated apps breaking state. | Andrew Godwin | |
| Thanks to bendavis78 for the test and diagnostic work. | |||
| 2014-06-12 | Fixed #22814 -- Allowed ISO-8601 [+-]hh timezone format in parse_datetime | Richard Eames | |
| 2014-06-12 | Silenced deprecation warnings for refs #22811 and fixed build. | Tim Graham | |
| 2014-06-12 | Fixed #22811 -- Allowed setting both the old and new TEST database settings. | Tim Graham | |
| An ImproperlyConfigured exception will be raised they mismatch. | |||
| 2014-06-12 | Prevented markup escape in 'Welcome to Django' page | Claude Paroz | |
| Fixes a regression introduced in 5f24cf9705. Refs #22635. Thanks A.J. May for spotting the regression. | |||
| 2014-06-12 | Made the vendored NamedTemporaryFile work as a context manager. Refs #22680. | Loic Bistuer | |
| This fixes a regression on Windows introduced by b7de5f5. Thanks Tim Graham for the report and review. | |||
| 2014-06-11 | Fixed #21430 -- Added a RuntimeWarning when unpickling Models and QuerySets ↵ | Anubhav Joshi | |
| from a different Django version. Thanks FunkyBob for the suggestion, prasoon2211 for the initial patch, and akaariai, loic, and charettes for helping in shaping the patch. | |||
| 2014-06-11 | Fixed #22680 -- I/O operation on closed file. | Florian Apolloner | |
| This patch is two-fold; first it ensure that Django does close everything in request.FILES at the end of the request and secondly the storage system should no longer close any files during save, it's up to the caller to handle that -- or let Django close the files at the end of the request. | |||
| 2014-06-10 | Fixed #22780 -- Checked that LOCALE_PATHS is really a tuple | Tim Schaffer | |
| 2014-06-10 | Fixed #22798 -- `pluralize()` now adds plural_suffix for any `1 < d < 2` | Moayad Mardini | |
| Thanks Odd_Bloke for the report. | |||
| 2014-06-10 | Fixed #22770 -- Removed create_superuser from post_migrate signals. | Tim Graham | |
| Moved logic to syncdb command for backwards compatibility. | |||
| 2014-06-10 | Fixed #17431 -- Added send_mail() method to PasswordResetForm. | Jorge C. Leitão | |
| Credits for the initial patch go to ejucovy; big thanks to Tim Graham for the review. | |||
| 2014-06-10 | Fixed #22792 -- Updated checks for list_display_links in model admin | Greg Chapple | |
| 2014-06-10 | Fixed #17552 -- Removed a hack for IE6 and earlier. | Aymeric Augustin | |
| It prevented the GZipMiddleware from compressing some data types even on more recent version of IE where the corresponding bug was fixed. Thanks Aaron Cannon for the report and Tim Graham for the review. | |||
| 2014-06-09 | Dropped support for SpatiaLite < 2.4. | Tim Graham | |
| 2014-06-09 | Fixed #20420 -- Normalized query counts on Oracle. | Aymeric Augustin | |
| This is achieved by inserting a fake entry in connection.queries when not releasing a savepoint (since Oracle doesn't support that operation.) Also removed the can_release_savepoints feature that was recently added, but is superseded by this solution. | |||
| 2014-06-09 | Simplified handling of use_debug_cursor. | Aymeric Augustin | |
| Turned it from a tri-valued boolean into a regular boolean. | |||
| 2014-06-09 | Added rollback emulation to spatialite backend; refs #22487. | Tim Graham | |
| 2014-06-09 | Fixed flake8 error. | Tim Graham | |
| 2014-06-09 | Tweaked order of create_test_db arguments for backwards compatibility. | Tim Graham | |
| Since `serialize` was backported to 1.7, it should appear before `keepdb`. | |||
| 2014-06-09 | Fixed formtools tests with Python 2 | Claude Paroz | |
| Fixes #19905 again. | |||
| 2014-06-09 | Converted Django scripts to argparse | Claude Paroz | |
| Refs #19973. | |||
| 2014-06-08 | Fixed #22487: Optional rollback emulation for migrated apps | Andrew Godwin | |
