Skip to content

Commit 4799ddf

Browse files
deps(deps): bump the python-minor group across 1 directory with 6 updates
Bumps the python-minor group with 6 updates in the / directory: | Package | From | To | | --- | --- | --- | | [fastapi](https://github.com/fastapi/fastapi) | `0.127.0` | `0.128.0` | | [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.45` | `2.0.46` | | [alembic](https://github.com/sqlalchemy/alembic) | `1.17.2` | `1.18.1` | | [aiosqlite](https://github.com/omnilib/aiosqlite) | `0.22.0` | `0.22.1` | | [prometheus-client](https://github.com/prometheus/client_python) | `0.23.1` | `0.24.1` | | [ruff](https://github.com/astral-sh/ruff) | `0.14.10` | `0.14.14` | Updates `fastapi` from 0.127.0 to 0.128.0 - [Release notes](https://github.com/fastapi/fastapi/releases) - [Commits](fastapi/fastapi@0.127.0...0.128.0) Updates `sqlalchemy` from 2.0.45 to 2.0.46 - [Release notes](https://github.com/sqlalchemy/sqlalchemy/releases) - [Changelog](https://github.com/sqlalchemy/sqlalchemy/blob/main/CHANGES.rst) - [Commits](https://github.com/sqlalchemy/sqlalchemy/commits) Updates `alembic` from 1.17.2 to 1.18.1 - [Release notes](https://github.com/sqlalchemy/alembic/releases) - [Changelog](https://github.com/sqlalchemy/alembic/blob/main/CHANGES) - [Commits](https://github.com/sqlalchemy/alembic/commits) Updates `aiosqlite` from 0.22.0 to 0.22.1 - [Changelog](https://github.com/omnilib/aiosqlite/blob/main/CHANGELOG.md) - [Commits](omnilib/aiosqlite@v0.22.0...v0.22.1) Updates `prometheus-client` from 0.23.1 to 0.24.1 - [Release notes](https://github.com/prometheus/client_python/releases) - [Commits](prometheus/client_python@v0.23.1...v0.24.1) Updates `ruff` from 0.14.10 to 0.14.14 - [Release notes](https://github.com/astral-sh/ruff/releases) - [Changelog](https://github.com/astral-sh/ruff/blob/main/CHANGELOG.md) - [Commits](astral-sh/ruff@0.14.10...0.14.14) --- updated-dependencies: - dependency-name: fastapi dependency-version: 0.128.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-minor - dependency-name: sqlalchemy dependency-version: 2.0.46 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-minor - dependency-name: alembic dependency-version: 1.18.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-minor - dependency-name: aiosqlite dependency-version: 0.22.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-minor - dependency-name: prometheus-client dependency-version: 0.24.1 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: python-minor - dependency-name: ruff dependency-version: 0.14.14 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: python-minor ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent cc7406d commit 4799ddf

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

requirements-base.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,19 +2,19 @@
22
# This layer is cached separately for faster builds
33

44
# Core API Framework
5-
fastapi==0.127.0
5+
fastapi==0.128.0
66
uvicorn[standard]==0.40.0
77
pydantic==2.12.5
88
pydantic-settings==2.12.0
99
sse-starlette>=2.0.0
1010

1111
# Database
12-
sqlalchemy==2.0.45
12+
sqlalchemy==2.0.46
1313
psycopg2-binary==2.9.11
14-
alembic==1.17.2
14+
alembic==1.18.1
1515
asyncpg==0.31.0
1616
aiomysql==0.3.2
17-
aiosqlite==0.22.0
17+
aiosqlite==0.22.1
1818

1919
# Utilities
2020
python-dotenv==1.2.1
@@ -26,7 +26,7 @@ redis>=5.0.0
2626
hiredis>=2.3.0
2727

2828
# Monitoring & Logging
29-
prometheus-client==0.23.1
29+
prometheus-client==0.24.1
3030
structlog==25.5.0
3131

3232
# Security

requirements-dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ fakeredis>=2.21.0
1010

1111
# Code Quality
1212
black==25.12.0
13-
ruff==0.14.10
13+
ruff==0.14.14
1414
mypy==1.19.1
1515
pre-commit==4.5.1
1616

requirements.txt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,21 +13,21 @@
1313
# ============================================================================
1414

1515
# Core API Framework
16-
fastapi==0.127.0
16+
fastapi==0.128.0
1717
uvicorn[standard]==0.40.0
1818
pydantic==2.12.5
1919
pydantic-settings==2.12.0
2020
sse-starlette>=2.0.0 # Server-Sent Events for streaming (Issue #8)
2121

2222
# Database
23-
sqlalchemy==2.0.45
23+
sqlalchemy==2.0.46
2424
psycopg2-binary==2.9.11
25-
alembic==1.17.2
25+
alembic==1.18.1
2626

2727
# Async Database Drivers
2828
asyncpg==0.31.0
2929
aiomysql==0.3.2
30-
aiosqlite==0.22.0
30+
aiosqlite==0.22.1
3131

3232
# Utilities
3333
python-dotenv==1.2.1
@@ -39,7 +39,7 @@ redis>=5.0.0
3939
hiredis>=2.3.0 # C parser for better Redis performance
4040

4141
# Monitoring & Logging
42-
prometheus-client==0.23.1
42+
prometheus-client==0.24.1
4343
structlog==25.5.0
4444

4545
# Distributed Tracing (Issue #9: Monitoring & Observability)
@@ -90,6 +90,6 @@ fakeredis>=2.21.0 # Redis mocking for tests (Issue #8)
9090

9191
# Code Quality
9292
black==25.12.0
93-
ruff==0.14.10
93+
ruff==0.14.14
9494
mypy==1.19.1
9595
pre-commit==4.5.1

0 commit comments

Comments
 (0)