Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 29, 2025

Bumps the all group with 23 updates in the /ibis-server directory:

Package From To
fastapi 0.116.1 0.118.0
pydantic 2.10.6 2.11.9
google-auth 2.38.0 2.40.3
python-dotenv 1.0.1 1.1.1
orjson 3.10.16 3.11.3
pandas 2.2.3 2.3.2
geoalchemy2 0.17.1 0.18.0
sqlglot 27.14.0 27.19.0
gql 3.5.2 4.0.0
anyio 4.10.0 4.11.0
duckdb 1.3.2 1.4.0
uvicorn 0.35.0 0.37.0
uvicorn-worker 0.3.0 0.4.0
redshift-connector 2.1.7 2.1.8
datafusion 47.0.0 50.0.0
jupyterlab 4.4.7 4.4.9
pytest 8.3.5 8.4.2
testcontainers 4.9.2 4.13.1
sqlalchemy 2.0.39 2.0.43
pre-commit 4.2.0 4.3.0
ruff 0.11.2 0.13.2
trino 0.335.0 0.336.0
clickhouse-connect 0.8.15 0.9.2

Updates fastapi from 0.116.1 to 0.118.0

Release notes

Sourced from fastapi's releases.

0.118.0

Fixes

  • 🐛 Fix support for StreamingResponses with dependencies with yield or UploadFiles, close after the response is done. PR #14099 by @​tiangolo.

Before FastAPI 0.118.0, if you used a dependency with yield, it would run the exit code after the path operation function returned but right before sending the response.

This change also meant that if you returned a StreamingResponse, the exit code of the dependency with yield would have been already run.

For example, if you had a database session in a dependency with yield, the StreamingResponse would not be able to use that session while streaming data because the session would have already been closed in the exit code after yield.

This behavior was reverted in 0.118.0, to make the exit code after yield be executed after the response is sent.

You can read more about it in the docs for Advanced Dependencies - Dependencies with yield, HTTPException, except and Background Tasks. Including what you could do if you wanted to close a database session earlier, before returning the response to the client.

Docs

  • 📝 Update tutorial/security/oauth2-jwt/ to use pwdlib with Argon2 instead of passlib. PR #13917 by @​Neizvestnyj.
  • ✏️ Fix typos in OAuth2 password request forms. PR #14112 by @​alv2017.
  • 📝 Update contributing guidelines for installing requirements. PR #14095 by @​alejsdev.

Translations

Internal

0.117.1

Fixes

0.117.0

Features

Fixes

  • ⚡️ Fix default_factory for response model field with Pydantic V1. PR #9704 by @​vvanglro.
  • 🐛 Fix inconsistent processing of model docstring formfeed char with Pydantic V1. PR #6039 by @​MaxwellPayne.
  • 🐛 Fix jsonable_encoder alters json_encoders of Pydantic v1 objects. PR #4972 by @​aboubacs.

... (truncated)

