| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2013-07-22 | Make migrate command recognise prefixes and 'zero'. | Andrew Godwin | |
| 2013-07-02 | Merge branch 'master' into schema-alteration | Andrew Godwin | |
| 2013-06-28 | Removed 'cleanup' management command as per deprecation TL. | Ramiro Morales | |
| 2013-06-28 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/db/backends/__init__.py django/db/models/fields/related.py tests/field_deconstruction/tests.py | |||
| 2013-06-25 | Fixed #20653 -- Renamed checksetup management command. | Russell Keith-Magee | |
| This is to allow future compatibility with work that is ongoing in the 2013 GSoC. | |||
| 2013-06-22 | Fixed #20311 -- Make sure makemessages doesn't create duplicate Plural-Forms ↵ | Ramiro Morales | |
| .po file headers. Thanks naktinis for the report and initial patch. | |||
| 2013-06-20 | Rename makemigration to makemigrations | Andrew Godwin | |
| 2013-06-20 | Fixed #20632 -- Fixed {{ docs_version }} in project template | Baptiste Mispelon | |
| 2013-06-19 | Autodetect fields, have migrate actually work | Andrew Godwin | |
| 2013-06-19 | Makemigration command now works | Andrew Godwin | |
| 2013-06-19 | Removed several unused imports. | Aymeric Augustin | |
| 2013-06-19 | First stab at some migration creation commands | Andrew Godwin | |
| 2013-06-19 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/db/models/loading.py | |||
| 2013-06-14 | Fixed python 3.2 compat. | Florian Apolloner | |
| 2013-06-13 | Added a ``checksetup`` management command for verifying Django compatibility. | Daniel Lindsley | |
| 2013-06-12 | Fixed #20579 -- Improved TransactionTestCase.available_apps. | Aymeric Augustin | |
| Also moved its documentation to the 'advanced' section. It doesn't belong to the 'overview'. Same for TransactionTestCase.reset_sequences. When available_apps is set, after a TransactionTestCase, the database is now totally empty. post_syncdb is fired at the beginning of the next TransactionTestCase. Refs #20483. | |||
| 2013-06-10 | Added a stealth option to flush to allow cascades. | Aymeric Augustin | |
| This allows using flush on a subset of the tables without having to manually cascade to all tables with foreign keys to the tables being truncated, when they're known to be empty. On databases where truncate is implemented with DELETE FROM, this doesn't make a difference. The cascade is allowed, not mandatory. | |||
| 2013-06-09 | Added runserver validation to detect if DEBUG=False and ALLOWED_HOSTS is empty. | Tim Graham | |
| Refs #19875. | |||
| 2013-06-07 | Fixed #19925 - Added validation for REQUIRED_FIELDS being a list | Chris Streeter | |
| Thanks Roman Alexander for the suggestion. | |||
| 2013-06-07 | Initial stab at a migrate command, it's probably quite a way off. | Andrew Godwin | |
| 2013-06-07 | Merge remote-tracking branch 'core/master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/db/models/fields/related.py | |||
| 2013-06-03 | Fixed loaddata for Django checkouts with non ASCII chars in the name. | Florian Apolloner | |
| 2013-06-03 | Fixed small regression from 51aa000378. | Aymeric Augustin | |
| A test failed if the path to the Django checkout contained a dot. Refs #20485. | |||
| 2013-06-02 | Fixed #20485 -- Refactored loaddata for speed. | Aymeric Augustin | |
| Thanks Anssi for reporting this performance bottleneck. | |||
| 2013-05-31 | Improved the usage message of the test command. | René Fleschenberg | |
| 2013-05-30 | Fixed #20509 - Proper parsing for dumpdata --pks option. | Tim Graham | |
| Thanks weipin for the report and Baptiste Mispelon for the patch. | |||
| 2013-05-29 | Fixed #15697 -- Made sqlindexes aware of auto-created tables | Claude Paroz | |
| Thanks mbertheau for the report and Ash Christopher for the initial patch. | |||
| 2013-05-28 | Fixed #20484 -- Added model validation for GenericIPAddressField | Tim Graham | |
| GenericIPAddressField must not allow blank for NOT NULL fields Thanks Erik Romijn. | |||
| 2013-05-26 | Replaced `and...or...` constructs with PEP 308 conditional expressions. | Ramiro Morales | |
| 2013-05-23 | Fixed #11398 - Added a pre_syncdb signal | Donald Stufft | |
| 2013-05-22 | Removed check for 0.15 version of gettext tools | Claude Paroz | |
| gettext 0.15 has been released in July 2006. | |||
| 2013-05-20 | Fixed #20445 -- Raised original exception after command error | Jorge Bastida | |
| 2013-05-19 | Fixed #16330 -- added --pks option in dumpdata command | Preston Holmes | |
| Thanks to guettli for the initial ticket and patch, with additional work from mehmetakyuz and Kevin Brolly. | |||
| 2013-05-19 | Fixed #18990 -- Loaddata now complains if fixture doesn't exist | Senko Rasic | |
| If the fixture doesn't exist, loaddata will output a warning. The fixture named "initial_data" is exceptional though; if it doesn't exist, the warning is not emitted. This allows syncdb and flush management commands to attempt to load it without causing spurious warnings. Thanks to Derega, ptone, dirigeant and d1ffuz0r for contributions to the ticket. | |||
| 2013-05-19 | Fixed #18990: Loaddata now complains if fixture doesn't exist | Senko Rasic | |
| The fixture named "initial_data" is exceptional though; if it doesn't exist, the error is not raised. This allows syncdb and flush management commands to attempt to load it without causing an error if it doesn't exist. | |||
| 2013-05-18 | Fixed #20430 - Enable iterable of iterables for model choices | Donald Stufft | |
| Allows for any iterable, not just lists or tuples, to be used as the inner item for a list of choices in a model. | |||
| 2013-05-18 | Fixed #20422 -- Applied makemessage's --ignore patterns to full path | Baptiste Mispelon | |
| Fix makemessage's --ignore patterns being applied to the full path instead of the file name. Thanks to nnseva for the report and the original patch. | |||
| 2013-05-18 | Merge branch 'master' into schema-alteration | Andrew Godwin | |
| 2013-05-17 | Replaced an antiquated pattern. | Aymeric Augustin | |
| Thanks Lennart Regebro for pointing it out. | |||
| 2013-05-14 | Fixed #19934 - Use of Pillow is now preferred over PIL. | Daniel Lindsley | |
| This starts the deprecation period for PIL (support to end in 1.8). | |||
| 2013-05-10 | Merge branch 'master' into schema-alteration | Andrew Godwin | |
| 2013-05-08 | Fixed #20256 -- Corrected startproject --template help text | Claude Paroz | |
| Thanks n0nam3 for the patch. | |||
| 2013-05-07 | Fixed #20354 -- `makemessages` no longer crashes with `UnicodeDecodeError` | Tai Lee | |
| Handle the `UnicodeDecodeError` exception, send a warning to `stdout` with the file name and location, and continue processing other files. | |||
| 2013-04-18 | Merge branch 'master' into schema-alteration | Andrew Godwin | |
| Conflicts: django/db/backends/__init__.py django/db/backends/mysql/base.py django/db/backends/oracle/base.py django/db/backends/oracle/creation.py django/db/backends/postgresql_psycopg2/base.py django/db/backends/sqlite3/base.py django/db/models/fields/related.py | |||
| 2013-04-01 | Fixed #5014 -- Guessed max_digits and decimal_places for SQLite | Claude Paroz | |
| Decimal is treated as float on SQLite, hence inspectdb can only guess max_digits and decimal_places arguments. | |||
| 2013-03-24 | Fixed #18985 -- ensure module level deprecations are displayed | Preston Holmes | |
| Also don't compete with -W CLI option. Thanks to Aymeric Augustin for the catch, and Claude Paroz for the patch. | |||
| 2013-03-24 | Fixed #19385 again, now with real code changes | Anssi Kääriäinen | |
| The commit of 266de5f9ae9e9f2fbfaec3b7e4b5fb9941967801 included only tests, this time also code changes included... | |||
| 2013-03-19 | Fixed #18003 -- Preserved tracebacks when re-raising errors. | konarkmodi | |
| Thanks jrothenbuhler for draft patch, Konark Modi for updates. | |||
| 2013-03-18 | Fixed #17037 -- Added a --all option to diffsettings. | Aymeric Augustin | |
| 2013-03-16 | Fix #20058: Make compilemessages use stdout instead of stderr. | Baptiste Mispelon | |
