Django 1.5 Release Candidate released
Yesterday on the official website of Django there was a message about the availability of Django 1.5 Release Candidate.
A few words about innovations:
- Configurable User Model. Now you can use standard authorization, complementing the model with your own fields.
- Python support 3. Termination of Python support 2.5. The minimum version is now 2.6.5
- Specifying specific fields when saving a model - the update_fields parameter in Model.save ()
- Caching related models
- Explicit specification of streaming response (class StreamingHttpResponse)
- Tag {% verbatim%}, rendering inside which does not occur (convenient for javascript-templates)
Download Django 1.5 RC
')
Source: https://habr.com/ru/post/164779/
All Articles