Fellow Report - August 26, 2017

2017-08-26 Thread Tim Graham
Triaged --- https://code.djangoproject.com/ticket/28513 - LogoutView doesn't support POST, unlike the function-based logout() view (accepted) https://code.djangoproject.com/ticket/28514 - Clarify docs regarding idempotence of RelatedManager.add() (accepted)

Re: I would like to discuss my proposal for a working way to call .add() on an m2m with through= model

2017-08-26 Thread Collin Anderson
Hi All, I have a pull request for simple add()/create() etc with m2m through tables if any wants to try it out: https://github.com/django/django/pull/8981 If people are happy with the API, I'll add the docs too. Collin On Mon, Apr 17, 2017 at 3:53 PM, Luis Masuelli

drop support for MySQL 5.5 in Django 2.0?

2017-08-26 Thread Tim Graham
MySQL 5.5 is end-of-life in December 2018. Usually we drop support for a particular database version in the Django release prior to the end-of-life date [0], so that would mean dropping support in Django 2.1 (released August 2018). We don't have MySQL 5.5 testing in our continuous integration

Re: Feature request: Allow to process data-migrations after flush

2017-08-26 Thread Adam Johnson
I've always thought flush is a weird command because an empty database is very normally useless, because of data migrations. The docs do even say: If you would rather start from an empty database and re-run all migrations, > you should drop and recreate the database and then run migrate instead.