Hi! I'm using this extension is a couple of Flask projects and a Quart one. When trying to migrate the Quart app to it's latest version, the extension stopped working with the flask_patch:
ImportError: cannot import name '_app_ctx_stack' from 'quart.flask_patch'
According to what I understand from this answer, _app_ctx_stack will soon no longer be available in Flask either.
According to Quart's changelog:
Remove usage of LocalStacks, using ContextVars more directly. This
should improve performance, but introduces backwards
incompatibility. _*_ctx_stack globals are removed, use *_context
instead. Extensions should store on g as appropriate.
Are there any plans on making the appropiate changes on this extension to support this newer Quart release and Flask's future releases that drop _app_ctx_stack?
Thanks
Hi! I'm using this extension is a couple of Flask projects and a Quart one. When trying to migrate the Quart app to it's latest version, the extension stopped working with the flask_patch:
ImportError: cannot import name '_app_ctx_stack' from 'quart.flask_patch'According to what I understand from this answer,
_app_ctx_stackwill soon no longer be available in Flask either.According to Quart's changelog:
Are there any plans on making the appropiate changes on this extension to support this newer Quart release and Flask's future releases that drop
_app_ctx_stack?Thanks