Skip to content

Conversation

@dependabot
Copy link
Contributor

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

Updates the requirements on 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 protobuf from 6.32.0 to 6.32.1

Commits

Updates chromadb from 1.0.20 to 1.1.1

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

1.1.0

Version: 1.1.0 Git ref: refs/tags/1.1.0 Build Date: 2025-09-16T21:23

... (truncated)

Commits
  • 34dc0eb [RELEASE] Python 1.1.1, CLI 1.1.11, JS 3.0.17 (#5541)
  • ecfe811 Revert "Revert "[CHORE] CI failed with INTERNALERROR"" (#5542)
  • f42f89a [ENH] Add headless login to the CLI (#5538)
  • d0cb6df [ENH] Make it so the rust log service can start without a dirty log. (#5537)
  • 53dc52b Revert "[CHORE] CI failed with INTERNALERROR" (#5535)
  • 5e6d6d0 [ENH] Support a read-only mode for the rust log service. (#5534)
  • 8354492 [CHORE] Do not trace errors stemming from NotFound sparse indexes (#5531)
  • 4bfd53c [BLD] Add a concurrency group to our PR checks workflow (#5054)
  • f2fadf0 [ENH]: Schema types (#5509)
  • 0460b9b [CLN] Remove unused, under-tested object store backend for storage. (#5530)
  • Additional commits viewable in compare view

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

Release notes

Sourced from llama-index's releases.

v0.14.4

Release Notes

[2025-09-24]

llama-index-core [0.14.4]

  • fix pre-release installs (#20010)

llama-index-embeddings-anyscale [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-baseten [0.1.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-fireworks [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-opea [0.2.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-text-embeddings-inference [0.4.2]

  • Fix authorization header setup logic in text embeddings inference (#19979)

llama-index-llms-anthropic [0.9.3]

  • feat: add anthropic sonnet 4.5 (#19977)

llama-index-llms-anyscale [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-llms-azure-openai [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-llms-baseten [0.1.5]

  • fix llm deps for openai (#19944)

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

  • feat: Additional support for Claude Sonnet 4.5 (#19980)

llama-index-llms-deepinfra [0.5.2]

... (truncated)

Changelog

Sourced from llama-index's changelog.

llama-index-core [0.14.4]

  • fix pre-release installs (#20010)

llama-index-embeddings-anyscale [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-baseten [0.1.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-fireworks [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-opea [0.2.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-text-embeddings-inference [0.4.2]

  • Fix authorization header setup logic in text embeddings inference (#19979)

llama-index-llms-anthropic [0.9.3]

  • feat: add anthropic sonnet 4.5 (#19977)

llama-index-llms-anyscale [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-llms-azure-openai [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-llms-baseten [0.1.5]

  • fix llm deps for openai (#19944)

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

  • feat: Additional support for Claude Sonnet 4.5 (#19980)

llama-index-llms-deepinfra [0.5.2]

  • fix llm deps for openai (#19944)

llama-index-llms-everlyai [0.4.2]

... (truncated)

Commits

Updates llama-index-core to 0.14.4

Release notes

Sourced from llama-index-core's releases.

v0.14.4

Release Notes

[2025-09-24]

llama-index-core [0.14.4]

  • fix pre-release installs (#20010)

llama-index-embeddings-anyscale [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-baseten [0.1.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-fireworks [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-opea [0.2.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-text-embeddings-inference [0.4.2]

  • Fix authorization header setup logic in text embeddings inference (#19979)

llama-index-llms-anthropic [0.9.3]

  • feat: add anthropic sonnet 4.5 (#19977)

llama-index-llms-anyscale [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-llms-azure-openai [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-llms-baseten [0.1.5]

  • fix llm deps for openai (#19944)

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

  • feat: Additional support for Claude Sonnet 4.5 (#19980)

llama-index-llms-deepinfra [0.5.2]

... (truncated)

Changelog

Sourced from llama-index-core's changelog.

llama-index-core [0.14.4]

  • fix pre-release installs (#20010)

llama-index-embeddings-anyscale [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-baseten [0.1.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-fireworks [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-opea [0.2.2]

  • fix llm deps for openai (#19944)

llama-index-embeddings-text-embeddings-inference [0.4.2]

  • Fix authorization header setup logic in text embeddings inference (#19979)

llama-index-llms-anthropic [0.9.3]

  • feat: add anthropic sonnet 4.5 (#19977)

llama-index-llms-anyscale [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-llms-azure-openai [0.4.2]

  • fix llm deps for openai (#19944)

llama-index-llms-baseten [0.1.5]

  • fix llm deps for openai (#19944)

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

  • feat: Additional support for Claude Sonnet 4.5 (#19980)

llama-index-llms-deepinfra [0.5.2]

  • fix llm deps for openai (#19944)

llama-index-llms-everlyai [0.4.2]

... (truncated)

Commits

Updates llama-index-llms-openai to 0.6.1

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

Commits

Updates pydantic-ai from 1.0.1 to 1.0.15

Release notes

Sourced from pydantic-ai's releases.

v1.0.15 (2025-10-03)

What's Changed

Full Changelog: pydantic/pydantic-ai@v1.0.14...v1.0.15

v1.0.14 (2025-10-02)

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-ai@v1.0.13...v1.0.14

v1.0.13 (2025-10-01)

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-ai@v1.0.12...v1.0.13

v1.0.12 (2025-09-30)

What's Changed

... (truncated)

Changelog

Sourced from pydantic-ai's changelog.

Upgrade Guide

In September 2025, Pydantic AI reached V1, which means we're committed to API stability: we will not introduce changes that break your code until V2 (if we do, you can shout at us as it's definitely a mistake). Once we release V2, in April 2026 at the earliest, we'll continue to provide security fixes for V1 for another 6 months minimum, so you have time to upgrade your applications.

Breaking Changes

Here's a filtered list of the breaking changes for each version to help you upgrade Pydantic AI.

Commits
  • 3a041f1 Add Agent.run_stream_events() convenience method wrapping `run(event_stream...
  • a04d25f Add content (e.g. files) returned by tool to FunctionToolResultEvent (#3082)
  • 2e4032e Set MCPServer id and tool_prefix in load_mcp_servers (#3052)
  • 3b8ff2c Fix parallel tool call limit enforcement (#2978)
  • 3db21d4 Support image generation and output with Google and OpenAI (#2970)
  • 322e092 Fix dataset serialization when inputs have discriminators with defaults (#3079)
  • 5406124 add latest gemini 2.5 flash(-lite) model names and aliases (#3060)
  • 4c7c844 Support enums in format_as_xml (#3064)
  • 4e60e9d Fix duplicate output tool return part when concatenating first run messages w...
  • 5e596f1 Remove leftover debug print statement (#3070)
  • Additional commits viewable in compare view

Updates pytest-cov from 6.3.0 to 7.0.0

Changelog

Sourced from pytest-cov's changelog.

7.0.0 (2025-09-09)

  • Dropped support for subprocesses measurement.

    It was a feature added long time ago when coverage lacked a nice way to measure subprocesses created in tests. It relied on a .pth file, there was no way to opt-out and it created bad interations with coverage's new patch system <https://coverage.readthedocs.io/en/latest/config.html#run-patch>_ added in 7.10 <https://coverage.readthedocs.io/en/7.10.6/changes.html#version-7-10-0-2025-07-24>_.

    To migrate to this release you might need to enable the suprocess patch, example for .coveragerc:

    .. code-block:: ini

    [run] patch = subprocess

    This release also requires at least coverage 7.10.6.

  • Switched packaging to have metadata completely in pyproject.toml and use hatchling <https://pypi.org/project/hatchling/>_ for building. Contributed by Ofek Lev in [#551](https://github.com/pytest-dev/pytest-cov/issues/551) <https://github.com/pytest-dev/pytest-cov/pull/551>_ with some extras in [#716](https://github.com/pytest-dev/pytest-cov/issues/716) <https://github.com/pytest-dev/pytest-cov/pull/716>_.

  • Removed some not really necessary testing deps like six.

Commits
  • 224d896 Bump version: 6.3.0 → 7.0.0
  • 73424e3 Cleanup the docs a bit.
  • 36f1cc2 Bump pins in template.
  • f299c59 Bump the github-actions group with 2 updates
  • 25f0b2e Update docs/config.rst
  • bb23eac Improve configuration docs
  • a19531e Switch from build/pre-commit to uv/prek - this should make this faster.
  • 82f9993 Update changelog.
  • 211b5cd Fix links.
  • 97aadd7 Update some ci config, reformat and apply some lint fixes.
  • Additional commits viewable in compare view

Updates pytest-asyncio from 1.1.0 to 1.2.0

Release notes

Sourced from pytest-asyncio's releases.

pytest-asyncio 1.2.0

1.2.0 - 2025-09-12

Added

  • --asyncio-debug CLI option and asyncio_debug configuration option to enable asyncio debug mode for the default event loop. (#980)
  • A pytest.UsageError for invalid configuration values of asyncio_default_fixture_loop_scope and asyncio_default_test_loop_scope. (#1189)
  • Compatibility with the Pyright type checker (#731)

Fixed

  • RuntimeError: There is no current event loop in thread 'MainThread' when any test unsets the event loop (such as when using asyncio.run and asyncio.Runner). (#1177)
  • Deprecation warning when decorating an asynchronous fixture with @pytest.fixture in [strict]{.title-ref} mode. The warning message now refers to the correct package. (#1198)

Notes for Downstream Packagers

  • Bump the minimum required version of tox to v4.28. This change is only relevant if you use the tox.ini file provided by pytest-asyncio to run tests.
  • Extend dependency on typing-extensions>=4.12 from Python<3.10 to Python<3.13.

pytest-asyncio 1.1.1

v1.1.1 - 2025-09-12

Notes for Downstream Packagers

- Addresses a build problem with setuptoos-scm >= 9 caused by invalid setuptools-scm configuration in pytest-asyncio. (#1192)

Commits
  • 0d3988f ci: Create GitHub release before publishing to PyPI.
  • 07c5a0b docs: Include orphaned news fragment in changelog.
  • be24582 chore: Prepare release of ...

    Description has been truncated

Updates the requirements on [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 `protobuf` from 6.32.0 to 6.32.1
- [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.1.1
- [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.1.1)

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

Updates `llama-index-core` to 0.14.4
- [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.4)

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

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

Updates `pydantic-ai` from 1.0.1 to 1.0.15
- [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.0.15)

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

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

Updates `uv` from 0.8.15 to 0.8.23
- [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.8.23)

---
updated-dependencies:
- dependency-name: protobuf
  dependency-version: 6.32.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: chromadb
  dependency-version: 1.1.1
  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.4
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: llama-index-core
  dependency-version: 0.14.4
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: llama-index-llms-openai
  dependency-version: 0.6.1
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: fastapi
  dependency-version: 0.118.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: litellm
  dependency-version: 1.77.7
  dependency-type: direct:production
  dependency-group: pip
- dependency-name: pydantic-ai
  dependency-version: 1.0.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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.21
  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.13.3
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: uv
  dependency-version: 0.8.23
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: pip
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Oct 6, 2025
@joggrbot

This comment has been minimized.

@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 20, 2025

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

@dependabot dependabot bot closed this Oct 20, 2025
@dependabot dependabot bot deleted the dependabot/pip/pip-8a86428ef0 branch October 20, 2025 00:25
@codecov
Copy link

codecov bot commented Oct 20, 2025

Codecov Report

✅ All modified and coverable lines are covered by tests.
see 41 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.

0 participants