| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-09-25 | Fixed #3871 -- Custom managers when traversing reverse relations. | Loic Bistuer | |
| 2013-09-25 | Fixed #21126 -- QuerySet value conversion failure | Anssi Kääriäinen | |
| A .annotate().select_related() query resulted in misaligned rows vs columns for compiler.resolve_columns() method. Report & patch by Michael Manfre. | |||
| 2013-09-25 | Add reverse_code optional argument to RunPython | Andrew Godwin | |
| 2013-09-25 | Allow callables as the argument to RunPython | Andrew Godwin | |
| 2013-09-25 | Make sqlmigrate ignore the RunPython operation | Andrew Godwin | |
| 2013-09-25 | Add RunPython migration operation and tests | Andrew Godwin | |
| 2013-09-25 | Add equality support for Project/ModelState | Andrew Godwin | |
| 2013-09-24 | Added '*' to quote_cache | Anssi Kääriäinen | |
| The commit for #18333 missed quote_cache default value for *. Refs #18333. | |||
| 2013-09-24 | Fixed #18333 - Quoted annotated column names | Michael Manfre | |
| 2013-09-24 | Fix small grammatical error in comment. | Andrei Picus | |
| Changed 'there are no filtering' to 'there is no filtering'. | |||
| 2013-09-24 | Removed double import in mysql base.py | Claude Paroz | |
| 2013-09-22 | Removed a few trailing backslashes. | Aymeric Augustin | |
| We have always been at war with trailing backslashes. | |||
| 2013-09-18 | Fixed #12568 -- no error when accessing custom field's descriptor | Anssi Kääriäinen | |
| The SubfieldBase's descriptor caused an AttributeError when accessed from the class. Introspection didn't like that. Patch by Trac alias supervacuo. | |||
| 2013-09-17 | Fixed #21114 -- Migrations must not have a dependency to themselves. | Markus Holtermann | |
| 2013-09-17 | Fixed #21109 -- made db cursor error wrapping faster | Anssi Kääriäinen | |
| 2013-09-16 | Added backwards compatability shims for util modules. | Tim Graham | |
| refs #17627 | |||
| 2013-09-16 | Fixed #17627 -- Renamed util.py files to utils.py | Tim Graham | |
| Thanks PaulM for the suggestion and Luke Granger-Brown and Wiktor Kołodziej for the initial patch. | |||
| 2013-09-14 | REmoved some unused imports | Alex Gaynor | |
| 2013-09-14 | Merge branch 'master' of https://github.com/django/django | Alex Gaynor | |
| 2013-09-14 | Removed an import * that was masking importing stuff from the wrong location | Alex Gaynor | |
| 2013-09-14 | Fixed #20950 -- Instantiate OrderedDict() only when needed | Anssi Kääriäinen | |
| The use of OrderedDict (even an empty one) was surprisingly slow. By initializing OrderedDict only when needed it is possible to save non-trivial amount of computing time (Model.save() is around 30% faster for example). This commit targetted sql.Query only, there are likely other places which could use similar optimizations. | |||
| 2013-09-14 | Fixed #21097 - Added DatabaseFeature.can_introspect_autofield | Michael Manfre | |
| 2013-09-10 | Fixed #20841 -- Added messages to NotImplementedErrors | Gregor MacGregor | |
| Thanks joseph at vertstudios.com for the suggestion. | |||
| 2013-09-10 | Made MigrationWriter look for a "deconstruct" attribute on functions. | Loic Bistuer | |
| Refs #20978. | |||
| 2013-09-10 | Fixed #20978 -- Made deletion.SET_NULL more friendly for ↵ | Loic Bistuer | |
| MigrationWriter.serialize. | |||
| 2013-09-09 | Fixed #20707 -- Added explicit quota assignment to Oracle test user | Садовский Николай | |
| To enable testing on Oracle 12c | |||
| 2013-09-08 | Removed an unused local var | Alex Gaynor | |
| 2013-09-07 | Negligible style fix. | Aymeric Augustin | |
| 2013-09-07 | RunSQL migration operation and alpha SeparateDatabaseAndState op'n. | Andrew Godwin | |
| 2013-09-06 | Fixed a number of flake8 errors -- particularly around unused imports and ↵ | Alex Gaynor | |
| local variables | |||
| 2013-09-07 | Fixed regression introduced by efd1e60, 'map' returns an iterator on PY3. | Loic Bistuer | |
| 2013-09-06 | Fixed #20007 -- Configured psycopg2 to return UnicodeArrays | Eric Boersma | |
| Thanks hogbait for the report. | |||
| 2013-09-06 | Fixed #21037 -- Made MigrationWriter raise a ValueError when serializing ↵ | Loic Bistuer | |
| lambda functions. | |||
| 2013-09-06 | Fixed #11811 -- Data-loss bug in queryset.update. | Aymeric Augustin | |
| It's now forbidden to call queryset.update(field=instance) when instance hasn't been saved to the database ie. instance.pk is None. | |||
| 2013-09-06 | Minor factorization. | Aymeric Augustin | |
| 2013-09-06 | Adding 'sqlmigrate' command and quote_parameter to support it. | Andrew Godwin | |
| 2013-09-06 | Migration autodetector now corerctly deals with proxy models | Andrew Godwin | |
| 2013-09-06 | Project/ModelState now correctly serialize multi-model inheritance | Andrew Godwin | |
| 2013-09-06 | Fixed #10164 -- Made AutoField increase monotonically on SQLite | Chris Wilson | |
| Thanks malte for the report. | |||
| 2013-09-06 | Fix SchemaEditor.__exit__ to handle exceptions correctly | Andrew Godwin | |
| 2013-09-06 | Add --list option to migrate command | Andrew Godwin | |
| 2013-09-06 | Make db.migrations ignore South-style migrations. | Andrew Godwin | |
| 2013-09-06 | Fixed #21015 -- Fixed MigrationLoader when importlib.import_module returns a ↵ | Loic Bistuer | |
| file module or an empty directory. | |||
| 2013-09-06 | Fixed #21014 -- Fixed gobbled ImportError in MigrationLoader. | Loic Bistuer | |
| 2013-09-05 | Fixed #21035 -- Changed docs to treat the acronym SQL phonetically. | Eric Boersma | |
| The documentation and comments now all use 'an' to refer to the word SQL and not 'a'. | |||
| 2013-09-04 | Tested exc_type instead of exc_value in __exit__. | Aymeric Augustin | |
| exc_value might be None even though there's an exception, at least on Python 2.6. Thanks Thomas Chaumeny for the report. Fixed #21034. Forward-port of a8624b2 from 1.6.x. | |||
| 2013-09-04 | Fixed #21010 -- Changed ModelState to only copy _meta.local_fields. | Loic Bistuer | |
| 2013-09-02 | Used six.moves.zip_longest, new in six 1.4.0. | Aymeric Augustin | |
| 2013-09-02 | Replaced "not PY3" by "PY2", new in six 1.4.0. | Aymeric Augustin | |
| 2013-08-31 | Fixed #21008 -- Made MigrationWriter handle Promise objects. | Loic Bistuer | |
