Skip to content

build(deps): bump the python-packages-minor-patch group with 24 updates - #282

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-packages-minor-patch-6ccfc05f39
Open

build(deps): bump the python-packages-minor-patch group with 24 updates#282
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/uv/python-packages-minor-patch-6ccfc05f39

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 1, 2026

Copy link
Copy Markdown
Contributor

Bumps the python-packages-minor-patch group with 24 updates:

Package From To
pyarrow 25.0.0 25.0.1
pydantic 2.13.4 2.13.5
pydantic-settings 2.14.2 2.15.0
pyzmq 27.1.0 27.2.0
that-depends 4.0.2 4.1.0
typer 0.27.0 0.27.2
adlfs 2026.5.0 2026.8.0
gcsfs 2026.7.0 2026.8.0
llama-index-core 0.14.23 0.14.24
redis 8.0.1 8.1.0
hatch 1.17.1 1.18.0
ipython 9.15.0 9.17.0
ipywidgets 8.1.8 8.1.9
jupyterlab 4.6.2 4.6.3
mypy 2.3.0 2.3.1
pre-commit 4.6.1 4.6.2
ruff 0.16.0 0.16.5
aiofile 3.11.1 3.12.3
coverage 7.15.2 7.16.0
pytest 9.0.3 9.1.1
pytest-asyncio 1.3.0 1.4.0
pytest-benchmark 5.2.3 5.3.0
pytest-rerunfailures 16.4 16.6
time-machine 3.2.0 3.5.0

Updates pyarrow from 25.0.0 to 25.0.1

Release notes

Sourced from pyarrow's releases.

Apache Arrow 25.0.1

Release Notes URL: https://arrow.apache.org/release/25.0.1.html

Apache Arrow 25.0.1 RC1

Release Notes: Release Candidate: 25.0.1 RC1

Apache Arrow 25.0.1 RC0

Release Notes: Release Candidate: 25.0.1 RC0

Commits

Updates pydantic from 2.13.4 to 2.13.5

Release notes

Sourced from pydantic's releases.

v2.13.5 (2026-08-28)

What's Changed

Fixes

  • Allow reuse of validators when plugins are set by @​Viicos in #13535
  • Fix missing GC traversal on some pydantic-core struct fields by @​Viicos in #13624
  • Fix missing GC traversal in pydantic-core for GeneralFieldsSerializer by @​Viicos in #13629
  • Count validated model fields once in smart unions by @​tamird in #13731
Changelog

Sourced from pydantic's changelog.

v2.13.5 (2026-08-28)

GitHub release

What's Changed

Fixes

  • Allow reuse of validators when plugins are set by @​Viicos in #13535
  • Fix missing GC traversal on some pydantic-core struct fields by @​Viicos in #13624
  • Fix missing GC traversal in pydantic-core for GeneralFieldsSerializer by @​Viicos in #13629
  • Count validated model fields once in smart unions by @​tamird in #13731
Commits
  • 001dea0 Bump pypa/gh-action-pypi-publish action to v1.14.2
  • 558379f Bump twine to v7.0.0
  • 2cfd5d3 Do not check for docs build
  • a735bee Fix more Clippy lints
  • 7eed4a1 Fix Clippy 0.1.95 warnings
  • b353bbb Prepare release v2.13.5
  • 63d2ccc Count validated model fields once in smart unions
  • a53ec2e Speed up PyPy CI tests
  • d65e0f9 Workaround circular import error in Mypy
  • 47a6dbf Fix missing GC traversal in pydantic-core for GeneralFieldsSerializer
  • Additional commits viewable in compare view

Updates pydantic-settings from 2.14.2 to 2.15.0

Release notes

Sourced from pydantic-settings's releases.

v2.15.0

Highlights

