mirror of https://github.com/pallets/flask.git
Merge branch '1.1.x'
This commit is contained in:
commit
15a49e7297
10
CHANGES.rst
10
CHANGES.rst
|
@ -44,15 +44,7 @@ Unreleased
|
||||||
:issue:`3215`
|
:issue:`3215`
|
||||||
- Include ``samesite`` and ``secure`` options when removing the
|
- Include ``samesite`` and ``secure`` options when removing the
|
||||||
session cookie. :pr:`3726`
|
session cookie. :pr:`3726`
|
||||||
|
- Support passing a ``pathlib.Path`` to ``static_folder``. :pr:`3579`
|
||||||
|
|
||||||
Version 1.1.x
|
|
||||||
-------------
|
|
||||||
|
|
||||||
Not yet released.
|
|
||||||
|
|
||||||
- Officially support passing a :class:`pathlib.Path` for
|
|
||||||
``static_folder`` which stopped working in 1.1.2. :pr:`3579`
|
|
||||||
|
|
||||||
|
|
||||||
Version 1.1.2
|
Version 1.1.2
|
||||||
|
|
|
@ -117,7 +117,7 @@ For example, you can manage a database connection using this pattern::
|
||||||
return g.db
|
return g.db
|
||||||
|
|
||||||
@app.teardown_appcontext
|
@app.teardown_appcontext
|
||||||
def teardown_db():
|
def teardown_db(exception):
|
||||||
db = g.pop('db', None)
|
db = g.pop('db', None)
|
||||||
|
|
||||||
if db is not None:
|
if db is not None:
|
||||||
|
|
|
@ -25,7 +25,7 @@ follows:
|
||||||
|
|
||||||
.. sourcecode:: text
|
.. sourcecode:: text
|
||||||
|
|
||||||
$ apt-get install libapache2-mod-wsgi
|
$ apt-get install libapache2-mod-wsgi-py3
|
||||||
|
|
||||||
If you are using a yum based distribution (Fedora, OpenSUSE, etc..) you
|
If you are using a yum based distribution (Fedora, OpenSUSE, etc..) you
|
||||||
can install it as follows:
|
can install it as follows:
|
||||||
|
@ -39,7 +39,7 @@ using pkg_add:
|
||||||
|
|
||||||
.. sourcecode:: text
|
.. sourcecode:: text
|
||||||
|
|
||||||
$ pkg install ap22-mod_wsgi2
|
$ pkg install ap24-py37-mod_wsgi
|
||||||
|
|
||||||
If you are using pkgsrc you can install `mod_wsgi` by compiling the
|
If you are using pkgsrc you can install `mod_wsgi` by compiling the
|
||||||
`www/ap2-wsgi` package.
|
`www/ap2-wsgi` package.
|
||||||
|
|
|
@ -70,7 +70,7 @@ See also:
|
||||||
(RQ, Celery, etc.) in a similar fashion. See the `Python SDK docs
|
(RQ, Celery, etc.) in a similar fashion. See the `Python SDK docs
|
||||||
<https://docs.sentry.io/platforms/python/>`__ for more information.
|
<https://docs.sentry.io/platforms/python/>`__ for more information.
|
||||||
- `Getting started with Sentry <https://docs.sentry.io/quickstart/?platform=python>`__
|
- `Getting started with Sentry <https://docs.sentry.io/quickstart/?platform=python>`__
|
||||||
- `Flask-specific documentation <https://docs.sentry.io/platforms/python/flask/>`__
|
- `Flask-specific documentation <https://docs.sentry.io/platforms/python/guides/flask/>`__
|
||||||
|
|
||||||
|
|
||||||
Error Handlers
|
Error Handlers
|
||||||
|
|
|
@ -105,7 +105,7 @@ First of all you need to look at the error message.
|
||||||
Old Version of Flask
|
Old Version of Flask
|
||||||
````````````````````
|
````````````````````
|
||||||
|
|
||||||
Versions of Flask older than 0.11 use to have different ways to start the
|
Versions of Flask older than 0.11 used to have different ways to start the
|
||||||
application. In short, the :command:`flask` command did not exist, and
|
application. In short, the :command:`flask` command did not exist, and
|
||||||
neither did :command:`python -m flask`. In that case you have two options:
|
neither did :command:`python -m flask`. In that case you have two options:
|
||||||
either upgrade to newer Flask versions or have a look at :doc:`/server`
|
either upgrade to newer Flask versions or have a look at :doc:`/server`
|
||||||
|
|
Loading…
Reference in New Issue