forked from orbit-oss/flask
More documentation updates for 0.9
This commit is contained in:
parent
32f845ea75
commit
52f9cefbcd
2 changed files with 9 additions and 1 deletions
|
|
@ -34,6 +34,12 @@ the old behavior, you can add it easily by subclassing Flask::
|
|||
return self.response_class(*rv)
|
||||
return Flask.make_response(self, rv)
|
||||
|
||||
If you have an extension that was using :data:`~flask._request_ctx_stack`
|
||||
before, please consider changing to :data:`~flask._app_ctx_stack` if it
|
||||
makes sense for your extension. This will for example be the case for
|
||||
extensions that connect to databases. This will allow your users to
|
||||
easier use your extension with more complex use cases outside of requests.
|
||||
|
||||
Version 0.8
|
||||
-----------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue