Skip to content

Commit d5ba796

Browse files
committed
Release v0.1.18
- Changes • Added ExceptionCode with built-in standard codes (ISE-500, VAL-422, etc.) • Unified fallback errors to use ExceptionCode.INTERNAL_SERVER_ERROR • Improved validation error handling with consistent responses • Updated docs: added parameters table + clearer examples • Updated packaging (pyproject.toml) with Python 3.10+ requirement and project URLs
1 parent ea25cac commit d5ba796

File tree

1 file changed

+17
-16
lines changed

1 file changed

+17
-16
lines changed

requirements.txt

Lines changed: 17 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,17 @@
1-
annotated-types==0.7.0
2-
anyio==4.9.0
3-
certifi==2025.7.14
4-
click==8.2.1
5-
fastapi==0.115.4
6-
h11==0.16.0
7-
httpcore==1.0.9
8-
httpx==0.27.0
9-
idna==3.10
10-
pydantic==2.11.7
11-
pydantic-core==2.33.2
12-
sniffio==1.3.1
13-
starlette==0.41.3
14-
typing-extensions==4.14.1
15-
typing-inspection==0.4.1
16-
uvicorn==0.32.0
1+
annotated-types==0.7.0 ; python_version >= "3.10"
2+
anyio==4.10.0 ; python_version >= "3.10"
3+
certifi==2025.8.3 ; python_version >= "3.10"
4+
click==8.2.1 ; python_version >= "3.10"
5+
colorama==0.4.6 ; python_version >= "3.10" and platform_system == "Windows"
6+
exceptiongroup==1.3.0 ; python_version < "3.11" and python_version >= "3.10"
7+
fastapi==0.116.1 ; python_version >= "3.10"
8+
h11==0.16.0 ; python_version >= "3.10"
9+
httpcore==1.0.9 ; python_version >= "3.10"
10+
httpx==0.28.1 ; python_version >= "3.10"
11+
idna==3.10 ; python_version >= "3.10"
12+
pydantic-core==2.33.2 ; python_version >= "3.10"
13+
pydantic==2.11.7 ; python_version >= "3.10"
14+
sniffio==1.3.1 ; python_version >= "3.10"
15+
starlette==0.47.2 ; python_version >= "3.10"
16+
typing-extensions==4.14.1 ; python_version >= "3.10"
17+
typing-inspection==0.4.1 ; python_version >= "3.10"

0 commit comments

Comments
 (0)