summaryrefslogtreecommitdiff
path: root/docs/releases
AgeCommit message (Collapse)Author
2015-02-16Fixed #24335 -- Bumped required psycopg2 version to 2.4.5 (2.5 for ↵Tim Graham
contrib.postgres).
2015-02-15Deprecated TEMPLATE_DEBUG setting.Aymeric Augustin
2015-02-14Fixed #24318 -- Set the transaction isolation level with psycopg >= 2.4.2.Aymeric Augustin
2015-02-14Fixed #24325 -- Documented change in ModelForm.save() foreign key access.Tim Graham
2015-02-14Fixed #15779 -- Allowed 'add' primary key in admin editionClaude Paroz
Thanks Marwan Alsabbagh for the report, and Simon Charette and Tim Graham for the reviews.
2015-02-13Fixed #24184 -- Prevented automatic soft-apply of migrationsMarkus Holtermann
Previously Django only checked for the table name in CreateModel operations in initial migrations and faked the migration automatically. This led to various errors and unexpected behavior. The newly introduced --fake-initial flag to the migrate command must be passed to get the same behavior again. With this change Django will bail out in with a "duplicate relation / table" error instead. Thanks Carl Meyer and Tim Graham for the documentation update, report and review.
2015-02-13Fixed #24295 -- Allowed ModelForm meta to specify form field classes.Loic Bistuer
Thanks Carl Meyer and Markus Holtermann for the reviews.
2015-02-13Fixed #24332 -- Fixed contrib.sites create_default_site() when 'default' ↵Tim Graham
DATABASES is empty.
2015-02-12Forwardported item in 1.7.5 release notes.Tim Graham
2015-02-10Fixed #24200 -- Made introspection bypass statement cacheJosh Smeaton
2015-02-07Revert "Fixed #24075 -- Prevented running post_migrate signals when ↵Markus Holtermann
unapplying initial migrations of contenttypes and auth" This reverts commit 737d24923ac69bb8b89af1bb2f3f4c4c744349e8.
2015-02-05Fixed #6707 -- Added RelatedManager.set() and made descriptors' __set__ use it.Loic Bistuer
Thanks Anssi Kääriäinen, Carl Meyer, Collin Anderson, and Tim Graham for the reviews.
2015-02-04Fixed #24235 -- Removed is_usable attribute from template loaders.Preston Timmons
2015-02-03Fixed #24149 -- Normalized tuple settings to lists.darkryder
2015-02-03Fixed #18651 -- Enabled optional assignments for simple_tag().Preston Timmons
2015-02-03Fixed #23617 -- Added get_pk_value_on_save()Anssi Kääriäinen
The method is mainly intended for use with UUIDField. For UUIDField we want to call the field's default even when primary key value is explicitly set to None to match the behavior of AutoField. Thanks to Marc Tamlyn and Tim Graham for review.
2015-01-31Fixed #24245 -- Added introspection for database defaults.Tim Graham
Needed for tests for migrations handling of database defaults.
2015-01-31Fixed #24208 -- Documented changes in private model relations.Tim Graham
2015-01-30Fixed #14483 -- Allowed using subqueries with GIS lookupsClaude Paroz
2015-01-30Fixed #24211 -- Removed ValuesQuerySet() and ValuesListQuerySet().Loic Bistuer
Thanks Anssi Kääriäinen, Marc Tamlyn, and Tim Graham for the reviews.
2015-01-30Fixed #24164 -- Fixed Oracle GIS limited aggregation test failure.Tim Graham
2015-01-28Fixed #24137 -- Switched to HTTP reason phrases from Python stdlib.Jon Dufresne
2015-01-28Added stub 1.7.5 release notes.Tim Graham
2015-01-28Fixed typo in docs. Thanks Berker.Loic Bistuer
2015-01-27Corrected naming of method and attributeMarkus Holtermann
2015-01-27Added 1.4.19 release notes.Tim Graham
2015-01-27Fixed #24219 -- Moved SelectDateWidget together with the other widgetsLoic Bistuer
and deprecated django.forms.extras. Thanks Berker Peksag and Tim Graham for the reviews.
2015-01-27Refs #24104 -- Added missing release notesMarkus Holtermann
Forwardport of 3d4a826174b7a411a03be39725e60c940944a7fe from stable/1.7.x
2015-01-27Fixed #24053 -- Removed admin CSS & images for IE6 & 7.seanwestfall
2015-01-27Refs #24154 -- Added deprecation release notesJosh Smeaton
2015-01-23Fixed #24205 -- Deprecated Signal.disconnect weak parameter.Florian Apolloner
2015-01-23Fixed warning leak in static.serve() testClaude Paroz
Partial forward port of b1bf8d64fb from 1.7.x. Refs #24193.
2015-01-20Fixed #24177 -- Added documentation about database view support in inspectdbFabio C. Barrionuevo da Luz
2015-01-19Removed IPAddressField per deprecation timeline; refs #20439.Tim Graham
2015-01-19Fixed #24163 -- Removed unique constraint after index on MySQLMarkus Holtermann
Thanks Łukasz Harasimowicz for the report.
2015-01-19Added deprecation docs for legacy lookup support; refs #16187.Tim Graham
2015-01-18Copied additional items from deprecation timeline to 1.9 release notes.Tim Graham
2015-01-18Added missing items to deprecation timeline/1.7 release notes.Tim Graham
2015-01-18Clarified deprecation of forms.forms.get_declared_fields(); refs #19617.Tim Graham
2015-01-18Removed support for syncing apps without migrations per deprecation timeline.Tim Graham
Kept support for creating models without migrations when running tests (especially for Django's test suite).
2015-01-18Clarified deprecation of test.utils.TestTemplateLoader.Tim Graham
2015-01-18Clarified a contrib.sites deprecation and added to 1.7 release notes.Tim Graham
2015-01-18Removed utils.module_loading.import_by_path() per deprecation timeline; refs ↵Tim Graham
#21674.
2015-01-17Added removal of check management command to deprecation timeline.Tim Graham
2015-01-17Removed the validate management command per deprecation timeline.Tim Graham
2015-01-17Removed support for custom SQL per deprecation timeline.Tim Graham
2015-01-17Fixed #24055 -- Keep reference to view class for resolve()Collin Anderson
2015-01-17Removed django.core.cache.get_cache() per deprecation timeline; refs #21012.Tim Graham
2015-01-17Removed the syncdb command per deprecation timeline.Tim Graham
2015-01-17Removed pre_syncdb and post_syncdb signals per deprecation timeline.Tim Graham