summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2014-06-16Renamed DatabaseFeature.supports_check_constraints to ↵Tim Graham
supports_column_check_constraints. Thanks maxi for the suggestion.
2014-06-16Removed some u'' prefixes to fix Python 3.2.Tim Graham
2014-06-16Ignore more blank throughs on swapped-out M2MsAndrew Godwin
2014-06-16Ignore through being None on some special cases of fields.Andrew Godwin
2014-06-16Fixed #22845 -- Correctly handled memcached default timeout value.Vincent-Vega
2014-06-16Added database migration for contrib.auth.Tim Graham
refs #22170.
2014-06-16Fixed flake8 error.Tim Graham
2014-06-16Added database migration for contrib.contenttypes.Tim Graham
Moved contenttypes tests to allow them to run correctly in the presence of migrations. refs #22170.
2014-06-16Fixed #22847: Optimizer wasn't expecting unresolved FKsAndrew Godwin
2014-06-16Fixed #22783: Make sure swappable models come first in creationAndrew Godwin
2014-06-16Fixed #22848: Ignore no-migrations errors during makemigrations onlyAndrew Godwin
2014-06-16Use __first__ not __latest__ for unknown app dependenciesAndrew Godwin
2014-06-16Fixed #22788 -- Ensured custom migration operations can be written.Matthew Schinckel
This inspects the migration operation, and if it is not in the django.db.migrations module, it adds the relevant imports to the migration writer and uses the correct class name.
2014-06-16Added database migration for contrib.sessions.Tim Graham
refs #22170.
2014-06-16Removed usaged of contrib.sessions as a placeholder in migration tests.Tim Graham
Without this, we're unable to add actual migrations for the app.
2014-06-16Fixed #22844: Duplicate SQL for SQLite FKsAndrew Godwin
2014-06-15Fixed several flake8 errorsAlex Gaynor
2014-06-15Added database migration for contrib.redirects.Claude Paroz
refs #22170.
2014-06-15Added database migration for contrib.flatpages.Claude Paroz
refs #22170.
2014-06-15Added database migration for contrib.sites.Claude Paroz
refs #22170.
2014-06-15Fixed #22568: Better proxy model support in migrationsAndrew Godwin
2014-06-15Fixed #22470: Full migration support for order_with_respect_toAndrew Godwin
2014-06-15Persist non-schema-relevant Meta changes in migrationsAndrew Godwin
2014-06-15Fixed #22833: Autodetector not doing through mapping correctlyAndrew Godwin
2014-06-15Fixed #22660: Doc'd you can't have unmigrated apps depend on migratedAndrew Godwin
2014-06-15Fixed #22563: Added migration to admin, fixed a few more loader issues.Andrew Godwin
2014-06-15Improve error message for missing migrations in an appAndrew Godwin
2014-06-15Merge pull request #2810 from magrinidiego/ticket_22842_tutorial_testDaniele Procida
Fixed #22842
2014-06-15Fixed #22842vagrant
2014-06-15Merge pull request #2806 from jorgecarleitao/issue22826Marc Tamlyn
Fixed #22826 -- Improved internal usage of Query.setup_joins.
2014-06-14Complemented dwithin docs about using geographic geometriesClaude Paroz
Refs #22830. Thanks django@gfairchild.com for the suggestion.
2014-06-14Fixed #7762 -- Hidden full script name in command error outputClaude Paroz
2014-06-14Restored command error behavior when called from command lineClaude Paroz
Refs #19973.
2014-06-14Fixed several flake8 errorsAlex Gaynor
2014-06-14Improved code style of Query.table_alias() usage.Jorge C. Leitão
2014-06-14Removed unnecessary attribute assigment to SQLCompiler.Jorge C. Leitão
2014-06-14Fixed #22826 -- Improved internal usage of Query.setup_joins.Jorge C. Leitão
2014-06-14Converted remaining management commands to argparseClaude Paroz
2014-06-14Converted test management command to argparseClaude 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-14Documented optparse to argparse changes for management commandsClaude Paroz
2014-06-14Fixed #19973 -- Replaced optparse by argparse in management commandsClaude Paroz
Thanks Tim Graham for the review.
2014-06-13Fixed #22440 -- Updated ConditionalGetMiddleware to comply with RFC 2616.Mark Lavin
2014-06-14Fixed #22816 -- Corrected Oracle feature flag and fixed introspection testShai Berger
2014-06-13Added django.utils.six.buffer_typesShai Berger
and used it in the Oracle SchemaEditor. Refs #22715.
2014-06-13Fixed #22771 -- Fixed test.Client.logout when using custom auth backend.Xavier Fernandez
2014-06-13Fixed #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-13Fixed #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-13Fixed #6327 -- Added has_module_permission method to BaseModelAdminMaxime Turcotte
Thanks chrj for the suggestion.
2014-06-13Fixed #16087 -- Added ResolverMatch instance to test client response.Greg Chapple
Thanks mrmachine for the suggestion.
2014-06-12Fixed #22349 -- Added a note clarifying `RawQuerySet` has no `__len__`.Moayad Mardini
Thanks cdestigter for the report.