I clicked, read, nodded in approval and upvoted.. There's nothing really to discuss. There are a few new features in 1.7 that people are looking forward to but nothing really controversial.
Start a discussion about Python 3, on the other hand, and you'll get multi-page comments.
There is a striking contrast on HN between this release and say, when Node or Rails release a new version. At the one hour point since this was posted and there are no comments.
Anybody use Django? Or just not excited about this release? I'm genuinely curious.
We use Django heavily at Pathwright. It does a very good job for us. We're all looking forward to 1.7, as it will be another solid step forward for us.
I'm probably going to offend some people with my phrasing, but the Django community is a little less culty/fanboyish than Node's. It's old enough where most of the shiny chasers have moved on (to Node), leaving the guys who are more worried about productivity than figuring out what is new/hot.
Every community has zealots and fanboys, but we (the Django community) are, as a whole, pretty chill and just trying to get things done. We don't need to chestbeat very much, because Django's track record speaks for itself (it powers some very large, very successful sites).
Django developers and users may be less 'rabid' bunch. But were always around. Django wont be going away in a hurry, there are some major projects built with Django, like the OpenStack Horizon dashboard, Disqus. Theres an extensive list at http://www.djangosites.org/
Also, to any python developer thinking of learning Ruby just for Rails, give Django a try first, its a fantastic community.
South has worked well for us, but 1.7's built-in migration squashing/rebasing has me excited by itself. I have to run some really hackish custom stuff to do this on South right now.
I read the documentation today and it's actually very straightforward and in some ways easier than managing migrations using South.
Essentially, you'll run a single initial/fake migration at the outset, after which the manage.py syntax is almost identical to that of South. The big win from my perspective is that excluding an app name from the migration commands results in all apps being migrated.
There's not a lot to be excited about really - the major feature in this release is schema migration. I don't think that's a bad thing necessarily and suspect many python developers appreciate the slowish and thoughtful release cycles for Django.
I am wondering what the real difference will be in day to day use? Other than the "south" line in installed apps, it sounds like it will be very similar.
As I understand it, the new migrations module is more fully featured than south: eg, it intelligently squashes/flattens migrations together to avoid redundancy when you run the migrations (say you create a model in migration 1, and remove it in migration 3 after changing approach, the whole operation will be skipped).[0] This will speed things up if you have a lot of migrations to run.
I think I heard that some of this stuff will be backported to South for those of us stuck on 1.5/1.6, however.
On a related note, Does anyone have any experience with schema migrations in 1.7? Is it similar to South in function and performance? In other words, should I keep using South, or try to learn to use the new implementation? Do I need to be a guinea pig?
South will not be available in Django 1.7. Django 1.7 migrations have been developed by the same person that has developed South and can be see as an official successor to South. Therefore you have no choice but to use the new migrations.
The instructions in the docs cover how to migrate an existing Django project. What's more interesting to me is whether it'll be possible to have a reusable app with migrations that is Django 1.7 and Django 1.6-1.4 compatible. Sounds like not.
I tried Django for the first time last year. I had previously used Drupal/Joomla, but hated PHP.
Plus Django was much lighter weight - it was easy to build a
CMS with it, but also really easy to create something much more minimal.
Start a discussion about Python 3, on the other hand, and you'll get multi-page comments.