summaryrefslogtreecommitdiff
path: root/django
AgeCommit message (Collapse)Author
2015-01-05Closed files in FileResponse; refs #24072Collin Anderson
2015-01-05Refs #23359 -- Removed double newline from output of migrate --listMarkus Holtermann
Thanks Berker Peksag for the review.
2015-01-05Fixed #23861 -- Added an API to deprecate model fields.Tim Graham
Thanks Markus Holterman and Berker Peksag for review.
2015-01-05Fixed #8280 -- Allowed management command discovery for eggsClaude Paroz
Thanks jdetaeye for the report, bhuztez and jdetaeye for the initial patches, Tim Graham and Berker Peksag for the reviews.
2015-01-05Fixed #24072 -- Added FileResponse for streaming binary files.Collin Anderson
2015-01-05Renamed flag for detecting managers built from QuerySets with as_manager().Markus Holtermann
2015-01-03Removed extraneous super call in LiveServerTestCaseClaude Paroz
Refs #21281. Thanks Tim Graham and Thomas Chaumeny for investigations.
2015-01-02Updated six to 1.9.0.Tim Graham
2015-01-02Fixed #24064 -- Prevented database access at compile time in spatialite models.Andriy Sokolovskiy
2015-01-02Added return value to Signal.disconnect().Andriy Sokolovskiy
2015-01-02Fixed #9104 -- Moved FieldDoesNotExist to core.exceptionsDaniel Pyrathon
2015-01-02Fixed #23745 -- Reused states as much as possible in migrationsClaude Paroz
Thanks Tim Graham and Markus Holtermann for the reviews.
2015-01-02Passed around the state between migrationsClaude Paroz
Refs #23745.
2015-01-02Show migration elapsed time when verbosity>1Claude Paroz
This facilitates performance debugging related to migrations.
2015-01-02Added ignore_swappable to StateAppsMarkus Holtermann
Refs #23745.
2015-01-02Replaced migration state render() by apps cached propertyClaude Paroz
Refs #23745.
2015-01-02Fixed #24069 -- Made ServerHandler a new style class to fix super() call.Andreas Pelme
2015-01-01Fixed #23891 -- Moved deprecation of IPAddressField to system check framework.Tim Graham
Thanks Markus Holtermann for review.
2014-12-31Fixed #23366 -- Fixed a crash with the migrate --list command.Tim Graham
2014-12-31Fixed #22295 -- Replaced permission check for displaying admin user-toolsThomas Tanner
2014-12-31Fixed #24008 -- Fixed ValidationError crash with list of dicts.Andrey Maslov
2014-12-31Fixed #23359 -- Added showmigrations command to list migrations and plan.Markus Holtermann
Thanks to Collin Anderson, Tim Graham, Gabe Jackson, and Marc Tamlyn for their input, ideas, and review.
2014-12-31Fixed #23758 -- Allowed more than 5 levels of subqueriesPiotr Pawlaczek
Refactored bump_prefix() to avoid infinite loop and allow more than than 5 subquires by extending the alphabet to use multi-letters.
2014-12-31Copied BaseDatabaseCreation._digest() to SchemaEditor to remove dependency.Tim Graham
refs #22340.
2014-12-31Moved DatabaseCreation.data_types properties to DatabaseWrapper.Tim Graham
refs #22340.
2014-12-31Ignored warnings correctly in test_get_formsets_with_inlines_returns_tuples().Berker Peksag
The subclass check in ModelAdmin.get_formsets_with_inlines() wasn't tested correctly because of the super() call in EpisodeAdmin.get_formsets().
2014-12-31Renamed variables to avoid name collision with import of django.db.models.Russell Keith-Magee
2014-12-30Applied ignore_warnings to Django testsClaude Paroz
2014-12-30Added ignore_warnings decoratorClaude Paroz
And removed Ignore*DeprecationWarningsMixin, now obsolete. Thanks Berker Peksag and Tim Graham for the review.
2014-12-30Removed db.backends methods which only call super().Tim Graham
2014-12-30Fixed #12118 -- Added shared cache support to SQLite in-memory testing.Andriy Sokolovskiy
2014-12-30Fixed #23581 -- Prevented extraneous DROP DEFAULT statements.Tim Graham
Thanks john_scott for the report and Markus Holtermann for review.
2014-12-29Fixed breakage by 6fb9dee4 under Python2+Windows.Ramiro Morales
Refs #23271
2014-12-29Fixed #23938 -- Added migration support for m2m to concrete fields and vice ↵Markus Holtermann
versa Thanks to Michael D. Hoyle for the report and Tim Graham for the review.
2014-12-29Fixed #22279 -- Prevented dummy backend going through DatabaseErrorWrapperClaude Paroz
Thanks Daniel Hahler for the report and Tim Graham for the review.
2014-12-29Fixed #21255 -- Closed connections after management command ranClaude Paroz
Thanks kabakov.as@gmail.com for the report, and Aymeric Augustin, Simon Charette for the reviews.
2014-12-29Fixed #23271 -- Don't corrupt PO files on Windows when updating them.Ramiro Morales
Make sure PO catalog text fetched from gettext programs via standard output isn't corrupted by mismatch between assumed (UTF-8) and real (CP1252) encodings. This can cause mojibake to be written when creating or updating PO files. Also fixes #23311. Thanks to contributor with Trac nick 'danielmenzel' for the report, excellent research and fix.
2014-12-29Fixed #23753 -- Oracle failure with CoalesceJosh Smeaton
2014-12-28Explained the structure of django.template.Aymeric Augustin
2014-12-28Raised a warning when using the legacy TEMPLATE_* settings.Aymeric Augustin
All tests now rely on TEMPLATES.
2014-12-28Deprecated TEMPLATE_CONTEXT_PROCESSORS.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_DIRS.Aymeric Augustin
2014-12-28Deprecated TEMPLATE_LOADERS.Aymeric Augustin
2014-12-28Raised an error when allowed_include_roots is a string.Aymeric Augustin
This avoids leaving projects silently vulnerable when this option is set to a string instead of a one-item tuple containing that string, a very common misconfiguration.
2014-12-28Deprecated current_app in TemplateResponse and render(_to_response).Aymeric Augustin
2014-12-28Preserved context class in inclusion_tag.Aymeric Augustin
Previously, when a template was rendered with RequestContext, inclusion tags were rendered with a plain context, losing additional information available in the RequestContext. The (admittedly bizarre) implementation of RequestContext.new() has the side-effect of not running template context processors, making this change backwards-compatible.
2014-12-28Deprecated some arguments of django.shortcuts.render(_to_response).Aymeric Augustin
dictionary and context_instance and superseded by context. Refactored tests that relied context_instance with more modern idioms.
2014-12-28Simplified implementation of django.shortcuts.render(_to_response).Aymeric Augustin
*args, **kwargs brought more confusion than concision.
2014-12-28Moved context_processors from django.core to django.template.Aymeric Augustin
2014-12-28Added a comment about the last use of Engine.get_default().Aymeric Augustin