Skip to content

Commit

Permalink
Merge branch 'renovate/all-minor-patch' into 'devel'
Browse files Browse the repository at this point in the history
Update all non-major dependencies

See merge request sds-dev/sd-connect/swift-browser-ui!216
  • Loading branch information
blankdots committed Nov 28, 2023
2 parents 6effac8 + a6cf270 commit 3d434e9
Show file tree
Hide file tree
Showing 5 changed files with 609 additions and 498 deletions.
16 changes: 8 additions & 8 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ classifiers = [
]
dependencies = [
"aiohttp-session==2.12.0",
"aiohttp==3.8.6",
"aiohttp==3.9.1",
"redis==5.0.1",
"asyncpg==0.28.0",
"certifi==2023.7.22",
"asyncpg==0.29.0",
"certifi==2023.11.17",
"click==8.1.7",
"cryptography==41.0.5",
"gunicorn==21.2.0",
"keystoneauth1==5.3.0",
"keystoneauth1==5.4.0",
"oidcrp==2.1.4",
"python-swiftclient==4.4.0",
"uvloop==0.19.0",
Expand All @@ -43,13 +43,13 @@ docs = [
"sphinx_rtd_theme==1.3.0",
]
test = [
"black==23.10.1",
"black==23.11.0",
"coverage==7.3.2",
"flake8-docstrings==1.7.0",
"flake8==6.1.0",
"mypy==1.6.1",
"mypy==1.7.1",
"pytest-cov==4.1.0",
"pytest-xdist==3.3.1",
"pytest-xdist==3.5.0",
"pytest==7.4.3",
"tox==4.11.3",
]
Expand All @@ -61,7 +61,7 @@ dev = [
"honcho==1.1.0",
"pre-commit==3.5.0",
"pyspelling==2.9",
"ruff==0.1.3",
"ruff==0.1.6",
"types-certifi",
"types-redis",
"types-requests",
Expand Down
8 changes: 4 additions & 4 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
aiohttp==3.8.6
aiohttp==3.9.1
aiohttp-session==2.12.0
redis==5.0.1
asyncpg==0.28.0
certifi==2023.7.22
asyncpg==0.29.0
certifi==2023.11.17
click==8.1.7
cryptography==41.0.5
gunicorn==21.2.0
keystoneauth1==5.3.0
keystoneauth1==5.4.0
oidcrp==2.1.4
python-swiftclient==4.4.0
uvloop==0.19.0
Expand Down
10 changes: 8 additions & 2 deletions swift_browser_ui/ui/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,10 @@ async def swift_list_containers(
f"{request.remote}, session: {session} :: {time.ctime()}"
)

query = request.query.copy()
# as of v 3.9.1 the return type of query is "MultiMapping[str]"
# however the actual function returns MultiDictProxy which has copy
# https://github.com/aio-libs/multidict/blob/master/multidict/_multidict_py.py#L146-L163
query = request.query.copy() # type: ignore[attr-defined]
query["format"] = "json"
try:
async with client.get(
Expand Down Expand Up @@ -241,7 +244,10 @@ async def swift_list_objects(request: aiohttp.web.Request) -> aiohttp.web.Stream
f"{request.remote}, sess: {session} :: {time.ctime()}"
)

query = request.query.copy()
# as of v 3.9.1 the return type of query is "MultiMapping[str]"
# however the actual function returns MultiDictProxy which has copy
# https://github.com/aio-libs/multidict/blob/master/multidict/_multidict_py.py#L146-L163
query = request.query.copy() # type: ignore[attr-defined]
query["format"] = "json"

endpoint = session["projects"][project]["endpoint"]
Expand Down
20 changes: 10 additions & 10 deletions swift_browser_ui_frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,36 +16,36 @@
"dependencies": {
"@intlify/unplugin-vue-i18n": "^1.5.0",
"@mdi/js": "^7.3.67",
"@vitejs/plugin-vue": "^4.4.0",
"@vueuse/rxjs": "^10.5.0",
"@vitejs/plugin-vue": "^4.5.0",
"@vueuse/rxjs": "^10.6.1",
"@ygoe/msgpack": "^1.0.3",
"cli-highlight": "^2.1.11",
"csc-ui": "0.9.5",
"dexie": "^3.2.4",
"eslint": "^8.52.0",
"eslint": "^8.54.0",
"eslint-plugin-vue": "^9.18.1",
"eslint-utils": "^3.0.0",
"lodash": "^4.17.21",
"luxon": "^3.4.3",
"luxon": "^3.4.4",
"resumablejs": "^1.1.0",
"rxjs": "^7.8.1",
"sass": "^1.69.5",
"vite": "^4.5.0",
"vue": "^3.3.7",
"vue-i18n": "^9.6.4",
"vue": "^3.3.9",
"vue-i18n": "^9.8.0",
"vue-router": "^4.2.5",
"vuex": "^4.1.0",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
},
"devDependencies": {
"@faker-js/faker": "^8.2.0",
"@faker-js/faker": "^8.3.1",
"@testing-library/dom": "^9.3.3",
"@testing-library/jest-dom": "^6.1.4",
"@testing-library/user-event": "^14.5.1",
"@testing-library/vue": "^8.0.0",
"@vue/compiler-sfc": "^3.3.7",
"cypress": "^13.4.0",
"@testing-library/vue": "^8.0.1",
"@vue/compiler-sfc": "^3.3.9",
"cypress": "^13.6.0",
"cypress-cloud": "^1.9.6",
"install": "^0.13.0",
"jest": "^29.7.0"
Expand Down
Loading

0 comments on commit 3d434e9

Please sign in to comment.