| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2014-06-16 | Fixed #22851: BinaryView wasn't getting a binary default | Andrew Godwin | |
| 2014-06-16 | Renamed DatabaseFeature.supports_check_constraints to ↵ | Tim Graham | |
| supports_column_check_constraints. Thanks maxi for the suggestion. | |||
| 2014-06-16 | Ignore more blank throughs on swapped-out M2Ms | Andrew Godwin | |
| 2014-06-16 | Ignore through being None on some special cases of fields. | Andrew Godwin | |
| 2014-06-16 | Fixed flake8 error. | Tim Graham | |
| 2014-06-16 | Fixed #22847: Optimizer wasn't expecting unresolved FKs | Andrew Godwin | |
| 2014-06-16 | Fixed #22783: Make sure swappable models come first in creation | Andrew Godwin | |
| 2014-06-16 | Fixed #22848: Ignore no-migrations errors during makemigrations only | Andrew Godwin | |
| 2014-06-16 | Use __first__ not __latest__ for unknown app dependencies | Andrew Godwin | |
| 2014-06-16 | Fixed #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-16 | Fixed #22844: Duplicate SQL for SQLite FKs | Andrew Godwin | |
| 2014-06-15 | Fixed several flake8 errors | Alex Gaynor | |
| 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 | 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 | 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-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 | 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-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-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 | 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-08 | Fixed #22487: Optional rollback emulation for migrated apps | Andrew Godwin | |
| 2014-06-08 | Fixed #22777: Add dependency on through for autodetected M2M adds | Andrew Godwin | |
| 2014-06-07 | Fixed #22750, #22248: Model renaming now also alters field FKs | Andrew Godwin | |
| 2014-06-07 | Removed usage of deprecated django.utils.importlib. | Tim Graham | |
| 2014-06-07 | Fixed #22436: More careful checking on method ref'ce serialization | Andrew Godwin | |
| 2014-06-07 | Fixed #17427 -- Removed dubious definition of connections equality. | Aymeric Augustin | |
| 2014-06-07 | Fixed #3711, #6734, #12581 -- Bounded connection.queries. | Aymeric Augustin | |
| Prevented unlimited memory consumption when running background tasks with DEBUG=True. Thanks Rob, Alex, Baptiste, and others. | |||
| 2014-06-06 | Fixed flake8 errors. | Tim Graham | |
| 2014-06-06 | Merge pull request #2764 from gchp/ticket-20550 | Aymeric Augustin | |
| Fixed #20550 -- Added keepdb argument to destroy_test_db | |||
| 2014-06-05 | Prevent operation pollution by later operations of fields | Andrew Godwin | |
| 2014-06-05 | Rewrote migration autodetector to involve actual computer science. | Andrew Godwin | |
| Fixes #22605, #22735; also lays the ground for some other fixes. | |||
| 2014-06-05 | Merge pull request #2736 from SmileyChris/migration-run_before | Andrew Godwin | |
| Fixed #22725 - Migration.run_before does nothing | |||
| 2014-06-06 | Replaced an explicit vendor check by a feature flag. | Aymeric Augustin | |
| Forward-port of c9aedce0 from stable/1.7.x. | |||
| 2014-06-05 | Fixed #20550 -- Added keepdb argument to destroy_test_db | Greg Chapple | |
| 2014-06-05 | Fixed #10811 -- Made assigning unsaved objects to FK, O2O, and GFK raise ↵ | Anubhav Joshi | |
| ValueError. This prevents silent data loss. Thanks Aymeric Augustin for the initial patch and Loic Bistuer for the review. | |||
| 2014-06-05 | Added a flag for the ability to introspect nullable fields. | Aymeric Augustin | |
| Previously this was conflated with another Oracle-specific behavior. | |||
| 2014-06-02 | Fixed #22690 -- Added a check for proxy models containing fields. | Craig de Stigter | |
| Removed the FieldError raised by ModelBase.__new__ in this case. | |||
