summaryrefslogtreecommitdiff
path: root/docs/releases
AgeCommit message (Collapse)Author
2014-12-22Fixed #23998 -- Added datetime.time support to migrations questioner.Oscar Ramirez
2014-12-20Fixed #2443 -- Added DurationField.Marc Tamlyn
A field for storing periods of time - modeled in Python by timedelta. It is stored in the native interval data type on PostgreSQL and as a bigint of microseconds on other backends. Also includes significant changes to the internals of time related maths in expressions, including the removal of DateModifierNode. Thanks to Tim and Josh in particular for reviews.
2014-12-19Added upgrade instructions for deprecated model _meta permission methods.Tim Graham
2014-12-19Updated some other external links in the docsClaude Paroz
2014-12-19Used https for most *.python.org linksClaude Paroz
2014-12-19Used the :ticket: syntax more extensivelyClaude Paroz
2014-12-18Forward-ported test and release note from f46a16614Claude Paroz
Refs #24015.
2014-12-18Fixed #24014 -- Unified OGRException and GDALExceptionClaude Paroz
Thanks Tim Graham for the review.
2014-12-17Fixed #24007 -- Ensure apps registry's ready before unpickling modelsClaude Paroz
This prevents AppRegistryNotReady errors when unpickling Django models from an external script.
2014-12-17Fixed #23497 -- Made admin system checks run for custom AdminSites.Mosson, Andrew
2014-12-17Fixed display of lists after website redesignMarkus Holtermann
Thanks Brian Jacobel for the report. refs django/djangoproject.com#197
2014-12-16Fixed the formatting of one section of the security pageAlex Gaynor
2014-12-16Fixed #23975 -- Restored pre_migrate signal if all apps have migrations.Tim Graham
Thanks kmmbvnr for the report.
2014-12-16Fixed #23983 -- Fixed a crash in migrations when adding ↵Andriy Sokolovskiy
order_with_respect_to to non-empty table.
2014-12-15Fixed #23405 -- Fixed makemigrations prompt when adding Text/CharField.Andriy Sokolovskiy
A default is no longer required.
2014-12-15Fixed typos in docs/releases/1.7.2.txt.Tim Graham
2014-12-15Fixed #23987 -- Made SQLite SchemaEditor always use effective_default().Andriy Sokolovskiy
2014-12-15Fixed #23884 -- Moved FlatPageSitemap into django.contrib.flatpages.Berker Peksag
2014-12-15Fixed #23822 -- Added support for serializing model managers in migrationMarkus Holtermann
Thanks to Shai Berger, Loïc Bistuer, Simon Charette, Andrew Godwin, Tim Graham, Carl Meyer, and others for their review and input.
2014-12-14Fixed timesince translations for KoreanJuneHyeon Bae
Refs #23989. Forward port of eb632bfba from stable/1.7.x.
2014-12-13Ammended release notes for Refs #23969Shai Berger
(this includes a forward-port of 9189ef438ef885446b20bf4c017d3cf53335ab08)
2014-12-12Fixed #23455 -- Accept either bytes or text for related_name, convert to text.Carl Meyer
2014-12-12Revert "Fixed #23455 -- Forced related_name to be a unicode string during ↵Carl Meyer
deconstruction." This reverts commit 45bd7b3bd9008941580c100b9fc7361e3ff3ff0d.
2014-12-12Fixed #23857 -- Fixed admin crash with "save as new" and deleting inline.Tim Graham
Thanks amarandon for the report.
2014-12-12Refs #20392 -- Load fixtures once within TestCaseThomas Chaumeny
2014-12-12Fixed #23674 -- Fixed a crash when a MultiValueField has invalid data.Grzegorz Slusarek
2014-12-11Appeased spell checker.Tim Graham
2014-12-11Fixed #23977 -- Added setdefault() method to HttpResponseSergey Parkhomenko
2014-12-11Fixed #23956 -- Fixed migration creation for multiple table inheritanceMarkus Holtermann
2014-12-09Remove text-mangling of default values.Marc Tamlyn
2014-12-08Ran 'CREATE EXTENSION postgis' during prepare_database hookClaude Paroz
DatabaseWrapper.prepare_database has been introduced in 307de67073.
2014-12-05Fixed #23957 -- Started deprecation toward requiring session verification.Tim Graham
Thanks Carl Meyer for review.
2014-12-04Removed stray conflict line in 1.7.2 release notes.Tim Graham
2014-12-04Fixed #23954 -- Added special text/varchar PostgreSQL indexes in migrationsClaude Paroz
Thanks adityagupta104 for the report and Tim Graham for the review.
2014-12-04Fixed #23920 -- Fixed MySQL crash when adding blank=True to TextField.Tim Graham
Thanks wkornewald for the report and Markus Holtermann for review.
2014-12-04Fixed #23911 -- Added support for buffer file uploads in the test clientThomas Tanner
2014-12-03Fixed #23939 -- Moved session verification out of ↵Tim Graham
SessionAuthenticationMiddleware. Thanks andrewbadr for the report and Carl Meyer for the review.
2014-12-03Fixed #20392 -- Added TestCase.setUpTestData()Thomas Chaumeny
Each TestCase is also now wrapped in a class-wide transaction.
2014-12-03Fixed #23950 -- Prevented calling deconstruct on classes in MigrationWriter.Gavin Wahl
2014-12-02Fixed #23946 -- Fixed runserver crash when socket error contains Unicode chars.Andriy Sokolovskiy
2014-12-02Fixed #23934 -- Fixed regression in admin views obj parameter.Kamil Braun
2014-12-01Fixed #23945 -- Made default site use the configured SITE_ID.wrwrwr
2014-12-01Fixed #23909 -- Prevented crash when collecting SQL for RunSQLClaude Paroz
Thanks James Rivett-Carnac for the report and Markus Holtermann for the review.
2014-12-01Fixed #23933 -- Made override_settings(DATABASE_ROUTERS) affect the master ↵wrwrwr
router.
2014-12-01Fixed #23880 -- Added missing index_together handling for SQLiteMarkus Holtermann
2014-11-29Fixed #17890 -- Added an extra_context parameter to AdminSite.password_change().Berker Peksag
2014-11-28Fixed #23423 -- Added unaccent lookup in django.contrib.postgresThomas Chaumeny
2014-11-28Fixed #23728 -- Added the --exit option to makemigrations.Tim Heap
If no changes that need migrations are found, `makemigrations --exit` exits with error code 1.
2014-11-28Fixed #901 -- Added Model.refresh_from_db() methodAnssi Kääriäinen
Thanks to github aliases dbrgn, carljm, slurms, dfunckt, and timgraham for reviews.
2014-11-28Fixed #23910 -- Added reply_to parameter to EmailMessageMartin Blech
Thanks to Berker Peksag and Tim Graham for the review and suggestions.