Django 1.5 Release Candidate Released

    Yesterday on the official website of Django, a message appeared about the availability of Django 1.5 Release Candidate.

    A few words about the innovations:
    • Configurable User model. Now you can use standard authorization, supplementing the model with your own fields.
    • Python support 3. Discontinuation of Python 2.5 support. The minimum version is now 2.6.5
    • Specifying specific fields when saving a model - update_fields parameter in Model.save ()
    • Caching Related Models
    • Explicitly specifying a streaming response (StreamingHttpResponse class)
    • The {% verbatim%} tag, which does not render inside (convenient for javascript templates)

    Download Django 1.5 RC

    Also popular now: