| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2015-06-10 | Fix for ticket 12685 | mick | |
| 2015-06-09 | Fixed #24769 -- Cast optparse verbosity argument to an integer for better ↵ | Rivo Laks | |
| backwards compatibility. Using `BaseCommand.options_list` makes Django use the legacy optparse parser, which does not set the verbosity attribute correctly. Now the verbosity argument is always cast to int. Regression in 8568638 (#19973). Initial report and patch from blueyed. | |||
| 2015-06-06 | Fixed #24922 -- Added system check for templates setting | Sergei Maertens | |
| If `'loaders'` is present in the `TEMPLATES` options together with `APP_DIRS` set to `True`, the template engine raises an exception. This conflict is now detected by the system check templates.E001. | |||
| 2015-06-06 | Fixed #24906 -- Fixed ResolverMatch.app_name for nested namespaces. | Marten Kenbeek | |
| Set ResolverMatch.app_name to the full path of nested application namespaces. | |||
| 2015-06-05 | Fixed #24904 -- Fixed nested namespaces in current_app. | Marten Kenbeek | |
| Fixed reverse() to correctly handled nested namespace lookups in current_app. | |||
| 2015-06-04 | Fixed #24159 -- Made compilemessages run across all apps. | Matthew Somerville | |
| Updated the command to match the documentation, which states it runs over all .po files. | |||
| 2015-05-22 | Fixed #24776 -- Improved apps.get_app_config() error message on ↵ | Peter Inglesby | |
| fully-qualified package names. | |||
| 2015-05-18 | Fixed #24805 -- Delayed check for locale_dir in makemessages | Claude Paroz | |
| Thanks Wim Feijen for the report. | |||
| 2015-05-17 | Refactored datetime handling in the database cache backend. | Aymeric Augustin | |
| Took advantage of the new database adapters and converters. | |||
| 2015-05-17 | Renamed value_to_db_xxx to adapt_xxxfield_value. | Aymeric Augustin | |
| This mirrors convert_xxxfield_value nicely, taking advantage of the adapter/converter terminology which is commonly used by DB-API modules. | |||
| 2015-05-17 | Removed global timezone-aware datetime converters. | Aymeric Augustin | |
| Refs #23820. | |||
| 2015-05-13 | Removed unnecessary arguments in .get method calls | Piotr Jakimiak | |
| 2015-05-13 | Fixed #24742 -- Made runserver.check_migrations ignore read-only databases | Claude Paroz | |
| Thanks Luis Del Giudice for the report, and Aymeric Augustin and Markus Holtermann for the reviews. | |||
| 2015-05-12 | Allowed runserver sublcasses to easily override the default port. | Matt Robenolt | |
| 2015-05-11 | Fixed #24733 -- Passed the triggering exception to 40x error handlers | Claude Paroz | |
| Thanks Tim Graham for the review. | |||
| 2015-05-05 | Extended variable name in handlers/base.py | Claude Paroz | |
| Refs #24733. | |||
| 2015-05-02 | Fixed #24693 -- Added label and label_lower property to Model._meta | Luis Del Giudice | |
| 2015-05-01 | Fixed #23271 -- Fixed makemessages crash/test failure for some locales. | daphshez | |
| 2015-04-26 | Fixed #24707 -- Improved error reporting for explicitly imported uncallable ↵ | Harry | |
| views | |||
| 2015-04-25 | Fixed #24703 -- Changed squashmigrations to use a MigrationLoader | Marten Kenbeek | |
| Changed squashmigrations to not instantiate a MigrationExecutor, but to directly use a MigrationLoader instance instead. | |||
| 2015-04-20 | Fixed #24664 -- Removed misleading arg name from ↵ | David Danier | |
| TemporaryFileUploadHandler.new_file | |||
| 2015-04-18 | Fixed #23879 -- Allowed model migration skip based on feature/vendor | Claude Paroz | |
| Thanks Carl Meyer for the report and review, and Tim Graham for the review. | |||
| 2015-04-17 | Fixed #24349 -- Limited domain name labels to 63 characters in EmailValidator | Anoop Thomas Mathew | |
| 2015-04-16 | Fixed #21652 -- Added notification when processing objects in loaddata | Yitzhak Clark | |
| Added a running count of the objects processed by loaddata when verbosity >= 3. | |||
| 2015-04-14 | Added missing periods in migrate help messages. | Joe Borg | |
| 2015-04-09 | Fixed #24560 -- Added a --dry-run mode to the createcachetable command. | Adam Chainz | |
| 2015-04-09 | Fixed #19820 -- Added more helpful error messages to Python deserializer. | Richard Eames | |
| 2015-04-08 | Removed unused exception "as" variable. | Tim Graham | |
| 2015-04-07 | Fixed #24544 -- Fixed get_image_dimensions() on image buffers that Pillow ↵ | steve | |
| fails to parse. Thanks Steve Kossouho for the report and original patch. | |||
| 2015-04-04 | Fixed #24571 -- Restored testserver positional arguments parsing | Claude Paroz | |
| Thanks Domas Lapinskas for the report and Tim Graham for the review. | |||
| 2015-04-02 | Fixed typo in django.core.files.File docstring. | Matt Hooks | |
| 2015-04-02 | Fixed #24558 -- Made dumpdata mapping ordering deterministic. | Simon Charette | |
| Thanks to gfairchild for the report and Claude for the review. | |||
| 2015-04-01 | Removed unused import in makemessages | Claude Paroz | |
| 2015-04-01 | Refs #24500 -- Avoided locale.getpreferredencoding in makemessages | Claude Paroz | |
| Fixes a regression introduced in 53c2cf1e. | |||
| 2015-03-25 | Fixed #24531 -- Improved CommaSeparatedIntegerField validation. | Bertrand Bordage | |
| `','`, `'1,,1'`, `',1'` etc. are no longer considered as valid comma-separated integer lists. | |||
| 2015-03-25 | Fixed #24441 -- Changed get_image_dimensions() return value for broken images | Raúl Cumplido | |
| 2015-03-25 | Renamed Field.rel attribute to remote_field | Anssi Kääriäinen | |
| Field.rel is now deprecated. Rel objects have now also remote_field attribute. This means that self == self.remote_field.remote_field. In addition, made the Rel objects a bit more like Field objects. Still, marked ManyToManyFields as null=True. | |||
| 2015-03-21 | Fixed #24500 -- Fixed makemessages encoding problems retrieving gettext version. | Pakal | |
| 2015-03-20 | Removed unused imports. | Tim Graham | |
| 2015-03-20 | Adapted sendtestemail to be more argparse-ish | Claude Paroz | |
| 2015-03-20 | Fixed #24419 -- Added sendtestemail management command | Loek van Gent | |
| 2015-03-18 | Fixed #23960 -- Removed http.fix_location_header | Claude Paroz | |
| Thanks Carl Meyer for the report and Tim Graham for the review. | |||
| 2015-03-18 | Fixed #24476 -- Added context manager/decorator for overriding script prefix. | Bas Peschier | |
| Tests were using an undocumented keyword argument for easily overriding script prefix while reversing. This is now changed into a test utility which can be used as decorator or context manager. | |||
| 2015-03-16 | Fixed #24427 -- Stopped writing migration files in dry run mode when merging. | John Giannelos | |
| Also added display of migration to stdout when verbosity=3. | |||
| 2015-03-14 | Fixed #12982 -- Added a get_or_set() method to the BaseCache backend. | Berker Peksag | |
| 2015-03-13 | Fed tuples to startswith when appropriate | Claude Paroz | |
| 2015-03-13 | Fixed #24416 -- Added support for lazy email addresses. | medmunds | |
| 2015-03-13 | Fixed #24122 -- Redirected to translated url after setting language | Claude Paroz | |
| Thanks gbdlin for the initial patch and Tim Graham for the review. | |||
| 2015-03-12 | Fixed #24013 -- Fixed escaping of reverse() prefix. | Bas Peschier | |
| Prefix was treated as a part of the url pattern, which it is not. Improved tests to conform with RFC 3986 which allows certain characters in path segments without being escaped. | |||
| 2015-03-12 | Fixed #12943 -- Allowed unnamed arguments to be propagated in includes | Bas Peschier | |
| Propagated unnamed arguments as positional arguments into included URLconfs if no named arguments are defined. Positional and keyword arguments are never combined. | |||
