From 28541b2facec073f171d9956a28cb57a784390f3 Mon Sep 17 00:00:00 2001 From: Petr Bokoc Date: May 16 2018 22:35:43 +0000 Subject: Fix #77 - Django 2.0 --- diff --git a/en-US/developers/Development_Web.adoc b/en-US/developers/Development_Web.adoc index d0d693e..eb8fca4 100644 --- a/en-US/developers/Development_Web.adoc +++ b/en-US/developers/Development_Web.adoc @@ -8,3 +8,14 @@ include::en-US/entities.adoc[] Fedora 28 provides PHP 7.2. As the list of changes is too extensive to cover in this document, and at the same time all changes are documented upstream, you are encouraged to read the link:++http://www.php.net/ChangeLog-7.php#7.2.0++[upstream changelog] and link:++https://raw.githubusercontent.com/php/php-src/PHP-7.2/UPGRADING++[upgrade notes]. A link:++http://php.net/manual/en/migration72.php++[migration guide] is also available to anyone wishing to migrate from version 7.1. + +== Django 2.0 +Fedora 28 provides versin 2.0 of the *Django* framework. Notable changes include: + +* Simplified routing syntax +* Mobile-friendly administration interfaces +* Brand new Windows expressions + +*Django 2.0* only supports *Python 3*, support for *Python 2* has been dropped. If you previously used _python2-django_ from a RPM package, make sure you use _python3-django_ and run your code on *Python 3*. A backward compatible package, _python2-django1.11_, is also provided for cases where migration to Python 3 is not possible. + +See the link:++https://docs.djangoproject.com/en/2.0/releases/2.0/++[upstream release notes] for a full list of changes in this release.