22# 1. CORE WEB FRAMEWORK & ASGI SERVER
33# FastAPI and its main components.
44# ------------------------------------------------------------------------------
5- fastapi~=0.120.1 # The main web framework
6- starlette~=0.49.1 # FastAPI's underlying ASGI toolkit
5+ fastapi~=0.120.4 # The main web framework
6+ starlette~=0.49.3 # FastAPI's underlying ASGI toolkit
77uvicorn~=0.38.0 # Production-ready ASGI server
8- uvloop~=0.22.0 # Optional: High-performance event loop for uvicorn
9- websockets~=15.0.0 # For WebSocket support
10- watchfiles~=1.1.0 # For hot-reloading in development
8+ uvloop~=0.22.1 # Optional: High-performance event loop for uvicorn
9+ websockets~=15.0.1 # For WebSocket support
10+ watchfiles~=1.1.1 # For hot-reloading in development
1111
1212# ==============================================================================
1313# 2. DATA VALIDATION & CORE UTILITIES
1414# Primary libraries for data models and environment config.
1515# ------------------------------------------------------------------------------
16- pydantic~=2.12.0 # Data validation and settings management
17- python-dotenv~=1.1.0 # For loading configuration from .env files
16+ pydantic~=2.12.5 # Data validation and settings management
17+ python-dotenv~=1.1.1 # For loading configuration from .env files
1818python-multipart>=0.0.22 # For parsing form data and file uploads
19- PyYAML~=6.0.0 # For handling YAML configuration or data
19+ PyYAML~=6.0.3 # For handling YAML configuration or data
2020
2121# ==============================================================================
2222# 3. DATABASE & CONNECTIVITY
@@ -29,38 +29,38 @@ dnspython~=2.8.0 # Required for SRV record lookups by pymongo (e.g., Mong
2929# 4. HTTP CLIENT & UTILITIES
3030# Primary libraries for making external HTTP requests.
3131# ------------------------------------------------------------------------------
32- httpx~=0.28.0 # Asynchronous HTTP client for requests to external APIs
32+ httpx~=0.28.1 # Asynchronous HTTP client for requests to external APIs
3333email-validator~=2.3.0 # Utility for validating email addresses
34- voyageai~=0.3.5 # Vector embeddings API client
34+ voyageai~=0.3.7 # Vector embeddings API client
3535urllib3>=2.6.3 # HTTP library
3636
3737# ==============================================================================
3838# 5. CLI & DEVELOPMENT TOOLS
3939# Tools for building command-line interfaces for management tasks.
4040# ------------------------------------------------------------------------------
41- typer~=0.20.0 # Library for creating command-line applications
42- fastapi-cli~=0.0.0 # Tools to run and manage FastAPI projects
43- fastapi-cloud-cli~=0.3.0 # Tools for cloud deployment (specific to your pipeline)
41+ typer~=0.20.1 # Library for creating command-line applications
42+ fastapi-cli~=0.0.20 # Tools to run and manage FastAPI projects
43+ fastapi-cloud-cli~=0.3.1 # Tools for cloud deployment (specific to your pipeline)
4444
4545# ==============================================================================
4646# 6. TESTING & MONITORING
4747# Frameworks for ensuring code quality and production health.
4848# ------------------------------------------------------------------------------
49- pytest~=8.4.0 # Primary testing framework
49+ pytest~=8.4.2 # Primary testing framework
5050pytest-asyncio~=1.2.0 # Plugin to make asynchronous tests easy with pytest
51- sentry-sdk~=2.42.0 # For error tracking and performance monitoring
51+ sentry-sdk~=2.42.1 # For error tracking and performance monitoring
5252
5353# ==============================================================================
5454# 7. LOGGING AND TERMINAL OUTPUT
5555# Libraries for rich console output and debugging.
5656# ------------------------------------------------------------------------------
5757rich~=14.2.0 # For rich, formatted terminal output
58- rich-toolkit~=0.15.0 # Extensions for the 'rich' library
58+ rich-toolkit~=0.15.1 # Extensions for the 'rich' library
5959
6060# ==============================================================================
6161# 8. TRANSITIVE DEPENDENCY CONSTRAINTS
6262# Minimum versions for indirect dependencies.
6363# ------------------------------------------------------------------------------
6464filelock>=3.20.3 # Transitive dep via huggingface-hub
6565aiohttp>=3.13.3 # Transitive dep via voyageai
66- orjson>=3.11.5 # Transitive dep via langsmith (CVE fix)
66+ orjson>=3.11.7 # Transitive dep via langsmith (CVE fix)
0 commit comments