Commits
  • 333f1ba 🔖 Release version 0.118.0
  • 1d5168a 📝 Update release notes
  • bfa54b4 📝 Update release notes
  • e329d78 🐛 Fix support for StreamingResponses with dependencies with yield or `Upl...
  • 861b22c 📝 Update release notes
  • efdafa4 📝 Update tutorial/security/oauth2-jwt/ to use pwdlib with Argon2 instead ...
  • 450a334 📝 Update release notes
  • 3eb2ee7 ✏️ Fix typos in OAuth2 password request forms (#14112)
  • 287eb31 📝 Update release notes
  • cca3341 🌐 Sync German docs (#14098)
  • Additional commits viewable in compare view

Updates pydantic from 2.10.6 to 2.11.9

Release notes

Sourced from pydantic's releases.

v2.11.9 2025-09-13

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.8...v2.11.9

v2.11.8 2025-09-13

v2.11.8 (2025-09-13)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.7...v2.11.8

v2.11.7 2025-06-14

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.6...v2.11.7

v2.11.6 2025-06-13

v2.11.6 (2025-06-13)

What's Changed

Fixes

Full Changelog: pydantic/pydantic@v2.11.5...v2.11.6

v2.11.5 2025-05-22

What's Changed

Fixes

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.11.9 (2025-09-13)

GitHub release

What's Changed

Fixes

v2.11.8 (2025-09-13)

GitHub release

What's Changed

Fixes

v2.11.7 (2025-06-14)

GitHub release

What's Changed

Fixes

  • Copy FieldInfo instance if necessary during FieldInfo build by @​Viicos in #11898

v2.11.6 (2025-06-13)

GitHub release

What's Changed

Fixes

v2.11.5 (2025-05-22)

GitHub release

What's Changed

Fixes

  • Check if FieldInfo is complete after applying type variable map by @​Viicos in #11855

... (truncated)

Commits
  • 9231095 Prepare release v2.11.9
  • f003a89 Backport v1.10.23 changes
  • 96b81dd Prepare release v2.11.8
  • 966f377 Fix mypy v2 plugin for upcoming 1.18 mypy release
  • 5f033e4 Prepare release v2.11.7
  • c3368b8 Copy FieldInfo instance if necessary during FieldInfo build (#11980)
  • 3987b23 Prepare release v2.11.6
  • dc7a9d2 Always store the original field assignment on FieldInfo
  • c284c27 Rebuild dataclass fields before schema generation
  • 5e6d1dc Prepare release v2.11.5
  • Additional commits viewable in compare view

Updates google-auth from 2.38.0 to 2.40.3

Release notes

Sourced from google-auth's releases.

v2.40.3

2.40.3 (2025-06-04)

Bug Fixes

v2.40.2

2.40.2 (2025-05-21)

Bug Fixes

  • Remove sync response logs in AuthorizedSession (97ed1c8)
  • Update test to consider new error message from cryptography (#1765) (44e38b6)

v2.40.1

2.40.1 (2025-05-06)

Bug Fixes

  • Disable logging response body for async logs (#1756) (2f0ddfe)

v2.40.0

2.40.0 (2025-04-29)

Features

Bug Fixes

  • Correct webauthn JSON parsing to be compliant with standard. (#1658) (0c5ef36)

v2.39.0

2.39.0 (2025-04-14)

Features

  • Adds GA support for X.509 workload identity federation (#1695) (7495960)

Bug Fixes

... (truncated)

Changelog

Sourced from google-auth's changelog.

2.40.3 (2025-06-04)

Bug Fixes

2.40.2 (2025-05-21)

Bug Fixes

  • Remove sync response logs in AuthorizedSession (97ed1c8)
  • Update test to consider new error message from cryptography (#1765) (44e38b6)

2.40.1 (2025-05-06)

Bug Fixes

  • Disable logging response body for async logs (#1756) (2f0ddfe)

2.40.0 (2025-04-29)

Features

Bug Fixes

  • Correct webauthn JSON parsing to be compliant with standard. (#1658) (0c5ef36)

2.39.0 (2025-04-14)

Features

  • Adds GA support for X.509 workload identity federation (#1695) (7495960)

Bug Fixes

  • Add impersonated SA via local ADC support for fetch_id_token (#1740) (f249764)
  • Add missing packaging dependency for feature requiring urllib3 (#1732) (221f4a8)
  • Add request timeout for MDS requests (#1699) (9f7d3fa)
  • Explicitly declare support for Python 3.13 (#1741) (6fd04d5)
Commits

Updates python-dotenv from 1.0.1 to 1.1.1

Release notes

Sourced from python-dotenv's releases.

v1.1.1

What's Changed

New Contributors

Full Changelog: theskumar/python-dotenv@v1.1.0...v1.1.1

v1.1.0

What's Changed

New Contributors

Full Changelog: theskumar/python-dotenv@v1.0.1...v1.1.0

Changelog

Sourced from python-dotenv's changelog.

[1.1.1] - 2025-06-24

Fixed

[1.1.0] - 2025-03-25

Feature

  • Add support for python 3.13
  • Enhance dotenv run, switch to execvpe for better resource management and signal handling (#523) by [@​eekstunt]

Fixed

  • find_dotenv and load_dotenv now correctly looks up at the current directory when running in debugger or pdb (#553 by [@​randomseed42])

Misc

  • Drop support for Python 3.8
Commits

Updates orjson from 3.10.16 to 3.11.3

Release notes

Sourced from orjson's releases.

3.11.3

Fixed

  • Fix PyPI project metadata when using maturin 1.9.2 or later.

3.11.2

Fixed

  • Fix build using Rust 1.89 on amd64.

Changed

  • Build now depends on Rust 1.85 or later instead of 1.82.

3.11.1

Changed

  • Publish PyPI wheels for CPython 3.14.

Fixed

  • Fix str on big-endian architectures.

3.11.0

Changed

  • Use a deserialization buffer allocated per request instead of a shared buffer allocated on import.
  • ABI compatibility with CPython 3.14 beta 4.

3.10.18

Fixed

  • Fix incorrect escaping of the vertical tabulation character. This was introduced in 3.10.17.

3.10.17

Changed

  • Publish PyPI Windows aarch64/arm64 wheels.
  • ABI compatibility with CPython 3.14 alpha 7.
  • Fix incompatibility running on Python 3.13 using WASM.
Changelog

Sourced from orjson's changelog.

3.11.3 - 2025-08-26

Fixed

  • Fix PyPI project metadata when using maturin 1.9.2 or later.

3.11.2 - 2025-08-12

Fixed

  • Fix build using Rust 1.89 on amd64.

Changed

  • Build now depends on Rust 1.85 or later instead of 1.82.

3.11.1 - 2025-07-25

Changed

  • Publish PyPI wheels for CPython 3.14.

Fixed

  • Fix str on big-endian architectures. This was introduced in 3.11.0.

3.11.0 - 2025-07-15

Changed

  • Use a deserialization buffer allocated per request instead of a shared buffer allocated on import.
  • ABI compatibility with CPython 3.14 beta 4.

3.10.18 - 2025-04-29

Fixed

  • Fix incorrect escaping of the vertical tabulation character. This was introduced in 3.10.17.

3.10.17 - 2025-04-29

Changed

... (truncated)

Commits

Updates pandas from 2.2.3 to 2.3.2

Release notes

Sourced from pandas's releases.

Pandas 2.3.2

We are pleased to announce the release of pandas 2.3.2. This release includes some improvements and fixes to the future string data type (preview feature for the upcoming pandas 3.0). We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.3.2 supports Python 3.9 and higher.

The release will be available on the conda-forge channel:

conda install pandas --channel conda-forge

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Pandas 2.3.1

We are pleased to announce the release of pandas 2.3.1. This release includes some improvements and fixes to the future string data type (preview feature for the upcoming pandas 3.0). We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.3.1 supports Python 3.9 and higher.

The release will be available on the conda-forge channel:

conda install pandas --channel conda-forge

Or via PyPI:

python3 -m pip install --upgrade pandas

Please report any issues with the release on the pandas issue tracker.

Thanks to all the contributors who made this release possible.

Pandas 2.3.0

We are pleased to announce the release of pandas 2.3.0. This release includes some new features, bug fixes, and performance improvements. We recommend that all users upgrade to this version.

See the full whatsnew for a list of all the changes. Pandas 2.3.0 supports Python 3.10 and higher.

The release will be available on the defaults and conda-forge channels:

conda install -c conda-forge pandas

Or via PyPI:

... (truncated)

Commits
  • 4665c10 RLS: 2.3.2
  • 633c68b DOC: fix syntax in whatsnew file
  • 456ad47 Backport PR #62152 on branch 2.3.x (DOC: prepare 2.3.2 whatsnew notes for rel...
  • 6cae644 [backport 2.3.x] DOC: move and reword whatsnew note for replace fix (GH-57865...
  • a91c50a Backport PR #62147 on branch 2.3.x (DOC: correct and rewrite string migration...
  • f7a2cfd [backport 2.3.x] BUG/DEPR: logical operation with bool and string (#61995) (#...
  • 7981a43 Backport PR #62124 on branch 2.3.x (CI/BLD: don't use strict xfail for '%m.%Y...
  • fafbcbd [backport 2.3.x] BUG(CoW): also raise for chained assignment for .at / .iat (...
  • 3ac64a7 [backport 2.3.x] BUG: Fix Series.str.contains with compiled regex on Arrow st...
  • 1f2dc4f [backport 2.3.x] BUG: fix Series.str.fullmatch() and Series.str.match() with ...
  • Additional commits viewable in compare view

Updates geoalchemy2 from 0.17.1 to 0.18.0

Release notes

Sourced from geoalchemy2's releases.

0.18.0

What's Changed

New Contributors

Full Changelog: geoalchemy/geoalchemy2@0.17.1...0.18.0

Changelog

Sourced from geoalchemy2's changelog.

0.18.0

Commits
  • 6076708 Release: 0.18.0 (#565)
  • e131121 Feat: Add support of spatial indexes for Raster type for PostgreSQL (#564)
  • 0b43208 [pre-commit.ci] pre-commit autoupdate (#563)
  • 8791b2e Docs: Fix doc strings for cache enabled (#562)
  • d3c1d04 Chore: Move reflection type registering (#561)
  • 24dc5d0 Fix: Remove warning from MySQL/MariaDB reflection (#560)
  • 71f7914 Feat: Handle computed columns (#557)
  • c139cdb Perf: Define slots in element classes to reduce memory usage of elements ...
  • 2e94baa Test: Improve readbility of benchmark results (#556)
  • 84292bc Chore: Create FUNDING.yml (#554)
  • Additional commits viewable in compare view

Updates sqlglot from 27.14.0 to 27.19.0

Changelog

Sourced from sqlglot's changelog.

[v27.19.0] - 2025-09-26

💥 BREAKING CHANGES

✨ New Features

🐛 Bug Fixes

🔧 Chores

[v27.18.0] - 2025-09-25

💥 BREAKING CHANGES

Bumps the all group with 23 updates in the /ibis-server directory:

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/fastapi/fastapi) | `0.116.1` | `0.118.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.10.6` | `2.11.9` |
| [google-auth](https://github.com/googleapis/google-auth-library-python) | `2.38.0` | `2.40.3` |
| [python-dotenv](https://github.com/theskumar/python-dotenv) | `1.0.1` | `1.1.1` |
| [orjson](https://github.com/ijl/orjson) | `3.10.16` | `3.11.3` |
| [pandas](https://github.com/pandas-dev/pandas) | `2.2.3` | `2.3.2` |
| [geoalchemy2](https://github.com/geoalchemy/geoalchemy2) | `0.17.1` | `0.18.0` |
| [sqlglot](https://github.com/tobymao/sqlglot) | `27.14.0` | `27.19.0` |
| [gql](https://github.com/graphql-python/gql) | `3.5.2` | `4.0.0` |
| [anyio](https://github.com/agronholm/anyio) | `4.10.0` | `4.11.0` |
| [duckdb](https://github.com/duckdb/duckdb-python) | `1.3.2` | `1.4.0` |
| [uvicorn](https://github.com/Kludex/uvicorn) | `0.35.0` | `0.37.0` |
| [uvicorn-worker](https://github.com/Kludex/uvicorn-worker) | `0.3.0` | `0.4.0` |
| [redshift-connector](https://github.com/aws/amazon-redshift-python-driver) | `2.1.7` | `2.1.8` |
| [datafusion](https://github.com/apache/datafusion-python) | `47.0.0` | `50.0.0` |
| [jupyterlab](https://github.com/jupyterlab/jupyterlab) | `4.4.7` | `4.4.9` |
| [pytest](https://github.com/pytest-dev/pytest) | `8.3.5` | `8.4.2` |
| [testcontainers](https://github.com/testcontainers/testcontainers-python) | `4.9.2` | `4.13.1` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.39` | `2.0.43` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `4.2.0` | `4.3.0` |
| [ruff](https://github.com/astral-sh/ruff) | `0.11.2` | `0.13.2` |
| [trino](https://github.com/trinodb/trino-python-client) | `0.335.0` | `0.336.0` |
| [clickhouse-connect](https://github.com/ClickHouse/clickhouse-connect) | `0.8.15` | `0.9.2` |



Updates `fastapi` from 0.116.1 to 0.118.0
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.116.1...0.118.0)

Updates `pydantic` from 2.10.6 to 2.11.9
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/v2.11.9/HISTORY.md)
- [Commits](pydantic/pydantic@v2.10.6...v2.11.9)

Updates `google-auth` from 2.38.0 to 2.40.3
- [Release notes](https://github.com/googleapis/google-auth-library-python/releases)
- [Changelog](https://github.com/googleapis/google-auth-library-python/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-auth-library-python@v2.38.0...v2.40.3)

Updates `python-dotenv` from 1.0.1 to 1.1.1
- [Release notes](https://github.com/theskumar/python-dotenv/releases)
- [Changelog](https://github.com/theskumar/python-dotenv/blob/main/CHANGELOG.md)
- [Commits](theskumar/python-dotenv@v1.0.1...v1.1.1)

Updates `orjson` from 3.10.16 to 3.11.3
- [Release notes](https://github.com/ijl/orjson/releases)
- [Changelog](https://github.com/ijl/orjson/blob/master/CHANGELOG.md)
- [Commits](ijl/orjson@3.10.16...3.11.3)

Updates `pandas` from 2.2.3 to 2.3.2
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.2.3...v2.3.2)

Updates `geoalchemy2` from 0.17.1 to 0.18.0
- [Release notes](https://github.com/geoalchemy/geoalchemy2/releases)
- [Changelog](https://github.com/geoalchemy/geoalchemy2/blob/master/CHANGES.txt)
- [Commits](geoalchemy/geoalchemy2@0.17.1...0.18.0)

Updates `sqlglot` from 27.14.0 to 27.19.0
- [Changelog](https://github.com/tobymao/sqlglot/blob/main/CHANGELOG.md)
- [Commits](tobymao/sqlglot@v27.14.0...v27.19.0)

Updates `gql` from 3.5.2 to 4.0.0
- [Release notes](https://github.com/graphql-python/gql/releases)
- [Commits](graphql-python/gql@v3.5.2...v4.0.0)

Updates `anyio` from 4.10.0 to 4.11.0
- [Release notes](https://github.com/agronholm/anyio/releases)
- [Changelog](https://github.com/agronholm/anyio/blob/master/docs/versionhistory.rst)
- [Commits](agronholm/anyio@4.10.0...4.11.0)

Updates `duckdb` from 1.3.2 to 1.4.0
- [Commits](duckdb/duckdb-python@v1.3.2...v1.4.0)

Updates `uvicorn` from 0.35.0 to 0.37.0
- [Release notes](https://github.com/Kludex/uvicorn/releases)
- [Changelog](https://github.com/Kludex/uvicorn/blob/main/docs/release-notes.md)
- [Commits](Kludex/uvicorn@0.35.0...0.37.0)

Updates `uvicorn-worker` from 0.3.0 to 0.4.0
- [Release notes](https://github.com/Kludex/uvicorn-worker/releases)
- [Commits](Kludex/uvicorn-worker@0.3.0...0.4.0)

Updates `redshift-connector` from 2.1.7 to 2.1.8
- [Release notes](https://github.com/aws/amazon-redshift-python-driver/releases)
- [Changelog](https://github.com/aws/amazon-redshift-python-driver/blob/master/CHANGELOG.md)
- [Commits](aws/amazon-redshift-python-driver@v2.1.7...v2.1.8)

Updates `datafusion` from 47.0.0 to 50.0.0
- [Changelog](https://github.com/apache/datafusion-python/blob/main/CHANGELOG.md)
- [Commits](apache/datafusion-python@47.0.0...50.0.0)

Updates `jupyterlab` from 4.4.7 to 4.4.9
- [Release notes](https://github.com/jupyterlab/jupyterlab/releases)
- [Changelog](https://github.com/jupyterlab/jupyterlab/blob/main/RELEASE.md)
- [Commits](https://github.com/jupyterlab/jupyterlab/compare/@jupyterlab/[email protected]...@jupyterlab/[email protected])

Updates `pytest` from 8.3.5 to 8.4.2
- [Release notes](https://github.com/pytest-dev/pytest/releases)
- [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst)
- [Commits](pytest-dev/pytest@8.3.5...8.4.2)

Updates `testcontainers` from 4.9.2 to 4.13.1
- [Release notes](https://github.com/testcontainers/testcontainers-python/releases)
- [Changelog](https://github.com/testcontainers/testcontainers-python/blob/main/CHANGELOG.md)
- [Commits](testcontainers/testcontainers-python@testcontainers-v4.9.2...testcontainers-v4.13.1)

Updates `sqlalchemy` from 2.0.39 to 2.0.43
- [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 `pre-commit` from 4.2.0 to 4.3.0
- [Release notes](https://github.com/pre-commit/pre-commit/releases)
- [Changelog](https://github.com/pre-commit/pre-commit/blob/main/CHANGELOG.md)
- [Commits](pre-commit/pre-commit@v4.2.0...v4.3.0)

Updates `ruff` from 0.11.2 to 0.13.2
- [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.11.2...0.13.2)

Updates `trino` from 0.335.0 to 0.336.0
- [Release notes](https://github.com/trinodb/trino-python-client/releases)
- [Changelog](https://github.com/trinodb/trino-python-client/blob/master/CHANGES.md)
- [Commits](trinodb/trino-python-client@0.335.0...0.336.0)

Updates `clickhouse-connect` from 0.8.15 to 0.9.2
- [Release notes](https://github.com/ClickHouse/clickhouse-connect/releases)
- [Changelog](https://github.com/ClickHouse/clickhouse-connect/blob/main/CHANGELOG.md)
- [Commits](ClickHouse/clickhouse-connect@v0.8.15...v0.9.2)

---
updated-dependencies:
- dependency-name: fastapi
  dependency-version: 0.118.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pydantic
  dependency-version: 2.11.9
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: google-auth
  dependency-version: 2.40.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: python-dotenv
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: orjson
  dependency-version: 3.11.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pandas
  dependency-version: 2.3.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: geoalchemy2
  dependency-version: 0.18.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: sqlglot
  dependency-version: 27.19.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: gql
  dependency-version: 4.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: anyio
  dependency-version: 4.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: duckdb
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: uvicorn
  dependency-version: 0.37.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: uvicorn-worker
  dependency-version: 0.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: redshift-connector
  dependency-version: 2.1.8
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: datafusion
  dependency-version: 50.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: jupyterlab
  dependency-version: 4.4.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: pytest
  dependency-version: 8.4.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: testcontainers
  dependency-version: 4.13.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: sqlalchemy
  dependency-version: 2.0.43
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: pre-commit
  dependency-version: 4.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: ruff
  dependency-version: 0.13.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: trino
  dependency-version: 0.336.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: clickhouse-connect
  dependency-version: 0.9.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file ibis python Pull requests that update Python code labels Sep 29, 2025
Copy link

coderabbitai bot commented Sep 29, 2025

Important

Review skipped

Bot user detected.

To trigger a single review, invoke the @coderabbitai review command.

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.


Comment @coderabbitai help to get the list of available commands and usage tips.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file ibis python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants