id
int64
number
int64
title
string
user.login
string
state
string
comments
int64
created_at
string
updated_at
string
labels
list
html_url
string
body
string
title_length
int64
body_length
int64
num_labels
int64
is_bug
bool
is_doc
bool
is_feature_request
bool
3,604,518,921
5,845
docs: Add explanation of reloader types and terminal output
commitWithTisha
open
0
2025-11-09T06:28:20Z
2025-11-09T06:29:03Z
[]
https://github.com/pallets/flask/pull/5845
## Summary This PR adds documentation explaining the different reloader types that Flask uses and the terminal output users see when running in debug mode. ## Problem When running Flask with debug mode enabled, users see messages like: - `* Restarting with stat` - `* Restarting with watchdog (windowsapi)` -...
59
1,478
0
false
true
false
3,592,054,000
5,844
pre-commit: Add codespell
cclauss
open
0
2025-11-05T17:14:08Z
2025-11-05T17:43:11Z
[]
https://github.com/pallets/flask/pull/5844
* #5833 on the `stable` branch. The `stable` branch contains no codespell discoverable typos, but the default branch contains: ``` ./docs/appcontext.rst:122: requet ==> request ./docs/quickstart.rst:465: interanlly ==> internally ./docs/templating.rst:186: avaialble ==> available ``` <!-- Before opening a P...
25
1,143
0
false
false
false
3,544,098,523
5,835
Add Seenode deployment instructions to documentation
GeoSegun
open
0
2025-10-23T10:30:06Z
2025-10-23T10:30:06Z
[]
https://github.com/pallets/flask/pull/5835
Hey. Just wanted to add seenode to the listed providers, as we have [first class support for flask](https://seenode.com/docs/frameworks/python/flask/). Thanks! <!-- Before opening a PR, open a ticket describing the issue or feature the PR will address. An issue is not required for fixing typos in documentation, or ...
52
1,008
0
false
true
false
3,497,902,807
5,827
docs: clarify 415 vs 400 errors for request.json
adityasah104
open
0
2025-10-09T07:06:09Z
2025-10-09T07:06:09Z
[]
https://github.com/pallets/flask/pull/5827
## Description Clarifies the distinction between 415 and 400 error codes when using `request.json`, aligning the JavaScript patterns documentation with the API reference. ## Changes - Updated "Receiving JSON in Views" section to specify: - 400 Bad Request: for invalid JSON body - 415 Unsupported Media Type: ...
48
549
0
false
true
false
3,492,022,759
5,825
Document 415 on the receiving json section
elafonta
open
1
2025-10-07T15:41:58Z
2025-10-07T16:08:22Z
[ { "color": "0e8a16", "default": false, "description": null, "id": 32876, "name": "docs", "node_id": "MDU6TGFiZWwzMjg3Ng==", "url": "https://api.github.com/repos/pallets/flask/labels/docs" } ]
https://github.com/pallets/flask/issues/5825
Documentation on "json" request throwing a 415 as well as 400. The problem text is on https://flask.palletsprojects.com/en/stable/patterns/javascript/#receiving-json-in-views ``` Receiving JSON in Views Use the [json](https://flask.palletsprojects.com/en/stable/api/#flask.Request.json) property of the [request](ht...
42
1,552
1
false
true
false
3,465,874,895
5,824
Clarify asyncio and gevent incompatibility in docs (#5817)
relu101
open
0
2025-09-29T17:11:11Z
2025-10-09T13:33:43Z
[]
https://github.com/pallets/flask/pull/5824
Updated the _async_await.rst documentation to clarify that Flask's asynchronous support (using asgiref) is **not compatible with gevent or eventlet**. Added a recommendation to use ASGI servers like `uvicorn` or `hypercorn` for proper async support, giving users a clear alternative until issue #5817 is address...
58
325
0
false
true
false
3,422,081,693
5,817
asyncio is not compatible with gevent
awoimbee
open
6
2025-09-16T12:28:32Z
2025-09-19T23:32:18Z
[ { "color": "0e8a16", "default": false, "description": null, "id": 32876, "name": "docs", "node_id": "MDU6TGFiZWwzMjg3Ng==", "url": "https://api.github.com/repos/pallets/flask/labels/docs" } ]
https://github.com/pallets/flask/issues/5817
See #5256 async-await: <https://flask.palletsprojects.com/en/stable/async-await/> > Using async with greenlet > When using gevent or eventlet to serve an application or patch the runtime, greenlet>=1.0 is required. When using PyPy, PyPy>=7.3.7 is required. Flask uses asgiref, which is not compatible with gevent: <ht...
37
1,090
1
false
false
false
3,415,264,936
5,816
deprecate `should_ignore_error`
davidism
open
3
2025-09-14T16:38:15Z
2025-11-11T17:13:32Z
[]
https://github.com/pallets/flask/issues/5816
This was added in f1918093ac70d589a4d67af0d77140734c06c13d as part of the original code to keep the context around for use in the debugger, tests, etc. It was not part of a PR, and there's no linked issue or explanation on why it was added. The intention seems to be to allow ignoring certain errors during debugging, s...
31
855
0
false
false
false
3,390,483,645
5,808
Changed the static annotated type filename parameter of select_jinja_autoescape method in src/flask/sansio/app.py
subhajitsaha01
open
2
2025-09-06T16:33:44Z
2025-10-29T01:47:37Z
[]
https://github.com/pallets/flask/pull/5808
Inside the code of the method the filename is checked against a None value and returns True, but the static annotated type is a str. I have changed the static annotation type to `str` to `str | None`.
113
200
0
false
false
false
3,372,901,713
5,804
3.1.2 regression: `stream_with_context` triggers `teardown_request()` calls before response generation
noirbee
open
6
2025-09-01T14:24:02Z
2025-09-29T18:03:07Z
[]
https://github.com/pallets/flask/issues/5804
<!-- This issue tracker is a tool to address bugs in Flask itself. Please use GitHub Discussions or the Pallets Discord for questions about your own code. Replace this comment with a clear outline of what the bug is. --> <!-- Describe how to replicate the bug. Include a minimal reproducible example that demonstrates...
102
5,402
0
false
false
false
2,766,647,591
5,665
Workflow
pgjones
open
4
2025-01-02T21:10:36Z
2025-03-29T22:19:39Z
[]
https://github.com/pallets/flask/pull/5665
<!-- Before opening a PR, open a ticket describing the issue or feature the PR will address. An issue is not required for fixing typos in documentation, or other simple non-code changes. Replace this comment with a description of the change. Describe how it addresses the linked ticket. --> <!-- Link to rele...
8
847
0
false
false
false
2,758,244,613
5,660
Move parts of the session code to sansio
pgjones
open
0
2024-12-24T20:09:08Z
2024-12-24T20:12:45Z
[]
https://github.com/pallets/flask/pull/5660
This will allow it to be used in Quart, thereby reducing duplication, and ensuring the APIs match. <!-- Before opening a PR, open a ticket describing the issue or feature the PR will address. An issue is not required for fixing typos in documentation, or other simple non-code changes. Replace this comment with...
40
949
0
false
false
false