from Hacker News

Django 1.5 beta release notes

by kgrin on 11/27/12, 10:19 PM with 44 comments

  • by quaunaut on 11/27/12, 11:16 PM

    The two big headline features, the configurable User model and Python 3 support, are both huge. The first, because as is right now, simply extending the User model feels janky and possibly broken, and the second, because Django is probably one of the biggest reasons people have not moved onto Python 3.
  • by elithrar on 11/27/12, 11:12 PM

    > Configurable User model

    This pleases me greatly. No longer do I need to rely on plug-ins (and therefore, them being updated) to minimally extend the existing User model for small projects.

  • by scommab on 11/27/12, 11:20 PM

    Major Highlights:

    - Python3 support! (supports python2.6.5+ and python3.2+ in the same code base)

    - {% verbatim %} (no collision problems with mustache)

    - Built-in Partial model saving

  • by Alex3917 on 11/28/12, 3:11 AM

    If I want to create my own database and write my own SQL queries instead of using Django's object models and ORM, does it still make sense to use Django's user model in my project?
  • by jfb on 11/28/12, 12:42 AM

    Can someone point me to a compare/contrast sort of doc between modern Django and Rails? I don't do a lot of web app programming, but I'm curious as to whether there's much of a difference between the two.
  • by hayksaakian on 11/28/12, 2:40 AM

    > python3 support

    Go on