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.
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.
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.