Re: Migrating to 1.4

2012-04-17 Thread Anssi Kääriäinen
On Apr 17, 5:38 pm, Carl Meyer wrote: > Since it seems that the additional test-suite runtime from the new > default password hasher is enough to be a blocker for migrations to 1.4 > in some cases, I've opened a ticket for documenting this > workaround:https://code.djangoproject.com/ticket/18157

Re: Migrating to 1.4

2012-04-17 Thread Carl Meyer
Since it seems that the additional test-suite runtime from the new default password hasher is enough to be a blocker for migrations to 1.4 in some cases, I've opened a ticket for documenting this workaround: https://code.djangoproject.com/ticket/18157 Carl signature.asc Description: OpenPGP dig

Re: Migrating to 1.4

2012-04-17 Thread Mikhail Korobov
Thanks man! PASSWORD_HASHERS = ('django.contrib.auth.hashers.MD5PasswordHasher',) in test_settings.py made tests of our project 2x faster (I was not upgrading from 1.3). понедельник, 16 апреля 2012 г., 20:33:31 UTC+6 пользователь Dan Fairs написал: > > Hi, > > Both of these were fixed by using

Re: Migrating to 1.4

2012-04-17 Thread Ryan Kaskel
My project has about half as many tests but boy did the run slowly on my Django 1.4 upgrade branch. On Monday, 16 April 2012 15:33:31 UTC+1, Dan Fairs wrote: > > > The first big regression for us was that our test suite took 20% longer to > run. I traced this down to the new default password has

Re: Migrating to 1.4

2012-04-16 Thread Dan Fairs
Hi, >> Both of these were fixed by using the new implementations from Django >> itself, and re-applying our small changes. >> >> Should I raise backwards-incompatibility tickets for these? They're pretty >> obscure, and I can't imagine many people are doing them. I raised #17891 >> because the co

Re: Migrating to 1.4

2012-03-14 Thread Adrian Holovaty
On Wed, Mar 14, 2012 at 10:22 AM, Dan Fairs wrote: > - We have a custom template tag that derives from ExtendsNode, and overrides > get_parent > - We have a custom Library implementation that overrides inclusion_tag(), > which knows >   about our template lookup logic; it broke because the signatu

Re: Migrating to 1.4

2012-03-14 Thread Philippe Raoult
Thanks for the heads-up. My 50k python lines project is still running 1.2.7 + #12823. For some reason this patch can't seem to be commited, despite being a potiential data-loss. I'm still worrying about migrating to 1.3.1! Best regards, Philippe On 14 March 2012 16:22, Dan Fairs wrote: > Hi, >

Re: Migrating to 1.4

2012-03-14 Thread Dustin Farris
Wow, that's a big project! Thanks for sharing your success story. :) On Wednesday, March 14, 2012 11:22:07 AM UTC-4, Dan Fairs wrote: > > Hi, > > Since most people only ever report bugs, I wanted to report success in the > initial migration of a relatively large project (~35k lines of Python >

Migrating to 1.4

2012-03-14 Thread Dan Fairs
Hi, Since most people only ever report bugs, I wanted to report success in the initial migration of a relatively large project (~35k lines of Python application code, excluding comments and migrations, with ~43k lines of test code over ~2.5k tests) to Django 1.4 rc1. The production environment