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:
moson 2023-10-05 17:59:14 +02:00
parent fd3022ff6c
commit 2166426d4c
No known key found for this signature in database
GPG key ID: 4A4760AB4EE15296
3 changed files with 724 additions and 692 deletions

View file

@ -180,7 +180,7 @@ async def rpc_post(
type: Optional[str] = Form(default=None), type: Optional[str] = Form(default=None),
by: Optional[str] = Form(default=defaults.RPC_SEARCH_BY), by: Optional[str] = Form(default=defaults.RPC_SEARCH_BY),
arg: Optional[str] = Form(default=None), 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), callback: Optional[str] = Form(default=None),
): ):
return await rpc_request(request, v, type, by, arg, args, callback) return await rpc_request(request, v, type, by, arg, args, callback)

1364
poetry.lock generated

File diff suppressed because it is too large Load diff

View file

@ -58,52 +58,52 @@ python = ">=3.9,<3.12"
# based on git tags. # based on git tags.
# General # General
aiofiles = "^23.1.0" aiofiles = "^23.2.1"
asgiref = "^3.6.0" asgiref = "^3.7.2"
bcrypt = "^4.0.1" bcrypt = "^4.0.1"
bleach = "^6.0.0" bleach = "^6.0.0"
email-validator = "^2.0.0-post.0" email-validator = "^2.0.0.post2"
fakeredis = "^2.11.2" fakeredis = "^2.19.0"
feedgen = "^0.9.0" feedgen = "^0.9.0"
httpx = "^0.24.0" httpx = "^0.24.0"
itsdangerous = "^2.1.2" itsdangerous = "^2.1.2"
lxml = "^4.9.2" lxml = "^4.9.3"
orjson = "^3.8.11" orjson = "^3.9.7"
protobuf = "^4.22.4" protobuf = "^4.24.4"
pygit2 = "^1.12.0" pygit2 = "^1.13.1"
python-multipart = "^0.0.6" python-multipart = "^0.0.6"
redis = "^4.5.4" redis = "^5.0.1"
requests = "^2.30.0" requests = "^2.31.0"
paginate = "^0.5.6" paginate = "^0.5.6"
# SQL # SQL
alembic = "^1.10.4" alembic = "^1.12.0"
mysqlclient = "^2.1.1" mysqlclient = "^2.2.0"
Authlib = "^1.2.0" Authlib = "^1.2.1"
Jinja2 = "^3.1.2" Jinja2 = "^3.1.2"
Markdown = "^3.4.3" Markdown = "^3.4.4"
Werkzeug = "^2.3.3" Werkzeug = "^3.0.0"
SQLAlchemy = "^1.4.48" SQLAlchemy = "^1.4.49"
# ASGI # ASGI
uvicorn = "^0.23.0" uvicorn = "^0.23.0"
gunicorn = "^21.0.0" gunicorn = "^21.2.0"
Hypercorn = "^0.14.3" Hypercorn = "^0.14.3"
prometheus-fastapi-instrumentator = "^6.0.0" prometheus-fastapi-instrumentator = "^6.1.0"
pytest-xdist = "^3.2.1" pytest-xdist = "^3.3.1"
filelock = "^3.12.0" filelock = "^3.12.4"
posix-ipc = "^1.1.1" posix-ipc = "^1.1.1"
pyalpm = "^0.10.6" pyalpm = "^0.10.6"
fastapi = "^0.100.0" fastapi = "^0.103.2"
srcinfo = "^0.1.2" srcinfo = "^0.1.2"
tomlkit = "^0.12.0" tomlkit = "^0.12.0"
[tool.poetry.dev-dependencies] [tool.poetry.dev-dependencies]
coverage = "^7.2.5" coverage = "^7.3.2"
pytest = "^7.3.1" pytest = "^7.4.2"
pytest-asyncio = "^0.21.0" pytest-asyncio = "^0.21.0"
pytest-cov = "^4.0.0" pytest-cov = "^4.1.0"
pytest-tap = "^3.3" pytest-tap = "^3.4"
watchfiles = "^0.19.0" watchfiles = "^0.19.0"
[tool.poetry.scripts] [tool.poetry.scripts]