Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 14, 2025

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

Package From To
fastapi 0.116.1 0.119.0
pydantic 2.10.6 2.12.1
google-auth 2.38.0 2.41.1
python-dotenv 1.0.1 1.1.1
orjson 3.10.16 3.11.3
pandas 2.2.3 2.3.3
geoalchemy2 0.17.1 0.18.0
sqlglot 27.14.0 27.27.0
gql 3.5.2 4.0.0
anyio 4.10.0 4.11.0
duckdb 1.3.2 1.4.1
oracledb 3.3.0 3.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
ipykernel 6.30.1 7.0.0
matplotlib 3.10.6 3.10.7
plotly 6.3.0 6.3.1
pytest 8.3.5 8.4.2
testcontainers 4.9.2 4.13.2
sqlalchemy 2.0.39 2.0.44
pre-commit 4.2.0 4.3.0
ruff 0.11.2 0.14.0
trino 0.335.0 0.336.0
psycopg2 2.9.10 2.9.11
clickhouse-connect 0.8.15 0.9.2
polars 1.33.1 1.34.0

Updates fastapi from 0.116.1 to 0.119.0

Release notes

Sourced from fastapi's releases.

0.119.0

FastAPI now (temporarily) supports both Pydantic v2 models and pydantic.v1 models at the same time in the same app, to make it easier for any FastAPI apps still using Pydantic v1 to gradually but quickly migrate to Pydantic v2.

from fastapi import FastAPI
from pydantic import BaseModel as BaseModelV2
from pydantic.v1 import BaseModel
class Item(BaseModel):
name: str
description: str | None = None
class ItemV2(BaseModelV2):
title: str
summary: str | None = None
app = FastAPI()
@​app.post("/items/", response_model=ItemV2)
def create_item(item: Item):
return {"title": item.name, "summary": item.description}

Adding this feature was a big effort with the main objective of making it easier for the few applications still stuck in Pydantic v1 to migrate to Pydantic v2.

And with this, support for Pydantic v1 is now deprecated and will be removed from FastAPI in a future version soon.

Note: have in mind that the Pydantic team already stopped supporting Pydantic v1 for recent versions of Python, starting with Python 3.14.

You can read in the docs more about how to Migrate from Pydantic v1 to Pydantic v2.

Features

  • ✨ Add support for from pydantic.v1 import BaseModel, mixed Pydantic v1 and v2 models in the same app. PR #14168 by @​tiangolo.

0.118.3

Upgrades

0.118.2

Fixes

Internal

... (truncated)

