Evolution #6677

Updated by Etienne Pallier about 5 years ago

Update django (on utilise 2.0.5, mais la version stable courante est 2.1.5)
(12/19) Django 3.0: https://docs.djangoproject.com/en/dev/releases/3.0/
Python 3.6+

(04/19) Django 2.2 (LTS) release notes : https://www.djangoproject.com/weblog/2019/jan/17/django-22-alpha-1/
Python 3.5+
Constraints: The new CheckConstraint and UniqueConstraint classes enable adding custom database constraints. Constraints are added to models using the Meta.constraints option.

(08/18) Django 2.1 release notes : https://docs.djangoproject.com/en/2.1/releases/2.1/
Python 3.5+
Model “view” permission: A “view” permission is added to the model Meta.default_permissions. The new permissions will be created automatically when running migrate. This allows giving users read-only access to models in the admin. ModelAdmin.has_view_permission() is new. The implementation is backwards compatible in that there isn’t a need to assign the “view” permission to allow users who have the “change” permission to edit objects.
jQuery is upgraded from version 2.2.3 to 3.3.1

Back