How stable is the Django trunk?

I am getting this issue today from updating my Django trunk:

    403 Forbidden

    CSRF verification failed. Request aborted.

    More information is available with DEBUG=True.
link|improve this question

feedback

2 Answers

up vote 10 down vote accepted

To answer your specific question on stability of Django trunk, my experience has been generally positive. Though an occasional issue crops up, it's usually fixed pretty quickly. If you plan on tracking trunk, I'd recommend monitoring the mailing lists, especially for big, potentially de-stabilizing changes (also, see "Is it safe to track trunk in Django?"), and for any potential backwards compatibility issues.

As for your CSRF verification failure, there have been recent changes to the CSRF middleware that you may need to accommodate in your code. See the documentation (Note the "How to use it" section is tagged with "Changed in Django Development version") which includes information on a template tag that you'll likely need to include in your template.

link|improve this answer
feedback

I'd assume that no trunk is stable.

link|improve this answer
I might have to agree with this statement, but I would say that no trunk is "ROCK SOLID". Issues to come up from time to time with it. – Daniel Oct 30 '09 at 19:39
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.