Commits
  • 2e721e1 🔖 Release version 0.119.0
  • fc7a068 📝 Update release notes
  • 3a3879b 📝 Update release notes
  • d34918a ✨ Add support for from pydantic.v1 import BaseModel, mixed Pydantic v1 and ...
  • 352dbef 🔖 Release version 0.118.3
  • 96e7d6e 📝 Update release notes
  • 3611c3f ⬆️ Add support for Python 3.14 (#14165)
  • 942fce3 🔖 Release version 0.118.2
  • 13b067c 📝 Update release notes
  • 185cecd 🐛 Fix tagged discriminated union not recognized as body field (#12942)
  • Additional commits viewable in compare view

Updates pydantic from 2.10.6 to 2.12.1

Release notes

Sourced from pydantic's releases.

v2.12.1 2025-10-13

v2.12.1 (2025-10-13)

GitHub release

What's Changed

This is the first 2.12 patch release, addressing most (but not all yet) regressions from the initial 2.12.0 release.

Fixes

New Contributors

Full Changelog: pydantic/pydantic@v2.12.0...v2.12.1

v2.12.0 2025-10-07

v2.12.0 (2025-10-07)

[!NOTE] Check out the blog post for release highlights. Several minor changes (considered non-breaking changes according to our versioning policy) are also included in this release. Make sure to look into them before upgrading.

[!WARNING] The core functionality of Pydantic V1 is not compatible with Python 3.14 or greater.

This is the final 2.12 release. It features the work of 20 external contributors and provides useful new features, along with initial Python 3.14 support.

Changelog (see the 2.12.0a1 and 2.12.0b1 releases for additional changes since 2.11):

Packaging

New Features

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.12.1 (2025-10-13)

GitHub release

What's Changed

This is the first 2.12 patch release, addressing most (but not all yet) regressions from the initial 2.12.0 release.

Fixes

New Contributors

v2.12.0 (2025-10-07)

GitHub release

What's Changed

This is the final 2.12 release. It features the work of 20 external contributors and provides useful new features, along with initial Python 3.14 support. Several minor changes (considered non-breaking changes according to our versioning policy) are also included in this release. Make sure to look into them before upgrading.

Note that Pydantic V1 is not compatible with Python 3.14 and greater.

Changes (see the alpha and beta releases for additional changes since 2.11):

Packaging

New Features

Fixes

... (truncated)

Commits
  • b4076c6 Prepare release 2.12.1
  • b67f072 Bump pydantic-core to v2.41.3
  • 529f7dd Fix error message for invalid validator signatures
  • 445fa79 Backport V1 runtime warning
  • b3dba9b Make sure None is converted as NoneType in Python 3.14
  • 1e8c41e Do not evaluate annotations when inspecting validators and serializers
  • e2a199f Upgrade dependencies for 3.14
  • 79353e6 Fix spelling in model_dump() docstring
  • aa6b6cd Fix typo in experimental.md documentation
  • a7928e6 Update Python version in documentation publishing CI job (#12344)
  • Additional commits viewable in compare view

Updates google-auth from 2.38.0 to 2.41.1

Release notes

Sourced from google-auth's releases.

v2.41.1

2.41.1 (2025-09-30)

Bug Fixes

v2.41.0

2.41.0 (2025-09-29)

Features

  • Add support for cachetools 6.0 (#1773) (af18060)
  • Add trust boundary support for service accounts and impersonation. (#1778) (99be2ce)

Bug Fixes

Documentation

  • Update user guide to include x509 feature. (#1802) (2d89ab4)

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)

... (truncated)

Changelog

Sourced from google-auth's changelog.

2.41.1 (2025-09-30)

Bug Fixes

2.41.0 (2025-09-29)

Features

  • Add support for cachetools 6.0 (#1773) (af18060)
  • Add trust boundary support for service accounts and impersonation. (#1778) (99be2ce)

Bug Fixes

Documentation

  • Update user guide to include x509 feature. (#1802) (2d89ab4)

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)

... (truncated)

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.3

Release notes

Sourced from pandas's releases.

Pandas 2.3.3

We are pleased to announce the release of pandas 2.3.3. 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.3 supports Python 3.9 and higher, and is the first release to support Python 3.14.

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.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:

... (truncated)

Commits
  • 9c8bc3e RLS: 2.3.3
  • 6aa788a [backport 2.3.x] DOC: prepare 2.3.3 whatsnew notes for release (#62499) (#62508)
  • b64f0df [backport 2.3.x] BUG: avoid validation error for ufunc with string[python] ar...
  • 058eb2b [backport 2.3.x] BUG: String[pyarrow] comparison with mixed object (#62424) (...
  • 2ca088d [backport 2.3.x] DEPR: remove the Period resampling deprecation (#62480) (#62...
  • 92bf98f [backport 2.3.x] BUG: fix .str.isdigit to honor unicode superscript for older...
  • e57c7d6 Backport PR #62452 on branch 2.3.x (TST: Adjust tests for numexpr 2.13) (#62454)
  • e0fe9a0 Backport to 2.3.x: REGR: from_records not initializing subclasses properly (#...
  • 23a1085 BUG: improve future warning for boolean operations with missaligned indexes (...
  • 6113696 Backport PR #62396 on branch 2.3.x (PKG/DOC: indicate Python 3.14 support in ...
  • 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.27.0

Changelog

Sourced from sqlglot's changelog.

[v27.27.0] - 2025-10-13

💥 BREAKING CHANGES

✨ New Features

🔧 Chores

[v27.26.0] - 2025-10-10

💥 BREAKING CHANGES

✨ New Features

@dependabot dependabot bot added dependencies Pull requests that update a dependency file ibis python Pull requests that update Python code labels Oct 14, 2025
@coderabbitai
Copy link
Contributor

coderabbitai bot commented Oct 14, 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.

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

| Package | From | To |
| --- | --- | --- |
| [fastapi](https://github.com/fastapi/fastapi) | `0.116.1` | `0.119.0` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.10.6` | `2.12.1` |
| [google-auth](https://github.com/googleapis/google-auth-library-python) | `2.38.0` | `2.41.1` |
| [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.3` |
| [geoalchemy2](https://github.com/geoalchemy/geoalchemy2) | `0.17.1` | `0.18.0` |
| [sqlglot](https://github.com/tobymao/sqlglot) | `27.14.0` | `27.27.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.1` |
| [oracledb](https://github.com/oracle/python-oracledb) | `3.3.0` | `3.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` |
| [ipykernel](https://github.com/ipython/ipykernel) | `6.30.1` | `7.0.0` |
| [matplotlib](https://github.com/matplotlib/matplotlib) | `3.10.6` | `3.10.7` |
| [plotly](https://github.com/plotly/plotly.py) | `6.3.0` | `6.3.1` |
| [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.2` |
| [sqlalchemy](https://github.com/sqlalchemy/sqlalchemy) | `2.0.39` | `2.0.44` |
| [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.14.0` |
| [trino](https://github.com/trinodb/trino-python-client) | `0.335.0` | `0.336.0` |
| [psycopg2](https://github.com/psycopg/psycopg2) | `2.9.10` | `2.9.11` |
| [clickhouse-connect](https://github.com/ClickHouse/clickhouse-connect) | `0.8.15` | `0.9.2` |
| [polars](https://github.com/pola-rs/polars) | `1.33.1` | `1.34.0` |



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

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

Updates `google-auth` from 2.38.0 to 2.41.1
- [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.41.1)

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.3
- [Release notes](https://github.com/pandas-dev/pandas/releases)
- [Commits](pandas-dev/pandas@v2.2.3...v2.3.3)

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.27.0
- [Changelog](https://github.com/tobymao/sqlglot/blob/main/CHANGELOG.md)
- [Commits](tobymao/sqlglot@v27.14.0...v27.27.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.1
- [Changelog](https://github.com/duckdb/duckdb-python/blob/main/CHANGELOG.md)
- [Commits](duckdb/duckdb-python@v1.3.2...v1.4.1)

Updates `oracledb` from 3.3.0 to 3.4.0
- [Release notes](https://github.com/oracle/python-oracledb/releases)
- [Commits](oracle/python-oracledb@v3.3.0...v3.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 `ipykernel` from 6.30.1 to 7.0.0
- [Release notes](https://github.com/ipython/ipykernel/releases)
- [Changelog](https://github.com/ipython/ipykernel/blob/main/CHANGELOG.md)
- [Commits](ipython/ipykernel@v6.30.1...v7.0.0)

Updates `matplotlib` from 3.10.6 to 3.10.7
- [Release notes](https://github.com/matplotlib/matplotlib/releases)
- [Commits](matplotlib/matplotlib@v3.10.6...v3.10.7)

Updates `plotly` from 6.3.0 to 6.3.1
- [Release notes](https://github.com/plotly/plotly.py/releases)
- [Changelog](https://github.com/plotly/plotly.py/blob/main/CHANGELOG.md)
- [Commits](plotly/plotly.py@v6.3.0...v6.3.1)

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.2
- [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.2)

Updates `sqlalchemy` from 2.0.39 to 2.0.44
- [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.14.0
- [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.14.0)

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 `psycopg2` from 2.9.10 to 2.9.11
- [Changelog](https://github.com/psycopg/psycopg2/blob/master/NEWS)
- [Commits](psycopg/psycopg2@2.9.10...2.9.11)

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)

Updates `polars` from 1.33.1 to 1.34.0
- [Release notes](https://github.com/pola-rs/polars/releases)
- [Commits](pola-rs/polars@py-1.33.1...py-1.34.0)

---
updated-dependencies:
- dependency-name: fastapi
  dependency-version: 0.119.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: pydantic
  dependency-version: 2.12.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: google-auth
  dependency-version: 2.41.1
  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.3
  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.27.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.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: oracledb
  dependency-version: 3.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: ipykernel
  dependency-version: 7.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: all
- dependency-name: matplotlib
  dependency-version: 3.10.7
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: plotly
  dependency-version: 6.3.1
  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.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: sqlalchemy
  dependency-version: 2.0.44
  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.14.0
  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: psycopg2
  dependency-version: 2.9.11
  dependency-type: direct:development
  update-type: version-update:semver-patch
  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
- dependency-name: polars
  dependency-version: 1.34.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/ibis-server/all-a9dcc9e700 branch from 8653a84 to 11ececb Compare October 20, 2025 18:38
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 27, 2025

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 27, 2025
@dependabot dependabot bot deleted the dependabot/pip/ibis-server/all-a9dcc9e700 branch October 27, 2025 18:34
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.

1 participant