[deps] bump dependencies versions

This commit is contained in:
maxime 2024-05-28 01:31:40 +02:00
parent f4f9a0fc66
commit b412d249a1
Signed by untrusted user who does not match committer: masq
GPG Key ID: A6BA8DA755BB4490
5 changed files with 471 additions and 453 deletions

View File

@ -1,5 +1,14 @@
# HalfAPI
## 0.6.30
Dependencies updates
- pyYAML v6.0.1
- starlette v0.37.2
Warning : the on_startup halfAPI argument is now removed, use the lifeSpan
## 0.6.29
### Dependencies

View File

@ -24,7 +24,7 @@ starlette = ">=0.33,<0.34"
uvicorn = ">=0.13,<1"
orjson = ">=3.8.5,<4"
pyjwt = ">=2.6.0,<2.7.0"
pyyaml = ">=6,<7"
pyyaml = ">=6.0.1,<7"
timing-asgi = ">=0.2.1,<1"
schema = ">=0.7.4,<1"
toml = ">=0.10,<0.11"

910
Pipfile.lock generated

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,5 @@
#!/usr/bin/env python3
__version__ = '0.6.29'
__version__ = '0.6.30'
def version():
return f'HalfAPI version:{__version__}'

View File

@ -11,6 +11,7 @@ from types import ModuleType, FunctionType
from schema import SchemaError
from starlette.applications import Starlette
from starlette.middleware import Middleware
from starlette.routing import Router, Route
from starlette.schemas import SchemaGenerator
from .lib.responses import ORJSONResponse