mirror of
https://github.com/blackboxprogramming/BlackRoad-Operating-System.git
synced 2026-03-17 04:57:15 -05:00
Bumps [botocore](https://github.com/boto/botocore) from 1.32.7 to 1.42.59. <details> <summary>Commits</summary> <ul> <li><a href="c204bb1da1"><code>c204bb1</code></a> Merge branch 'release-1.42.59'</li> <li><a href="7e59865407"><code>7e59865</code></a> Bumping version to 1.42.59</li> <li><a href="b38a03ce4d"><code>b38a03c</code></a> Update to latest models</li> <li><a href="97336ff38f"><code>97336ff</code></a> Merge customizations for ARC Region switch</li> <li><a href="f76046b4bd"><code>f76046b</code></a> Merge branch 'release-1.42.58'</li> <li><a href="be2689a1ee"><code>be2689a</code></a> Merge branch 'release-1.42.58' into develop</li> <li><a href="47f8789f55"><code>47f8789</code></a> Bumping version to 1.42.58</li> <li><a href="14bc74f6f6"><code>14bc74f</code></a> Update to latest models</li> <li><a href="8c0427aaab"><code>8c0427a</code></a> Add support for None values in list parsing (<a href="https://redirect.github.com/boto/botocore/issues/3618">#3618</a>)</li> <li><a href="86d9ec3b0f"><code>86d9ec3</code></a> Merge branch 'release-1.42.57'</li> <li>Additional commits viewable in <a href="https://github.com/boto/botocore/compare/1.32.7...1.42.59">compare view</a></li> </ul> </details> <br /> [](https://docs.github.com/en/github/managing-security-vulnerabilities/about-dependabot-security-updates#about-compatibility-scores) Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting `@dependabot rebase`. [//]: # (dependabot-automerge-start) [//]: # (dependabot-automerge-end) --- <details> <summary>Dependabot commands and options</summary> <br /> You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot show <dependency name> ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore this major version` will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this minor version` will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself) - `@dependabot ignore this dependency` will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself) </details>
67 lines
1.1 KiB
Plaintext
67 lines
1.1 KiB
Plaintext
# FastAPI and Server
|
|
fastapi==0.104.1
|
|
uvicorn[standard]==0.24.0
|
|
python-multipart==0.0.6
|
|
|
|
# Database
|
|
sqlalchemy==2.0.23
|
|
alembic==1.12.1
|
|
psycopg2-binary==2.9.11
|
|
asyncpg==0.29.0
|
|
aiosqlite==0.19.0
|
|
|
|
# Authentication & Security
|
|
python-jose[cryptography]==3.3.0
|
|
passlib[bcrypt]==1.7.4
|
|
bcrypt==4.1.1
|
|
pyjwt==2.8.0
|
|
|
|
# Redis Cache
|
|
redis==5.0.1
|
|
hiredis==3.3.0
|
|
|
|
# AWS S3 for File Storage
|
|
boto3==1.29.7
|
|
botocore==1.42.59
|
|
|
|
# Email
|
|
email-validator==2.3.0
|
|
emails==0.6.0
|
|
jinja2==3.1.2
|
|
|
|
# WebSockets
|
|
websockets==12.0
|
|
|
|
# Utilities
|
|
python-dotenv==1.0.0
|
|
pydantic==2.5.0
|
|
pydantic-settings==2.1.0
|
|
psutil==7.2.2
|
|
|
|
# HTTP Client
|
|
httpx==0.25.2
|
|
aiohttp==3.13.3
|
|
|
|
# Crypto/Blockchain
|
|
cryptography==41.0.7
|
|
ecdsa==0.18.0
|
|
hashlib-additional==1.1
|
|
|
|
# Testing
|
|
pytest==7.4.3
|
|
pytest-asyncio==0.21.1
|
|
pytest-cov==4.1.0
|
|
httpx==0.25.2
|
|
|
|
# Monitoring
|
|
prometheus-client==0.19.0
|
|
|
|
# CORS (handled by Starlette/FastAPI)
|
|
# Dependency removed because package does not exist on PyPI.
|
|
|
|
# New API Integrations (Railway, Vercel, Stripe, Twilio, Slack, Discord, Sentry)
|
|
# Note: Most integrations use httpx (already included above)
|
|
# Additional packages for specific integrations:
|
|
stripe==7.8.0
|
|
sentry-sdk==1.39.1
|