You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Extension maintainers, be aware that _app_ctx_stack.top and _request_ctx_stack.top are deprecated. Store data on g instead using a unique prefix, like g._extension_name_attr.
The text was updated successfully, but these errors were encountered:
In Flask 3.0.0 deprecated _app_ctx_stack and _request_ctx_stack were removed
https://flask.palletsprojects.com/en/3.0.x/changes/#version-3-0-0
pallets/flask#5223
g should be used instead:
The text was updated successfully, but these errors were encountered: