fix: unlock and bump werkzeug (#27164)

This commit is contained in:
Daniel Vaz Gaspar 2024-02-20 10:42:32 +00:00 committed by GitHub
parent f7c5773a97
commit 3eedcb4a2f
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
7 changed files with 10 additions and 31 deletions

View File

@ -90,8 +90,6 @@ dnspython==2.1.0
# via email-validator
email-validator==1.1.3
# via flask-appbuilder
exceptiongroup==1.2.0
# via cattrs
flask==2.2.5
# via
# apache-superset
@ -118,7 +116,7 @@ flask-jwt-extended==4.3.1
# via flask-appbuilder
flask-limiter==3.3.1
# via flask-appbuilder
flask-login==0.6.0
flask-login==0.6.3
# via
# apache-superset
# flask-appbuilder
@ -132,7 +130,7 @@ flask-sqlalchemy==2.5.1
# flask-migrate
flask-talisman==1.0.0
# via apache-superset
flask-wtf==1.1.1
flask-wtf==1.2.1
# via
# apache-superset
# flask-appbuilder
@ -144,7 +142,7 @@ geopy==2.2.0
# via apache-superset
google-auth==2.27.0
# via shillelagh
greenlet==2.0.2
greenlet==3.0.3
# via shillelagh
gunicorn==21.2.0
# via apache-superset
@ -159,10 +157,7 @@ idna==3.2
# email-validator
# requests
importlib-metadata==6.6.0
# via
# apache-superset
# flask
# shillelagh
# via apache-superset
importlib-resources==5.12.0
# via limits
isodate==0.6.0
@ -352,9 +347,7 @@ tabulate==0.8.9
typing-extensions==4.4.0
# via
# apache-superset
# cattrs
# flask-limiter
# kombu
# limits
# shillelagh
tzdata==2023.3
@ -375,9 +368,8 @@ vine==5.1.0
# kombu
wcwidth==0.2.5
# via prompt-toolkit
werkzeug==2.3.3
werkzeug==3.0.1
# via
# apache-superset
# flask
# flask-appbuilder
# flask-jwt-extended
@ -395,9 +387,7 @@ wtforms-json==0.3.5
xlsxwriter==3.0.7
# via apache-superset
zipp==3.15.0
# via
# importlib-metadata
# importlib-resources
# via importlib-metadata
# The following packages are considered to be unsafe in a requirements file:
# setuptools

View File

@ -115,8 +115,6 @@ thrift==0.16.0
# thrift-sasl
thrift-sasl==0.4.3
# via pyhive
tomli==2.0.1
# via pylint
tomlkit==0.11.8
# via pylint
traitlets==5.9.0

View File

@ -52,12 +52,6 @@ pyproject-hooks==1.0.0
# via build
pyyaml==6.0.1
# via pre-commit
tomli==2.0.1
# via
# build
# pip-tools
# pyproject-api
# tox
toposort==1.10
# via pip-compile-multi
tox==4.6.4

View File

@ -87,7 +87,7 @@ parameterized==0.9.0
# via -r requirements/testing.in
pathable==0.4.3
# via jsonschema-spec
playwright==1.37.0
playwright==1.41.2
# via apache-superset
prophet==1.1.5
# via apache-superset
@ -105,7 +105,7 @@ protobuf==4.23.0
# proto-plus
pydata-google-auth==1.7.0
# via pandas-gbq
pyee==9.0.4
pyee==11.0.1
# via playwright
pyfakefs==5.2.2
# via -r requirements/testing.in

View File

@ -131,7 +131,6 @@ setup(
"tabulate>=0.8.9, <0.9",
"typing-extensions>=4, <5",
"waitress; sys_platform == 'win32'",
"werkzeug>=2.3.3, <3",
"wtforms>=2.3.3, <4",
"wtforms-json",
"xlsxwriter>=3.0.7, <3.1",

View File

@ -117,8 +117,6 @@ class TestAsyncEventApi(SupersetTestCase):
def test_events_no_token(self):
self.login(username="admin")
self.client.set_cookie(
"localhost", app.config["GLOBAL_ASYNC_QUERIES_JWT_COOKIE_NAME"], ""
)
self.client.set_cookie(app.config["GLOBAL_ASYNC_QUERIES_JWT_COOKIE_NAME"], "")
rv = self.fetch_events()
assert rv.status_code == 401

View File

@ -735,7 +735,7 @@ class TestPostChartDataApi(BaseTestChartDataApi):
app._got_first_request = False
async_query_manager_factory.init_app(app)
test_client.set_cookie(
"localhost", app.config["GLOBAL_ASYNC_QUERIES_JWT_COOKIE_NAME"], "foo"
app.config["GLOBAL_ASYNC_QUERIES_JWT_COOKIE_NAME"], "foo"
)
rv = test_client.post(CHART_DATA_URI, json=self.query_context_payload)
self.assertEqual(rv.status_code, 401)