Reverse order of execution of post-request handlers. This fixes #82

This commit is contained in:
Armin Ronacher 2010-07-12 18:04:10 +02:00
parent f1a6fbe250
commit d12d73263f
4 changed files with 44 additions and 2 deletions

View file

@ -19,6 +19,17 @@ installation, make sure to pass it the ``-U`` parameter::
$ easy_install -U Flask
Version 0.6
-----------
Flask 0.6 comes with a backwards incompatible change which affects the
order of after-request handlers. Previously they were called in the order
of the registration, now they are called in reverse order. This change
was made so that Flask behaves more like people expected it to work and
how other systems handle request pre- and postprocessing. If you
dependend on the order of execution of post-request functions, be sure to
change the order.
Version 0.5
-----------