Skip to content

Commit 22c48a7

Browse files
committed
Merge remote-tracking branch 'origin/stable'
2 parents 2eab96a + 6c44dd4 commit 22c48a7

File tree

9 files changed

+23
-6
lines changed

9 files changed

+23
-6
lines changed

docs/tutorial/database.rst

+10
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ response is sent.
3737
:caption: ``flaskr/db.py``
3838
3939
import sqlite3
40+
from datetime import datetime
4041
4142
import click
4243
from flask import current_app, g
@@ -132,6 +133,11 @@ Add the Python functions that will run these SQL commands to the
132133
init_db()
133134
click.echo('Initialized the database.')
134135
136+
137+
sqlite3.register_converter(
138+
"timestamp", lambda v: datetime.fromisoformat(v.decode())
139+
)
140+
135141
:meth:`open_resource() <Flask.open_resource>` opens a file relative to
136142
the ``flaskr`` package, which is useful since you won't necessarily know
137143
where that location is when deploying the application later. ``get_db``
@@ -142,6 +148,10 @@ read from the file.
142148
that calls the ``init_db`` function and shows a success message to the
143149
user. You can read :doc:`/cli` to learn more about writing commands.
144150

151+
The call to :func:`sqlite3.register_converter` tells Python how to
152+
interpret timestamp values in the database. We convert the value to a
153+
:class:`datetime.datetime`.
154+
145155

146156
Register with the Application
147157
-----------------------------

examples/celery/pyproject.toml

+2-2
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ name = "flask-example-celery"
33
version = "1.0.0"
44
description = "Example Flask application with Celery background tasks."
55
readme = "README.md"
6-
requires-python = ">=3.8"
7-
dependencies = ["flask>=2.2.2", "celery[redis]>=5.2.7"]
6+
classifiers = ["Private :: Do Not Upload"]
7+
dependencies = ["flask", "celery[redis]"]
88

99
[build-system]
1010
requires = ["flit_core<4"]
File renamed without changes.

examples/javascript/pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ name = "js_example"
33
version = "1.1.0"
44
description = "Demonstrates making AJAX requests to Flask."
55
readme = "README.rst"
6-
license = {file = "LICENSE.rst"}
6+
license = {file = "LICENSE.txt"}
77
maintainers = [{name = "Pallets", email = "[email protected]"}]
8+
classifiers = ["Private :: Do Not Upload"]
89
dependencies = ["flask"]
910

1011
[project.urls]

examples/javascript/tests/test_js_example.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
@pytest.mark.parametrize(
66
("path", "template_name"),
77
(
8-
("/", "xhr.html"),
8+
("/", "fetch.html"),
99
("/plain", "xhr.html"),
1010
("/fetch", "fetch.html"),
1111
("/jquery", "jquery.html"),
File renamed without changes.

examples/tutorial/flaskr/db.py

+4
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
import sqlite3
2+
from datetime import datetime
23

34
import click
45
from flask import current_app
@@ -44,6 +45,9 @@ def init_db_command():
4445
click.echo("Initialized the database.")
4546

4647

48+
sqlite3.register_converter("timestamp", lambda v: datetime.fromisoformat(v.decode()))
49+
50+
4751
def init_app(app):
4852
"""Register database functions with the Flask app. This is called by
4953
the application factory.

examples/tutorial/pyproject.toml

+2-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,9 @@ name = "flaskr"
33
version = "1.0.0"
44
description = "The basic blog app built in the Flask tutorial."
55
readme = "README.rst"
6-
license = {text = "BSD-3-Clause"}
6+
license = {file = "LICENSE.txt"}
77
maintainers = [{name = "Pallets", email = "[email protected]"}]
8+
classifiers = ["Private :: Do Not Upload"]
89
dependencies = [
910
"flask",
1011
]

src/flask/helpers.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -547,7 +547,8 @@ def download_file(name):
547547
raises a 404 :exc:`~werkzeug.exceptions.NotFound` error.
548548
549549
:param directory: The directory that ``path`` must be located under,
550-
relative to the current application's root path.
550+
relative to the current application's root path. This *must not*
551+
be a value provided by the client, otherwise it becomes insecure.
551552
:param path: The path to the file to send, relative to
552553
``directory``.
553554
:param kwargs: Arguments to pass to :func:`send_file`.

0 commit comments

Comments
 (0)