Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Updates the requirements on ipykernel, protobuf, chromadb, sentence-transformers, graphrag-sdk, llama-index, llama-index-core, llama-index-llms-openai, fastapi, litellm, pydantic-ai, pytest-cov, pytest-asyncio, pandas, dirty-equals, mkdocs-material, mkdocstrings[python], typer, mkdocs-macros-plugin, pyyaml, mypy, ruff and uv to permit the latest version.
Updates ipykernel from 6.30.1 to 7.0.1

Release notes

Sourced from ipykernel's releases.

v7.0.1

7.0.1

IPykernel 7.0.1 is a bug fix release to support CPython 3.14.

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Documentation improvements

Contributors to this release

(GitHub contributors page for this release)

@​bollwyvl | @​Carreau | @​cclauss | @​ianthomas23

v7.0.0

7.0.0

IPykernel 7.0.0 is a major release containing experimental support for kernel subshells.

If not using subshells it is intended to be backward compatible with the 6.x branch, but there are some architectural changes which may break assumptions made in downstream libraries and hence this is identified as a major releases as it is potentially backwards incompatible. If you experience problems then please report them, and you can pin ipykernel < 7 if necessary.

For further information and to report problems please see ipykernel 7.0.0 release with subshells (issue 1438).

(Full Changelog)

Enhancements made

Bugs fixed

... (truncated)

Changelog

Sourced from ipykernel's changelog.

7.0.1

IPykernel 7.0.1 is a bug fix release to support CPython 3.14.

(Full Changelog)

Bugs fixed

Maintenance and upkeep improvements

Documentation improvements

Contributors to this release

(GitHub contributors page for this release)

@​bollwyvl | @​Carreau | @​cclauss | @​ianthomas23

7.0.0

IPykernel 7.0.0 is a major release containing experimental support for kernel subshells.

If not using subshells it is intended to be backward compatible with the 6.x branch, but there are some architectural changes which may break assumptions made in downstream libraries and hence this is identified as a major releases as it is potentially backwards incompatible. If you experience problems then please report them, and you can pin ipykernel < 7 if necessary.

For further information and to report problems please see ipykernel 7.0.0 release with subshells (issue 1438).

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

... (truncated)

Commits

Updates protobuf from 6.32.0 to 6.33.0

Commits

Updates chromadb from 1.0.20 to 1.2.0

Release notes

Sourced from chromadb's releases.

1.1.1

Version: 1.1.1 Git ref: refs/tags/1.1.1 Build Date: 2025-10-05T02:52 PIP Package: chroma-1.1.1.tar.gz Github Container Registry Image: :1.1.1 DockerHub Image: :1.1.1

What's Changed

Full Changelog: chroma-core/chroma@1.1.0...1.1.1

cli-1.1.11

CLI release.

cli-1.1.10

... (truncated)

Commits

Updates sentence-transformers to 5.1.1

Release notes

Sourced from sentence-transformers's releases.

v5.1.1 - Explicit incorrect arguments, fixes for multi-GPU, evaluator, and hard negative

This patch makes Sentence Transformers more explicit with incorrect arguments and introduces some fixes for multi-GPU processing, evaluators, and hard negatives mining.

Install this version with

# Training + Inference
pip install sentence-transformers[train]==5.1.1
Inference only, use one of:
pip install sentence-transformers==5.1.1
pip install sentence-transformers[onnx-gpu]==5.1.1
pip install sentence-transformers[onnx]==5.1.1
pip install sentence-transformers[openvino]==5.1.1