Behavior changes

  • case_sensitive now applies to init kwargs and config-file sources (#900). InitSettingsSource and the JSON/TOML/YAML config sources previously ignored case_sensitive. Since it defaults to False, case-insensitive matching is now the default for these sources — e.g. Settings(TeSt=...) now populates a test field where it previously did not. Nested keys are still matched case-sensitively.
  • Fields with unresolved forward references now emit a warning (#901). Settings sources can silently fail to resolve such fields; they now raise IncompleteFieldDefinitionWarning telling you to call model_rebuild(). If you have filterwarnings = error configured, this may surface as a new failure.
  • Non-JSON env values for strict fields now raise ValidationError (#926) instead of a less specific error.

New features

  • Show environment variable names in CLI help via cli_show_env_vars=True (#860), so generated --help output doubles as configuration documentation.
  • PYDANTIC_SETTINGS_DEBUG for debugging settings resolution (#906, #913). Set it to a truthy value with DEBUG logging enabled to see each source's contribution in priority order, which source won for each value, and which env_file/secret files were probed, loaded, or skipped — the long-standing "why isn't my .env being picked up?" question.
  • toml_table_header for regular TOML files (#882, #886, #887), letting you root settings at a nested table in any TOML file, not just pyproject.toml.
  • Traversable support for JSON/TOML/YAML file sources (#902), so you can load config packaged inside a distribution — including files inside a zip or wheel — via importlib.resources.files(...) without casting to Path.
  • GCP: project_id can come from an earlier settings source (#878), rather than only from the constructor or GOOGLE_CLOUD_PROJECT.

Bug fixes

  • Fix env vars not loading on Windows with case_sensitive=True (#894). Windows upper-cases os.environ keys, so fields raised Field required instead of picking up their values.
  • Read secret files as UTF-8 instead of the platform locale encoding (#917). On Windows code pages such as cp1252 this silently corrupted non-ASCII secrets.
  • Fix AliasPath on nested model fields not JSON-decoding env values (#898).
  • Fix case-insensitive matching for optional nested models (#905).
  • Fix dotenv extras being wrongly claimed by a complex field sharing a name prefix (#912) — e.g. dbx_token being swallowed by a db: dict field.
  • Fix nested_model_default_partial_update=True corrupting discriminated unions (#876).
  • Fix Secret subclasses crashing when loaded from the environment (#920).
  • Fix enum names not parsing through nested annotations such as Optional[Annotated[MyEnum, ...]] with env_parse_enums=True (#910).
  • An empty yaml_config_section now falls back to defaults instead of raising AttributeError: 'NoneType' object has no attribute 'keys' (#914).
  • NestedSecretsSettingsSource no longer follows symlinks pointing outside secrets_dir (#889).
  • GCP: skip the list_secrets call when case_sensitive=True (#862), lowering the required IAM permissions to just roles/secretmanager.secretAccessor.
  • AWS: types-boto3[secretsmanager] is no longer required at runtime (#880).

Documentation

  • Document JSON parsing of complex env values, plus a comma-separated-values recipe (#919).
  • Recommend an async settings loading pattern (#908).
  • Clarify behavior when an unprefixed value is present in a dotenv file (#895).
  • Clarify environment variable helper descriptions (#867) and fix assorted typos (#904).

What's Changed

... (truncated)

Commits
  • f725ca1 Prepare release 2.15.0 (#930)
  • 28f35c2 Bump the python-packages group with 4 updates (#929)
  • 9056db0 test: move function-local imports to the top of test modules (#927)
  • f077e3a fix: raise ValidationError for non-JSON env values on strict fields (#926)
  • ae25d70 fix: treat Secret subclasses as non-complex fields (#716) (#920)
  • 798dcea Bump the python-packages group with 4 updates (#924)
  • a190041 Bump the github-actions group with 4 updates (#925)
  • 5d93332 Bump the python-packages group with 4 updates (#921)
  • d2fdeda fix: read secret files as UTF-8 instead of the locale encoding (#917)
  • 2256a4e Bump the python-packages group with 3 updates (#915)
  • Additional commits viewable in compare view

Updates pyzmq from 27.1.0 to 27.2.0

Release notes

Sourced from pyzmq's releases.

v27.2.0

See release notes, or pyzmq on PyPI.

Install with:

pip install 'pyzmq==27.2.0'
Commits

Updates that-depends from 4.0.2 to 4.1.0

Release notes

Sourced from that-depends's releases.

4.1.0

What's Changed

Full Changelog: modern-python/that-depends@4.0.2...4.1.0

Commits

Updates typer from 0.27.0 to 0.27.2

Release notes

Sourced from typer's releases.

0.27.2

Refactors

  • ♻️ Create exceptions module and TyperException base class. PR #1942 by @​svlandeg.

Docs

  • 🐛 Fix showing fast button as external link in animated terminals in docs. PR #1912 by @​phalberg.

Internal

0.27.1

Features

  • ✨ Make epilog formatting consistent with other parts of the help string. PR #1405 by @​svlandeg.

Docs

Internal

Changelog

Sourced from typer's changelog.

0.27.2 (2026-08-28)

Refactors

  • ♻️ Create exceptions module and TyperException base class. PR #1942 by @​svlandeg.

Docs

  • 🐛 Fix showing fast button as external link in animated terminals in docs. PR #1912 by @​phalberg.

Internal

0.27.1 (2026-08-03)

Features

  • ✨ Make epilog formatting consistent with other parts of the help string. PR #1405 by @​svlandeg.

Docs

Internal

Commits

Updates adlfs from 2026.5.0 to 2026.8.0

Release notes

Sourced from adlfs's releases.

2026.8.0

What's Changed

New Contributors

Full Changelog: fsspec/adlfs@2026.5.0...2026.8.0

Changelog

Sourced from adlfs's changelog.

2026.8.0

  • Added a content_settings parameter to open() (write modes), pipe_file() and put_file() to set blob content settings (content type, content disposition, cache control, ...) on write. Accepts a dict (recommended) or an azure.storage.blob.ContentSettings instance. #554
  • Fixed ls()fsspec/adlfs#409
Commits

Updates gcsfs from 2026.7.0 to 2026.8.0

Release notes

Sourced from gcsfs's releases.

2026.8.0

What's Changed

Adaptive Concurrent Prefetching is now the default read path

Enhanced read path via adaptive concurrent prefetching is now the default in GCSFS. Starting with this version, GCSFS predicts the next byte range an application will read, fetches it in the background across several concurrent HTTP requests, and keeps the bytes in memory before next read() is called. Network round-trips overlap with application compute instead of blocking calls where compute has to wait for data to be fetched. We are also enabling read concurrency, so a single reader is no longer limited by the bandwidth of a single HTTP connection.

GCSFS prefetcher adapts to workload read IO patterns. It tracks the rolling average of recent read sizes and scales the prefetch window linearly with the detected sequential streak, rather than using a fixed block size or exponential doubling. This is inline to what modern Linux kernels will do to balance prefetch and memory footprint. When the pattern turns random read i.e. we are not able to leverage the prefetched buffer to answer the next read() call, it drains the buffer to zero, so that random-access workloads pay no bandwidth or memory penalty.

Why this matters for AI/ML workloads

  • Model loading and checkpoint restore are typically large sequential reads - and prefetcher shines there. In our benchmarking, a single-stream sequential throughput improved from 23.69 MB/s to 658.71 MB/s for 1 MB I/O, and from 156 MB/s to 736 MB/s for 16 MB I/O.
  • Training data pipelines stay fed. Parquet and sharded dataset reads issue small-to-medium sequential ranges that previously suffered from low throughput, but now achieve significantly more; at 16 MB I/O throughput rises from 150 MB/s to 730 MB/s. Reducing the wait time for data loading improves accelerator goodput(amount of time accelerator is utilised for training than waiting).
  • Multi-worker dataloader scaling. The prefetcher manufactures its own parallelism per worker instead of relying on process count alone.
  • Accelerate the throughput even further with Rapid Buckets. With Rapid Buckets single node throughput reaches 21 GiB/s with 16-process sequentially reading at 16 MiB I/O compared to standard buckets with 48processes.

Adaptive prefetcher is enabled by default when cache_type is not explicitly set and concurrency value is set at 4(DEFAULT_GCSFS_CONCURRENCY=4) for both Standard and Rapid buckets. You can disable adaptive prefetcher by setting an explicit cache_type, or by setting USE_EXPERIMENTAL_ADAPTIVE_PREFETCHING='false', or by passing use_experimental_adaptive_prefetching=False to open() call.

(Warning) Impact on memory: Prefetching trades memory for throughput. Peak memory rises from ~170 MB to 600 MB on single-stream reads for 16 MB IO size and varies with requested IO sizes, and would be materially more under high process counts. Please ensure that application memory limits accordingly to use prefetcher without any Out of Memory(OOM) issues. To put hard limit, you can also use user_max_prefetch_size

For details on architecture, tuning, full benchmark tables, along with known limitations please refer to : https://github.com/fsspec/gcsfs/blob/main/docs/source/prefetcher.rst

(#795, #805, #818, #877)

Bug Fixes & Improvements

  • Zero-cost local backward seeks in PrefetchConsumer - Parquet footer and ZIP directory reads are served from the existing buffer instead of re-issuing a network request. (#930)
  • Concurrent downloads cap task count against a minimum chunk size, removing per-task overhead on small ranges. (#926)
  • Generation consistency across parallel fetches, guaranteeing every chunk comes from the same object version. (#921)
  • Fixed silent truncation on short reads in zonal bucket downloads. (#920)
  • Zero-copy read and write paths via memoryview, cutting CPU and transient memory in the hot path. (#840, #907, #928)
  • Graceful fallback where ctypes.pythonapi is unavailable. (#938)

New Contributors

Full Changelog: fsspec/gcsfs@2026.7.0...2026.8.0

Commits
  • ea2a1ff chore: release 2026.8.0 (#995)
  • 158badb feat(subsystembenchmarks): add webdataset image dataloading read benchmark (#...
  • 2089c10 feat(subsystembenchmarks): generalize dataloading seam for multiple loaders (...
  • c99137d subsystembenchmarks: support model id substitution in checkpointing save (#1003)
  • 9d38875 Track whether cache_type is explicitly set or defaulting in User-Agent header...
  • 8accb61 fix(benchmarks): force reinstall requirement overrides and wait for JobSet we...
  • 807e628 feat(subsystembenchmarks): add PyTorch Lightning checkpointing save benchmark...
  • 38aaf37 fix(macrobenchmarks): enable autoupgrade on GKE clusters and node pools (#999)
  • afcaa35 Update benchmarks to remove custom env for prefetcher (#996)
  • 8880f63 Makes prefetcher none cache default (#992)
  • Additional commits viewable in compare view

Updates llama-index-core from 0.14.23 to 0.14.24

Release notes

Sourced from llama-index-core's releases.

v0.14.24

Release Notes

[2026-08-19]

llama-index-core [0.14.24]

  • fix: close HotpotQA evaluator file handles (#22113)
  • fix(core): preserve oversized leaf nodes in CodeSplitter (#22119)
  • fix: preserve multiblock chat history writes (#22124)
  • fix(core): skip empty nodes in HTMLNodeParser (#22125)
  • fix(core): respect mmr_threshold=0 in MMR embedding search (#22126)
  • fix: keep all nodes per document in IngestionPipeline upserts (re-submit of #22046, not a dup of #21456) (#22133)
  • fix: don't mark *args/**kwargs as required tool parameters (#22135)
  • fix(core): default MetadataFilters condition to AND when None (#22155)
  • fix: honor agent structured_output_fn/output_cls inside AgentWorkflow (#22162)
  • fix(core): use word tokenization for stopword removal in SemanticDoubleMergingSplitterNodeParser (#22167)
  • fix(core): restore prompt helper fallback to supplied LLM metadata (#22177)
  • populate response text on streaming chat response when writing to memory (#22179)
  • feat(property_graph): add raise_on_error to LLM path extractors (#22195)
  • Clarify FactExtractionMemoryBlock condense prompt to return a full snapshot (#22213)
  • fix a few typos (#22512)
  • fix(core): give each CitationQueryEngine citation node its own id and offsets (#22537)
  • fix(core): persist SimpleChatStore without escaping non-ascii (#22538)
  • feat(core): allow Memory to accept any AsyncDBChatStore (#22541)
  • test(node_parser): enable pytest discovery for sentence_window tests (#22545)
  • Implement async for LLMRerank (#22597)

llama-index-embeddings-bedrock [0.8.3]

  • fix: make aioboto3 optional in llama-index-embeddings-bedrock (#21915)
  • fix(embeddings): validate non-empty Bedrock embedding payload before AWS call (#22527)

llama-index-embeddings-voyageai [0.6.1]

  • fix: set chunk_size=32000 and fix input format for contextualizedembeddings (#22144)

llama-index-graph-stores-falkordb [0.6.0]

  • fix(falkordb): correct schema, vector ranking, filters and batching in property graph store (#22522)

llama-index-indices-managed-dashscope [0.5.1]

  • fix(dashscope): send query_history in retriever payload (#22212)

llama-index-indices-managed-lancedb [0.3.2]

  • fix(lancedb): repair image ingestion crash, embedding_model typo, and… (#22544)
  • lint (#22572)

... (truncated)

Changelog

Sourced from llama-index-core's changelog.

llama-index-core [0.14.24]

  • fix: close HotpotQA evaluator file handles (#22113)
  • fix(core): preserve oversized leaf nodes in CodeSplitter (#22119)
  • fix: preserve multiblock chat history writes (#22124)
  • fix(core): skip empty nodes in HTMLNodeParser (#22125)
  • fix(core): respect mmr_threshold=0 in MMR embedding search (#22126)
  • fix: keep all nodes per document in IngestionPipeline upserts (re-submit of #22046, not a dup of #21456) (#22133)
  • fix: don't mark *args/**kwargs as required tool parameters (#22135)
  • fix(core): default MetadataFilters condition to AND when None (#22155)
  • fix: honor agent structured_output_fn/output_cls inside AgentWorkflow (#22162)
  • fix(core): use word tokenization for stopword removal in SemanticDoubleMergingSplitterNodeParser (#22167)
  • fix(core): restore prompt helper fallback to supplied LLM metadata (#22177)
  • populate response text on streaming chat response when writing to memory (#22179)
  • feat(property_graph): add raise_on_error to LLM path extractors (#22195)
  • Clarify FactExtractionMemoryBlock condense prompt to return a full snapshot (#22213)
  • fix a few typos (#22512)
  • fix(core): give each CitationQueryEngine citation node its own id and offsets (#22537)
  • fix(core): persist SimpleChatStore without escaping non-ascii (#22538)
  • feat(core): allow Memory to accept any AsyncDBChatStore (#22541)
  • test(node_parser): enable pytest discovery for sentence_window tests (#22545)
  • Implement async for LLMRerank (#22597)

llama-index-embeddings-bedrock [0.8.3]

  • fix: make aioboto3 optional in llama-index-embeddings-bedrock (#21915)
  • fix(embeddings): validate non-empty Bedrock embedding payload before AWS call (#22527)

llama-index-embeddings-voyageai [0.6.1]

  • fix: set chunk_size=32000 and fix input format for contextualizedembeddings (#22144)

llama-index-graph-stores-falkordb [0.6.0]

  • fix(falkordb): correct schema, vector ranking, filters and batching in property graph store (#22522)

llama-index-indices-managed-dashscope [0.5.1]

  • fix(dashscope): send query_history in retriever payload (#22212)

llama-index-indices-managed-lancedb [0.3.2]

  • fix(lancedb): repair image ingestion crash, embedding_model typo, and… (#22544)
  • lint (#22572)

llama-index-llms-anthropic [0.11.10]

  • feat(anthropic): Add support for Claude Sonnet 5 (#22202)
  • Fix/sonnet 5 function calling (#22217)
  • feat(anthropic, bedrock-converse): add Claude Opus 5 to model allowlists (#22451)

... (truncated)

Commits
  • 9ba74b8 Release 0.14.24 (#22761)
  • 04823eb fix pre-release script (#22760)
  • 30e759a feat(google-genai): use gemini 3.7 Flash by default in lib and docs (#22734)
  • 01cb24c fix: dont overwrite thought signatures (#21562)
  • 3759b52 feat(ag-ui): support multimodal user input (images, audio, video, documents) ...
  • afd0fef fix(pinecone): support pinecone client v8 and v9 (#22511)
  • 9bbdfe1 fix a few typos (#22512)
  • 9808e4b fix(embeddings): validate non-empty Bedrock embedding payload before AWS call...
  • 7b64c7e fix: close file handles and http connections in reader integrations (#22529)

Bumps the python-packages-minor-patch group with 24 updates:

| Package | From | To |
| --- | --- | --- |
| [pyarrow](https://github.com/apache/arrow) | `25.0.0` | `25.0.1` |
| [pydantic](https://github.com/pydantic/pydantic) | `2.13.4` | `2.13.5` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.14.2` | `2.15.0` |
| [pyzmq](https://github.com/zeromq/pyzmq) | `27.1.0` | `27.2.0` |
| [that-depends](https://github.com/modern-python/that-depends) | `4.0.2` | `4.1.0` |
| [typer](https://github.com/fastapi/typer) | `0.27.0` | `0.27.2` |
| [adlfs](https://github.com/fsspec/adlfs) | `2026.5.0` | `2026.8.0` |
| [gcsfs](https://github.com/fsspec/gcsfs) | `2026.7.0` | `2026.8.0` |
| [llama-index-core](https://github.com/run-llama/llama_index) | `0.14.23` | `0.14.24` |
| [redis](https://github.com/redis/redis-py) | `8.0.1` | `8.1.0` |
| [hatch](https://github.com/pypa/hatch) | `1.17.1` | `1.18.0` |
| [ipython](https://github.com/ipython/ipython) | `9.15.0` | `9.17.0` |
| [ipywidgets](https://github.com/jupyter-widgets/ipywidgets) | `8.1.8` | `8.1.9` |
| [jupyterlab](https://github.com/jupyterlab/jupyterlab) | `4.6.2` | `4.6.3` |
| [mypy](https://github.com/python/mypy) | `2.3.0` | `2.3.1` |
| [pre-commit](https://github.com/pre-commit/pre-commit) | `4.6.1` | `4.6.2` |
| [ruff](https://github.com/astral-sh/ruff) | `0.16.0` | `0.16.5` |
| [aiofile](https://github.com/mosquito/aiofile) | `3.11.1` | `3.12.3` |
| [coverage](https://github.com/coveragepy/coveragepy) | `7.15.2` | `7.16.0` |
| [pytest](https://github.com/pytest-dev/pytest) | `9.0.3` | `9.1.1` |
| [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) | `1.3.0` | `1.4.0` |
| [pytest-benchmark](https://github.com/ionelmc/pytest-benchmark) | `5.2.3` | `5.3.0` |
| [pytest-rerunfailures](https://github.com/pytest-dev/pytest-rerunfailures) | `16.4` | `16.6` |
| [time-machine](https://github.com/adamchainz/time-machine) | `3.2.0` | `3.5.0` |


Updates `pyarrow` from 25.0.0 to 25.0.1
- [Release notes](https://github.com/apache/arrow/releases)
- [Commits](apache/arrow@apache-arrow-25.0.0...apache-arrow-25.0.1)

Updates `pydantic` from 2.13.4 to 2.13.5
- [Release notes](https://github.com/pydantic/pydantic/releases)
- [Changelog](https://github.com/pydantic/pydantic/blob/v2.13.5/HISTORY.md)
- [Commits](pydantic/pydantic@v2.13.4...v2.13.5)

Updates `pydantic-settings` from 2.14.2 to 2.15.0
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.14.2...v2.15.0)

Updates `pyzmq` from 27.1.0 to 27.2.0
- [Release notes](https://github.com/zeromq/pyzmq/releases)
- [Commits](zeromq/pyzmq@v27.1.0...v27.2.0)

Updates `that-depends` from 4.0.2 to 4.1.0
- [Release notes](https://github.com/modern-python/that-depends/releases)
- [Commits](modern-python/that-depends@4.0.2...4.1.0)

Updates `typer` from 0.27.0 to 0.27.2
- [Release notes](https://github.com/fastapi/typer/releases)
- [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md)
- [Commits](fastapi/typer@0.27.0...0.27.2)

Updates `adlfs` from 2026.5.0 to 2026.8.0
- [Release notes](https://github.com/fsspec/adlfs/releases)
- [Changelog](https://github.com/fsspec/adlfs/blob/main/CHANGELOG.md)
- [Commits](fsspec/adlfs@2026.5.0...2026.8.0)

Updates `gcsfs` from 2026.7.0 to 2026.8.0
- [Release notes](https://github.com/fsspec/gcsfs/releases)
- [Commits](fsspec/gcsfs@2026.7.0...2026.8.0)

Updates `llama-index-core` from 0.14.23 to 0.14.24
- [Release notes](https://github.com/run-llama/llama_index/releases)
- [Changelog](https://github.com/run-llama/llama_index/blob/main/CHANGELOG.md)
- [Commits](run-llama/llama_index@v0.14.23...v0.14.24)

Updates `redis` from 8.0.1 to 8.1.0
- [Release notes](https://github.com/redis/redis-py/releases)
- [Changelog](https://github.com/redis/redis-py/blob/master/CHANGES)
- [Commits](redis/redis-py@v8.0.1...v8.1.0)

Updates `hatch` from 1.17.1 to 1.18.0
- [Release notes](https://github.com/pypa/hatch/releases)
- [Commits](pypa/hatch@hatch-v1.17.1...hatch-v1.18.0)

Updates `ipython` from 9.15.0 to 9.17.0
- [Release notes](https://github.com/ipython/ipython/releases)
- [Commits](ipython/ipython@9.15.0...9.17.0)

Updates `ipywidgets` from 8.1.8 to 8.1.9
- [Release notes](https://github.com/jupyter-widgets/ipywidgets/releases)
- [Commits](jupyter-widgets/ipywidgets@8.1.8...8.1.9)

Updates `jupyterlab` from 4.6.2 to 4.6.3
- [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/lsp@4.6.2...@jupyterlab/lsp@4.6.3)

Updates `mypy` from 2.3.0 to 2.3.1
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v2.3.0...v2.3.1)

Updates `pre-commit` from 4.6.1 to 4.6.2
- [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.6.1...v4.6.2)

Updates `ruff` from 0.16.0 to 0.16.5
- [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.16.0...0.16.5)

Updates `aiofile` from 3.11.1 to 3.12.3
- [Release notes](https://github.com/mosquito/aiofile/releases)
- [Commits](mosquito/aiofile@3.11.1...3.12.3)

Updates `coverage` from 7.15.2 to 7.16.0
- [Release notes](https://github.com/coveragepy/coveragepy/releases)
- [Changelog](https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst)
- [Commits](coveragepy/coveragepy@7.15.2...7.16.0)

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

Updates `pytest-asyncio` from 1.3.0 to 1.4.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v1.3.0...v1.4.0)

Updates `pytest-benchmark` from 5.2.3 to 5.3.0
- [Release notes](https://github.com/ionelmc/pytest-benchmark/releases)
- [Changelog](https://github.com/ionelmc/pytest-benchmark/blob/master/CHANGELOG.rst)
- [Commits](ionelmc/pytest-benchmark@v5.2.3...v5.3.0)

Updates `pytest-rerunfailures` from 16.4 to 16.6
- [Changelog](https://github.com/pytest-dev/pytest-rerunfailures/blob/master/CHANGES.rst)
- [Commits](pytest-dev/pytest-rerunfailures@16.4...16.6)

Updates `time-machine` from 3.2.0 to 3.5.0
- [Changelog](https://github.com/adamchainz/time-machine/blob/main/docs/changelog.rst)
- [Commits](adamchainz/time-machine@3.2.0...3.5.0)

---
updated-dependencies:
- dependency-name: pyarrow
  dependency-version: 25.0.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages-minor-patch
- dependency-name: pydantic
  dependency-version: 2.13.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages-minor-patch
- dependency-name: pydantic-settings
  dependency-version: 2.15.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: pyzmq
  dependency-version: 27.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: that-depends
  dependency-version: 4.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: typer
  dependency-version: 0.27.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages-minor-patch
- dependency-name: adlfs
  dependency-version: 2026.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: gcsfs
  dependency-version: 2026.8.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: llama-index-core
  dependency-version: 0.14.24
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-packages-minor-patch
- dependency-name: redis
  dependency-version: 8.1.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: hatch
  dependency-version: 1.18.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: ipython
  dependency-version: 9.17.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: ipywidgets
  dependency-version: 8.1.9
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-packages-minor-patch
- dependency-name: jupyterlab
  dependency-version: 4.6.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-packages-minor-patch
- dependency-name: mypy
  dependency-version: 2.3.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-packages-minor-patch
- dependency-name: pre-commit
  dependency-version: 4.6.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-packages-minor-patch
- dependency-name: ruff
  dependency-version: 0.16.5
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: python-packages-minor-patch
- dependency-name: aiofile
  dependency-version: 3.12.3
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: coverage
  dependency-version: 7.16.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: pytest
  dependency-version: 9.1.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: pytest-asyncio
  dependency-version: 1.4.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: pytest-benchmark
  dependency-version: 5.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: pytest-rerunfailures
  dependency-version: '16.6'
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
- dependency-name: time-machine
  dependency-version: 3.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: python-packages-minor-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file python:uv Pull requests that update python:uv code labels Sep 1, 2026
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 python:uv Pull requests that update python:uv code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants