mirror of
https://gitlab.archlinux.org/archlinux/aurweb.git
synced 2025-02-03 10:43:03 +01:00
fix(deps): update dependencies
* Updating typing-extensions (4.5.0 -> 4.8.0) * Installing annotated-types (0.5.0) * Updating anyio (3.6.2 -> 3.7.1) * Installing pydantic-core (2.10.1) * Updating certifi (2023.5.7 -> 2023.7.22) * Updating cffi (1.15.1 -> 1.16.0) * Updating greenlet (2.0.2 -> 3.0.0) * Updating markupsafe (2.1.2 -> 2.1.3) * Updating packaging (23.1 -> 23.2) * Updating pluggy (1.0.0 -> 1.3.0) * Updating pydantic (1.10.7 -> 2.4.2) * Updating charset-normalizer (3.1.0 -> 3.3.0) * Updating click (8.1.3 -> 8.1.7) * Updating coverage (7.2.7 -> 7.3.2) * Updating cryptography (40.0.2 -> 41.0.4) * Updating dnspython (2.3.0 -> 2.4.2) * Updating execnet (1.9.0 -> 2.0.2) * Updating fastapi (0.100.1 -> 0.103.2) * Updating httpcore (0.17.0 -> 0.17.3) * Updating parse (1.19.0 -> 1.19.1) * Updating prometheus-client (0.16.0 -> 0.17.1) * Updating pytest (7.4.0 -> 7.4.2) * Updating redis (4.6.0 -> 5.0.1) * Updating urllib3 (2.0.2 -> 2.0.6) * Updating aiofiles (23.1.0 -> 23.2.1) * Updating alembic (1.11.2 -> 1.12.0) * Updating fakeredis (2.17.0 -> 2.19.0) * Updating filelock (3.12.2 -> 3.12.4) * Updating orjson (3.9.2 -> 3.9.7) * Updating protobuf (4.23.4 -> 4.24.4) * Updating pygit2 (1.12.2 -> 1.13.1) * Updating werkzeug (2.3.6 -> 3.0.0) Signed-off-by: moson <moson@archlinux.org>
This commit is contained in:
parent
fd3022ff6c
commit
2166426d4c
3 changed files with 724 additions and 692 deletions
|
@ -180,7 +180,7 @@ async def rpc_post(
|
|||
type: Optional[str] = Form(default=None),
|
||||
by: Optional[str] = Form(default=defaults.RPC_SEARCH_BY),
|
||||
arg: Optional[str] = Form(default=None),
|
||||
args: Optional[list[str]] = Form(default=[], alias="arg[]"),
|
||||
args: list[str] = Form(default=[], alias="arg[]"),
|
||||
callback: Optional[str] = Form(default=None),
|
||||
):
|
||||
return await rpc_request(request, v, type, by, arg, args, callback)
|
||||
|
|
1364
poetry.lock
generated
1364
poetry.lock
generated
File diff suppressed because it is too large
Load diff
|
@ -58,52 +58,52 @@ python = ">=3.9,<3.12"
|
|||
# based on git tags.
|
||||
|
||||
# General
|
||||
aiofiles = "^23.1.0"
|
||||
asgiref = "^3.6.0"
|
||||
aiofiles = "^23.2.1"
|
||||
asgiref = "^3.7.2"
|
||||
bcrypt = "^4.0.1"
|
||||
bleach = "^6.0.0"
|
||||
email-validator = "^2.0.0-post.0"
|
||||
fakeredis = "^2.11.2"
|
||||
email-validator = "^2.0.0.post2"
|
||||
fakeredis = "^2.19.0"
|
||||
feedgen = "^0.9.0"
|
||||
httpx = "^0.24.0"
|
||||
itsdangerous = "^2.1.2"
|
||||
lxml = "^4.9.2"
|
||||
orjson = "^3.8.11"
|
||||
protobuf = "^4.22.4"
|
||||
pygit2 = "^1.12.0"
|
||||
lxml = "^4.9.3"
|
||||
orjson = "^3.9.7"
|
||||
protobuf = "^4.24.4"
|
||||
pygit2 = "^1.13.1"
|
||||
python-multipart = "^0.0.6"
|
||||
redis = "^4.5.4"
|
||||
requests = "^2.30.0"
|
||||
redis = "^5.0.1"
|
||||
requests = "^2.31.0"
|
||||
paginate = "^0.5.6"
|
||||
|
||||
# SQL
|
||||
alembic = "^1.10.4"
|
||||
mysqlclient = "^2.1.1"
|
||||
Authlib = "^1.2.0"
|
||||
alembic = "^1.12.0"
|
||||
mysqlclient = "^2.2.0"
|
||||
Authlib = "^1.2.1"
|
||||
Jinja2 = "^3.1.2"
|
||||
Markdown = "^3.4.3"
|
||||
Werkzeug = "^2.3.3"
|
||||
SQLAlchemy = "^1.4.48"
|
||||
Markdown = "^3.4.4"
|
||||
Werkzeug = "^3.0.0"
|
||||
SQLAlchemy = "^1.4.49"
|
||||
|
||||
# ASGI
|
||||
uvicorn = "^0.23.0"
|
||||
gunicorn = "^21.0.0"
|
||||
gunicorn = "^21.2.0"
|
||||
Hypercorn = "^0.14.3"
|
||||
prometheus-fastapi-instrumentator = "^6.0.0"
|
||||
pytest-xdist = "^3.2.1"
|
||||
filelock = "^3.12.0"
|
||||
prometheus-fastapi-instrumentator = "^6.1.0"
|
||||
pytest-xdist = "^3.3.1"
|
||||
filelock = "^3.12.4"
|
||||
posix-ipc = "^1.1.1"
|
||||
pyalpm = "^0.10.6"
|
||||
fastapi = "^0.100.0"
|
||||
fastapi = "^0.103.2"
|
||||
srcinfo = "^0.1.2"
|
||||
tomlkit = "^0.12.0"
|
||||
|
||||
[tool.poetry.dev-dependencies]
|
||||
coverage = "^7.2.5"
|
||||
pytest = "^7.3.1"
|
||||
coverage = "^7.3.2"
|
||||
pytest = "^7.4.2"
|
||||
pytest-asyncio = "^0.21.0"
|
||||
pytest-cov = "^4.0.0"
|
||||
pytest-tap = "^3.3"
|
||||
pytest-cov = "^4.1.0"
|
||||
pytest-tap = "^3.4"
|
||||
watchfiles = "^0.19.0"
|
||||
|
||||
[tool.poetry.scripts]
|
||||
|
|
Loading…
Add table
Reference in a new issue