Error if unused kwargs is passed & get_model_kwargs (#3500)

Some SentenceTransformer or SparseEncoder models support custom model-specific keyword arguments, such as jinaai/jina-embeddings-v4. As of this release, calling model.encode with keyword arguments that aren't used by the model will result in an error.

>>> from sentence_transformers import SentenceTransformer
>>> model = SentenceTransformer("all-MiniLM-L6-v2")
>>> model.encode("Who is Amelia Earhart?", normalize=True)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
  File "[sic]/torch/utils/_contextlib.py", line 116, in decorate_context
    return func(*args, **kwargs)
           ^^^^^^^^^^^^^^^^^^^^^
  File "[sic]/SentenceTransformer.py", line 983, in encode
    raise ValueError(
ValueError: SentenceTransformer.encode() has been called with additional keyword arguments that this model does not use: ['normalize']. As per SentenceTransformer.get_model_kwargs(), this model does not accept any additional keyword arguments.

Quite useful when you, for example, accidentally forget that the parameter to get normalized embeddings is normalize_embeddings. Prior to this version, this parameter would simply quietly be ignored.

To check which custom extra keyword arguments may be used for your model, you can call the new get_model_kwargs method:

>>> from sentence_transformers import SentenceTransformer, SparseEncoder
>>> SentenceTransformer("all-MiniLM-L6-v2").get_model_kwargs()
[]
>>> SentenceTransformer("jinaai/jina-embeddings-v4", trust_remote_code=True).get_model_kwargs()
['task', 'truncate_dim']
>>> SparseEncoder("opensearch-project/opensearch-neural-sparse-encoding-doc-v3-distill").get_model_kwargs()
['task']

Note: You can always pass the task parameter, it's the only model-specific parameter that will be quietly ignored. This means that you can always use model.encode(..., task="query") and model.encode(..., task="document").

Minor Features

... (truncated)

Commits
  • 22ff509 Release v5.1.1
  • 5ad8a44 Merge branch 'master' into v5.1-release
  • 1def8d3 Fix the number of missing negatives in mine_hard_negatives (#3504)
  • 2e077fb fix: add makedirs to informationretrievalevaluator (#3516)
  • 20c4820 Fix:Import SentenceTransformer class explicitly in losses module (#3521)
  • 7240b33 [feat] add get_model_kwargs method; throw error if unused kwarg is passed (...
  • 560cc33 always pass input_ids, attention_mask, token_type_ids, inputs_embeds ...
  • bd91098 Update rasyosef/splade-mini MSMARCO and BEIR-13 benchmark scores in pretraine...
  • ad8d27d Add Support for Knowledgeable Passage Retriever (KPR) (#3495)
  • 5b18f36 [feat] Use encode_document and encode_query in mine_hard_negatives (#3502)
  • Additional commits viewable in compare view

Updates graphrag-sdk from 0.8.0 to 0.8.1

Release notes

Sourced from graphrag-sdk's releases.

v0.8.1

What's Changed

New Contributors

Full Changelog: FalkorDB/GraphRAG-SDK@v0.8.0...v0.8.1

Commits
  • bee24ab Merge pull request #131 from Tesla2000/main
  • 9421b84 Fixed typo in prompts
  • bb0c54a Merge pull request #130 from gsw945/gsw945-patch-2
  • c72afa9 Remove the 'AttributeType.' prefix to avoid 'Invalid attribute type' error.
  • 9c30c23 Merge pull request #129 from FalkorDB/olllama-usage
  • 8600b06 update-lock-file
  • 20cc910 Merge branch 'main' into olllama-usage
  • 7b03304 update-ollama-usage
  • 13fc340 Merge pull request #128 from gsw945/patch-1
  • 06ff2cd Merge branch 'main' into patch-1
  • Additional commits viewable in compare view

Updates llama-index to 0.14.5

Release notes

Sourced from llama-index's releases.

v0.14.5

Release Notes

[2025-10-15]

llama-index-core [0.14.5]

  • Remove debug print (#20000)
  • safely initialize RefDocInfo in Docstore (#20031)
  • Add progress bar for multiprocess loading (#20048)
  • Fix duplicate node positions when identical text appears multiple times in document (#20050)
  • chore: tool call block - part 1 (#20074)

llama-index-instrumentation [0.4.2]

  • update instrumentation package metadata (#20079)

llama-index-llms-anthropic [0.9.5]

  • ✨ feat(anthropic): add prompt caching model validation utilities (#20069)
  • fix streaming thinking/tool calling with anthropic (#20077)
  • Add haiku 4.5 support (#20092)

llama-index-llms-baseten [0.1.6]

  • Baseten provider Kimi K2 0711, Llama 4 Maverick and Llama 4 Scout Model APIs deprecation (#20042)

llama-index-llms-bedrock-converse [0.10.5]

  • feat: List Claude Sonnet 4.5 as a reasoning model (#20022)
  • feat: Support global cross-region inference profile prefix (#20064)
  • Update utils.py for opus 4.1 (#20076)
  • 4.1 opus bedrockconverse missing in funcitoncalling models (#20084)
  • Add haiku 4.5 support (#20092)

llama-index-llms-fireworks [0.4.4]

  • Add Support for Custom Models in Fireworks LLM (#20023)
  • fix(llms/fireworks): Cannot use Fireworks Deepseek V3.1-20006 issue (#20028)

llama-index-llms-oci-genai [0.6.3]

  • Add support for xAI models in OCI GenAI (#20089)

llama-index-llms-openai [0.6.4]

  • Gpt 5 pro addition (#20029)
  • fix collecting final response with openai responses streaming (#20037)
  • Add support for GPT-5 models in utils.py (JSON_SCHEMA_MODELS) (#20045)
  • chore: tool call block - part 1 (#20074)

... (truncated)

Changelog

Sourced from llama-index's changelog.

llama-index-core [0.14.5]

  • Remove debug print (#20000)
  • safely initialize RefDocInfo in Docstore (#20031)
  • Add progress bar for multiprocess loading (#20048)
  • Fix duplicate node positions when identical text appears multiple times in document (#20050)
  • chore: tool call block - part 1 (#20074)

llama-index-instrumentation [0.4.2]

  • update instrumentation package metadata (#20079)

llama-index-llms-anthropic [0.9.5]

  • ✨ feat(anthropic): add prompt caching model validation utilities (#20069)
  • fix streaming thinking/tool calling with anthropic (#20077)
  • Add haiku 4.5 support (#20092)

llama-index-llms-baseten [0.1.6]

  • Baseten provider Kimi K2 0711, Llama 4 Maverick and Llama 4 Scout Model APIs deprecation (#20042)

llama-index-llms-bedrock-converse [0.10.5]

  • feat: List Claude Sonnet 4.5 as a reasoning model (#20022)
  • feat: Support global cross-region inference profile prefix (#20064)
  • Update utils.py for opus 4.1 (#20076)
  • 4.1 opus bedrockconverse missing in funcitoncalling models (#20084)
  • Add haiku 4.5 support (#20092)

llama-index-llms-fireworks [0.4.4]

  • Add Support for Custom Models in Fireworks LLM (#20023)
  • fix(llms/fireworks): Cannot use Fireworks Deepseek V3.1-20006 issue (#20028)

llama-index-llms-oci-genai [0.6.3]

  • Add support for xAI models in OCI GenAI (#20089)

llama-index-llms-openai [0.6.4]

  • Gpt 5 pro addition (#20029)
  • fix collecting final response with openai responses streaming (#20037)
  • Add support for GPT-5 models in utils.py (JSON_SCHEMA_MODELS) (#20045)
  • chore: tool call block - part 1 (#20074)

llama-index-llms-sglang [0.1.0]

  • Added Sglang llm integration (#20020)

... (truncated)

Commits

Updates llama-index-core to 0.14.5

Release notes

Sourced from llama-index-core's releases.

v0.14.5

Release Notes

[2025-10-15]

llama-index-core [0.14.5]

  • Remove debug print (#20000)
  • safely initialize RefDocInfo in Docstore (#20031)
  • Add progress bar for multiprocess loading (#20048)
  • Fix duplicate node positions when identical text appears multiple times in document (#20050)
  • chore: tool call block - part 1 (#20074)

llama-index-instrumentation [0.4.2]

  • update instrumentation package metadata (#20079)

llama-index-llms-anthropic [0.9.5]

  • ✨ feat(anthropic): add prompt caching model validation utilities (#20069)
  • fix streaming thinking/tool calling with anthropic (#20077)
  • Add haiku 4.5 support (#20092)

llama-index-llms-baseten [0.1.6]

  • Baseten provider Kimi K2 0711, Llama 4 Maverick and Llama 4 Scout Model APIs deprecation (#20042)

llama-index-llms-bedrock-converse [0.10.5]

  • feat: List Claude Sonnet 4.5 as a reasoning model (#20022)
  • feat: Support global cross-region inference profile prefix (#20064)
  • Update utils.py for opus 4.1 (#20076)
  • 4.1 opus bedrockconverse missing in funcitoncalling models (#20084)
  • Add haiku 4.5 support (#20092)

llama-index-llms-fireworks [0.4.4]

  • Add Support for Custom Models in Fireworks LLM (#20023)
  • fix(llms/fireworks): Cannot use Fireworks Deepseek V3.1-20006 issue (#20028)

llama-index-llms-oci-genai [0.6.3]

  • Add support for xAI models in OCI GenAI (#20089)

llama-index-llms-openai [0.6.4]

  • Gpt 5 pro addition (#20029)
  • fix collecting final response with openai responses streaming (#20037)
  • Add support for GPT-5 models in utils.py (JSON_SCHEMA_MODELS) (#20045)
  • chore: tool call block - part 1 (#20074)

... (truncated)

Changelog

Sourced from llama-index-core's changelog.

llama-index-core [0.14.5]

  • Remove debug print (#20000)
  • safely initialize RefDocInfo in Docstore (#20031)
  • Add progress bar for multiprocess loading (#20048)
  • Fix duplicate node positions when identical text appears multiple times in document (#20050)
  • chore: tool call block - part 1 (#20074)

llama-index-instrumentation [0.4.2]

  • update instrumentation package metadata (#20079)

llama-index-llms-anthropic [0.9.5]

  • ✨ feat(anthropic): add prompt caching model validation utilities (#20069)
  • fix streaming thinking/tool calling with anthropic (#20077)
  • Add haiku 4.5 support (#20092)

llama-index-llms-baseten [0.1.6]

  • Baseten provider Kimi K2 0711, Llama 4 Maverick and Llama 4 Scout Model APIs deprecation (#20042)

llama-index-llms-bedrock-converse [0.10.5]

  • feat: List Claude Sonnet 4.5 as a reasoning model (#20022)
  • feat: Support global cross-region inference profile prefix (#20064)
  • Update utils.py for opus 4.1 (#20076)
  • 4.1 opus bedrockconverse missing in funcitoncalling models (#20084)
  • Add haiku 4.5 support (#20092)

llama-index-llms-fireworks [0.4.4]

  • Add Support for Custom Models in Fireworks LLM (#20023)
  • fix(llms/fireworks): Cannot use Fireworks Deepseek V3.1-20006 issue (#20028)

llama-index-llms-oci-genai [0.6.3]

  • Add support for xAI models in OCI GenAI (#20089)

llama-index-llms-openai [0.6.4]

  • Gpt 5 pro addition (#20029)
  • fix collecting final response with openai responses streaming (#20037)
  • Add support for GPT-5 models in utils.py (JSON_SCHEMA_MODELS) (#20045)
  • chore: tool call block - part 1 (#20074)

llama-index-llms-sglang [0.1.0]

  • Added Sglang llm integration (#20020)

... (truncated)

Commits

Updates llama-index-llms-openai to 0.6.5

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 litellm to 1.78.5

Commits

Updates pydantic-ai from 1.0.1 to 1.1.0

Release notes

Sourced from pydantic-ai's releases.

v1.1.0 (2025-10-15)

Features in v1.1.0

Selected Features since v1.0.0

Other Changes in v1.1.0

Updates the requirements on [ipykernel](https://github.com/ipython/ipykernel), [protobuf](https://github.com/protocolbuffers/protobuf), [chromadb](https://github.com/chroma-core/chroma), [sentence-transformers](https://github.com/UKPLab/sentence-transformers), [graphrag-sdk](https://github.com/FalkorDB/GraphRAG-SDK), [llama-index](https://github.com/run-llama/llama_index), [llama-index-core](https://github.com/run-llama/llama_index), llama-index-llms-openai, [fastapi](https://github.com/fastapi/fastapi), [litellm](https://github.com/BerriAI/litellm), [pydantic-ai](https://github.com/pydantic/pydantic-ai), [pytest-cov](https://github.com/pytest-dev/pytest-cov), [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio), [pandas](https://github.com/pandas-dev/pandas), [dirty-equals](https://github.com/samuelcolvin/dirty-equals), [mkdocs-material](https://github.com/squidfunk/mkdocs-material), [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings), [typer](https://github.com/fastapi/typer), [mkdocs-macros-plugin](https://github.com/fralau/mkdocs_macros_plugin), [pyyaml](https://github.com/yaml/pyyaml), [mypy](https://github.com/python/mypy), [ruff](https://github.com/astral-sh/ruff) and [uv](https://github.com/astral-sh/uv) to permit the latest version.

Updates `ipykernel` from 6.30.1 to 7.0.1
- [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.1)

Updates `protobuf` from 6.32.0 to 6.33.0
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Changelog](https://github.com/protocolbuffers/protobuf/blob/main/protobuf_release.bzl)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `chromadb` from 1.0.20 to 1.2.0
- [Release notes](https://github.com/chroma-core/chroma/releases)
- [Changelog](https://github.com/chroma-core/chroma/blob/main/RELEASE_PROCESS.md)
- [Commits](chroma-core/chroma@1.0.20...1.2.0)

Updates `sentence-transformers` to 5.1.1
- [Release notes](https://github.com/UKPLab/sentence-transformers/releases)
- [Commits](huggingface/sentence-transformers@v0.1.0...v5.1.1)

Updates `graphrag-sdk` from 0.8.0 to 0.8.1
- [Release notes](https://github.com/FalkorDB/GraphRAG-SDK/releases)
- [Commits](FalkorDB/GraphRAG-SDK@v0.8.0...v0.8.1)

Updates `llama-index` to 0.14.5
- [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.12.0...v0.14.5)

Updates `llama-index-core` to 0.14.5
- [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.12.0...v0.14.5)

Updates `llama-index-llms-openai` to 0.6.5

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 `litellm` to 1.78.5
- [Release notes](https://github.com/BerriAI/litellm/releases)
- [Commits](https://github.com/BerriAI/litellm/commits)

Updates `pydantic-ai` from 1.0.1 to 1.1.0
- [Release notes](https://github.com/pydantic/pydantic-ai/releases)
- [Changelog](https://github.com/pydantic/pydantic-ai/blob/main/docs/changelog.md)
- [Commits](pydantic/pydantic-ai@v1.0.1...v1.1.0)

Updates `pytest-cov` from 6.3.0 to 7.0.0
- [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst)
- [Commits](pytest-dev/pytest-cov@v6.3.0...v7.0.0)

Updates `pytest-asyncio` from 1.1.0 to 1.2.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v1.1.0...v1.2.0)

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

Updates `dirty-equals` from 0.9.0 to 0.10.0
- [Release notes](https://github.com/samuelcolvin/dirty-equals/releases)
- [Commits](samuelcolvin/dirty-equals@v0.9.0...v0.10.0)

Updates `mkdocs-material` from 9.6.19 to 9.6.22
- [Release notes](https://github.com/squidfunk/mkdocs-material/releases)
- [Changelog](https://github.com/squidfunk/mkdocs-material/blob/master/CHANGELOG)
- [Commits](squidfunk/mkdocs-material@9.6.19...9.6.22)

Updates `mkdocstrings[python]` from 0.30.0 to 0.30.1
- [Release notes](https://github.com/mkdocstrings/mkdocstrings/releases)
- [Changelog](https://github.com/mkdocstrings/mkdocstrings/blob/main/CHANGELOG.md)
- [Commits](mkdocstrings/mkdocstrings@0.30.0...0.30.1)

Updates `typer` from 0.17.4 to 0.19.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.17.4...0.19.2)

Updates `mkdocs-macros-plugin` from 1.3.9 to 1.4.0
- [Release notes](https://github.com/fralau/mkdocs_macros_plugin/releases)
- [Changelog](https://github.com/fralau/mkdocs-macros-plugin/blob/master/CHANGELOG.md)
- [Commits](fralau/mkdocs-macros-plugin@v1.3.9...v1.4.0)

Updates `pyyaml` from 6.0.2 to 6.0.3
- [Release notes](https://github.com/yaml/pyyaml/releases)
- [Changelog](https://github.com/yaml/pyyaml/blob/6.0.3/CHANGES)
- [Commits](yaml/pyyaml@6.0.2...6.0.3)

Updates `mypy` from 1.17.1 to 1.18.2
- [Changelog](https://github.com/python/mypy/blob/master/CHANGELOG.md)
- [Commits](python/mypy@v1.17.1...v1.18.2)

Updates `ruff` from 0.12.12 to 0.14.1
- [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.12.12...0.14.1)

Updates `uv` from 0.8.15 to 0.9.4
- [Release notes](https://github.com/astral-sh/uv/releases)
- [Changelog](https://github.com/astral-sh/uv/blob/main/CHANGELOG.md)
- [Commits](astral-sh/uv@0.8.15...0.9.4)

---
updated-dependencies:
- dependency-name: ipykernel
  dependency-version: 7.0.1
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: protobuf
  dependency-version: 6.33.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: chromadb
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: sentence-transformers
  dependency-version: 5.1.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: graphrag-sdk
  dependency-version: 0.8.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: llama-index
  dependency-version: 0.14.5
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: llama-index-core
  dependency-version: 0.14.5
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: llama-index-llms-openai
  dependency-version: 0.6.5
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: fastapi
  dependency-version: 0.119.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: litellm
  dependency-version: 1.78.5
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pydantic-ai
  dependency-version: 1.1.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pytest-cov
  dependency-version: 7.0.0
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: pytest-asyncio
  dependency-version: 1.2.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pandas
  dependency-version: 2.3.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: dirty-equals
  dependency-version: 0.10.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-material
  dependency-version: 9.6.22
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: mkdocstrings[python]
  dependency-version: 0.30.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: typer
  dependency-version: 0.19.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-macros-plugin
  dependency-version: 1.4.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pyyaml
  dependency-version: 6.0.3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: mypy
  dependency-version: 1.18.2
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: ruff
  dependency-version: 0.14.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: uv
  dependency-version: 0.9.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 20, 2025
@joggrbot

This comment has been minimized.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 21, 2025

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

@dependabot dependabot bot closed this Oct 21, 2025
@dependabot dependabot bot deleted the dependabot/pip/pip-bb41477be7 branch October 21, 2025 20:51
@codecov
Copy link

codecov bot commented Oct 21, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
see 42 files with indirect coverage changes

🚀 New features to boost your workflow:
  • ❄️ Test Analytics: Detect flaky tests, report on failures, and find test suite problems.
  • 📦 JS Bundle Analysis: Save yourself from yourself by tracking and limiting bundle sizes in JS merges.

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 Pull requests that update Python code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant