Skip to content

Conversation

@dependabot
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jan 5, 2026

Updates the requirements on ipykernel, protobuf, chromadb, sentence-transformers, graphrag-sdk, llama-index, llama-index-core, llama-index-vector-stores-mongodb, llama-index-llms-openai, google-auth-httplib2, fastapi, litellm, pandas, pytest, pytest-cov, pytest-asyncio, dirty-equals, mkdocs-material, mkdocstrings[python], mkdocs-git-revision-date-localized-plugin, typer, mkdocs-macros-plugin, mkdocs-glightbox, pyyaml, termcolor, nbclient, mypy, ruff, pre-commit and uv to permit the latest version.
Updates ipykernel from 6.30.1 to 7.1.0

Release notes

Sourced from ipykernel's releases.

v7.1.0

7.1.0

IPykernel 7.1.0 fixes an issue where display outputs such as Matplotlib plots were not included when using %notebook magic to save sessions as .ipynb files (#1435). This is enabled using the traitlet ZMQDisplayPublisher.store_display_history which defaults to the previous behaviour of False. This is a minor release rather than a patch release due to the addition of the new traitlet.

Output from threads is restored to the pre-6.29 behavior by default (route to latest cell, unless get_ipython().set_parent() is called explicitly from the thread. If it is called, output from that thread will continue to be routed to the same cell). This behavior is now opt-in, instead of unconditional (#1451).

This release also fixes bugs that were introduced into the 7.x branch relating to Matplotlib plots in separate windows not being displayed correctly (#1458), kernels launched in new threads failing asserts (#1455), and ContextVars persisting between cells (#1462). There is also a fix for keyboard interrupts on Windows (#1434).

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​Carreau | @​Darshan808 | @​dfalbel | @​ianthomas23 | @​krassowski | @​lumberbot-app | @​minrk | @​ptosco

v7.0.1

7.0.1

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

(Full Changelog)

Bugs fixed

... (truncated)

Changelog

Sourced from ipykernel's changelog.

7.1.0

IPykernel 7.1.0 fixes an issue where display outputs such as Matplotlib plots were not included when using %notebook magic to save sessions as .ipynb files (#1435). This is enabled using the traitlet ZMQDisplayPublisher.store_display_history which defaults to the previous behaviour of False. This is a minor release rather than a patch release due to the addition of the new traitlet.

Output from threads is restored to the pre-6.29 behavior by default (route to latest cell, unless get_ipython().set_parent() is called explicitly from the thread. If it is called, output from that thread will continue to be routed to the same cell). This behavior is now opt-in, instead of unconditional (#1451).

This release also fixes bugs that were introduced into the 7.x branch relating to Matplotlib plots in separate windows not being displayed correctly (#1458), kernels launched in new threads failing asserts (#1455), and ContextVars persisting between cells (#1462). There is also a fix for keyboard interrupts on Windows (#1434).

(Full Changelog)

Enhancements made

Bugs fixed

Maintenance and upkeep improvements

Contributors to this release

(GitHub contributors page for this release)

@​Carreau | @​Darshan808 | @​dfalbel | @​ianthomas23 | @​krassowski | @​lumberbot-app | @​minrk | @​ptosco

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

... (truncated)

Commits
  • 39eaf96 Publish 7.1.0
  • 6f61a68 test that matplotlib event loop integration is responsive (#1463)
  • 8446e02 Fix KeyboardInterrupt on Windows by manually resetting interrupt event (#1434)
  • dd1e094 update pre-commit and related (#1465)
  • 95f2451 fix ContextVar persistence across cells (#1462)
  • c56a7aa Fix matplotlib eventloops (#1458)
  • c7af34c Refer to kernel laucnhing thread instead of assuming the main thread (#1455)
  • 7193d14 Fix routing of background thread output when no parent is set explicitly (#1451)
  • b8f5dfc Store display outputs in history for %notebook magic (#1435)
  • 93f11db update tests for 3.14 (#1453)
  • Additional commits viewable in compare view

Updates protobuf from 6.32.0 to 6.33.2

Commits

Updates chromadb to 1.4.0

Release notes

Sourced from chromadb's releases.

1.4.0

Version: 1.4.0 Git ref: refs/tags/1.4.0 Build Date: 2025-12-24T02:59 PIP Package: chroma-1.4.0.tar.gz Github Container Registry Image: :1.4.0 DockerHub Image: :1.4.0

What's Changed

... (truncated)

Commits
  • 29f33c4 [RELEASE] Python 1.4.0, JS 3.2.0 (#6080)
  • 2c66a9c [ENH] Add service account for rust-sysdb-migration job (#6082)
  • ebb68ce [ENH] Modify helm chart to make log and rust-sysdb volumes customizable (#6081)
  • 341d07f [DOC] Group by (#6076)
  • de44e68 [ENH] Group by support in python and js client (#6050)
  • 1e9da06 [CHORE]: Rework feature flag for rust-sysdb-migration template (#6078)
  • 617d9f7 [ENH] CMEK support in Python and JS client (#5991)
  • 8e626e1 [ENH]: Sysdb client routes database operations suitably based on prefix (#6075)
  • 5a26720 [ENH]: Feature flag rust-sysdb-migration service (#6074)
  • 8cb8605 [ENH]: Checksum manifest for spanner migrations (#6071)
  • Additional commits viewable in compare view

Updates sentence-transformers to 5.2.0

Release notes

Sourced from sentence-transformers's releases.

v5.2.0 - CrossEncoder multi-processing, multilingual NanoBEIR evaluators, similarity score in mine_hard_negatives, Transformers v5 support

This minor release introduces multi-processing for CrossEncoder (rerankers), multilingual NanoBEIR evaluators, similarity score outputs in mine_hard_negatives, Transformers v5 support, Python 3.9 deprecations, and more.

Install this version with

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

CrossEncoder Multi-processing

The CrossEncoder class now supports multiprocessing for faster inference on CPU and multi-GPU setups. This brings CrossEncoder functionality in line with the existing multiprocessing capabilities of SentenceTransformer models, allowing you to use multiple CPU cores or GPUs to speed up both the predict and rank methods when processing large batches of sentence pairs.

The implementation introduces these new methods, mirroring the SentenceTransformer approach:

  • start_multi_process_pool() - Initialize a pool of worker processes
  • stop_multi_process_pool() - Clean up the worker pool

Usage is straightforward with the new pool parameter:

from sentence_transformers.cross_encoder import CrossEncoder
def main():
model = CrossEncoder('cross-encoder/ms-marco-MiniLM-L6-v2')
# Start a pool of workers
pool = model.start_multi_process_pool()
Use the pool for faster inference
scores = model.predict(sentence_pairs, pool=pool)
rankings = model.rank(query, documents, pool=pool)
Clean up when done
model.stop_multi_process_pool(pool)

if name == "main":
main()

Or simply pass a list of devices to device to have predict and rank automatically create a pool behind the scenes.

from sentence_transformers.cross_encoder import CrossEncoder
</tr></table>

... (truncated)

Commits
  • d4d70de Release v5.2.0
  • b16248c docs: add release notes summary for v5.2 on main page (#3592)
  • 2571f24 docs: update NanoBEIR collection links and descriptions for evaluators (#3591)
  • 32cb5de Mine hard negatives: optionally output similarity scores (#3506)
  • 9f9ad08 Extend NanoBEIR evaluators to support custom NanoBEIR datasets (#3583)
  • 21dfa69 feat/deps: make Pillow an optional dependency (#3589)
  • 67ff0fe Skip test_train_stsb tests; triggers rate limit too often (#3590)
  • 4cb5cdc [deps] Use optimum-onnx now that both optimum-onnx and optimum-intel can us...
  • 3f80d1c [feat] add multiprocessing support for Cross Encoder (#3580)
  • f9724ff [feat] Allow transformers v5.0, add CI for transformers <v5 and >=v5 (#3586)
  • 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.12

Release notes

Sourced from llama-index's releases.

v0.14.12

Release Notes

[2025-12-30]

llama-index-callbacks-agentops [0.4.1]

  • Feat/async tool spec support (#20338)

llama-index-core [0.14.12]

  • Feat/async tool spec support (#20338)
  • Improve MockFunctionCallingLLM (#20356)
  • fix(openai): sanitize generic Pydantic model schema names (#20371)
  • Element node parser (#20399)
  • improve llama dev logging (#20411)
  • test(node_parser): add unit tests for Java CodeSplitter (#20423)
  • fix: crash in log_vector_store_query_result when result.ids is None (#20427)

llama-index-embeddings-litellm [0.4.1]

  • Add docstring to LiteLLM embedding class (#20336)

llama-index-embeddings-ollama [0.8.5]

  • feat(llama-index-embeddings-ollama): Add keep_alive parameter (#20395)
  • docs: improve Ollama embeddings README with comprehensive documentation (#20414)

llama-index-embeddings-voyageai [0.5.2]

  • Voyage multimodal 35 (#20398)

llama-index-graph-stores-nebula [0.5.1]

  • feat(nebula): add MENTIONS edge to property graph store (#20401)

llama-index-llms-aibadgr [0.1.0]

  • feat(llama-index-llms-aibadgr): Add AI Badgr OpenAI‑compatible LLM integration (#20365)

llama-index-llms-anthropic [0.10.4]

  • add back haiku-3 support (#20408)

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

  • fix: bedrock converse thinking block issue (#20355)

llama-index-llms-google-genai [0.8.3]

... (truncated)

Changelog

Sourced from llama-index's changelog.

llama-index-core [0.14.12]

  • Feat/async tool spec support (#20338)
  • Improve MockFunctionCallingLLM (#20356)
  • fix(openai): sanitize generic Pydantic model schema names (#20371)
  • Element node parser (#20399)
  • improve llama dev logging (#20411)
  • test(node_parser): add unit tests for Java CodeSplitter (#20423)
  • fix: crash in log_vector_store_query_result when result.ids is None (#20427)

llama-index-embeddings-litellm [0.4.1]

  • Add docstring to LiteLLM embedding class (#20336)

llama-index-embeddings-ollama [0.8.5]

  • feat(llama-index-embeddings-ollama): Add keep_alive parameter (#20395)
  • docs: improve Ollama embeddings README with comprehensive documentation (#20414)

llama-index-embeddings-voyageai [0.5.2]

  • Voyage multimodal 35 (#20398)

llama-index-graph-stores-nebula [0.5.1]

  • feat(nebula): add MENTIONS edge to property graph store (#20401)

llama-index-llms-aibadgr [0.1.0]

  • feat(llama-index-llms-aibadgr): Add AI Badgr OpenAI‑compatible LLM integration (#20365)

llama-index-llms-anthropic [0.10.4]

  • add back haiku-3 support (#20408)

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

  • fix: bedrock converse thinking block issue (#20355)

llama-index-llms-google-genai [0.8.3]

  • Switch use_file_api to Flexible file_mode; Improve File Upload Handling & Bump google-genai to v1.52.0 (#20347)
  • Fix missing role from Google-GenAI (#20357)
  • Add signature index fix (#20362)
  • Add positional thought signature for thoughts (#20418)

llama-index-llms-ollama [0.9.1]

  • feature: pydantic no longer complains if you pass 'low', 'medium', 'h… (#20394)

... (truncated)

Commits

Updates llama-index-core to 0.14.12

Release notes

Sourced from llama-index-core's releases.

v0.14.12

Release Notes

[2025-12-30]

llama-index-callbacks-agentops [0.4.1]

  • Feat/async tool spec support (#20338)

llama-index-core [0.14.12]

  • Feat/async tool spec support (#20338)
  • Improve MockFunctionCallingLLM (#20356)
  • fix(openai): sanitize generic Pydantic model schema names (#20371)
  • Element node parser (#20399)
  • improve llama dev logging (#20411)
  • test(node_parser): add unit tests for Java CodeSplitter (#20423)
  • fix: crash in log_vector_store_query_result when result.ids is None (#20427)

llama-index-embeddings-litellm [0.4.1]

  • Add docstring to LiteLLM embedding class (#20336)

llama-index-embeddings-ollama [0.8.5]

  • feat(llama-index-embeddings-ollama): Add keep_alive parameter (#20395)
  • docs: improve Ollama embeddings README with comprehensive documentation (#20414)

llama-index-embeddings-voyageai [0.5.2]

  • Voyage multimodal 35 (#20398)

llama-index-graph-stores-nebula [0.5.1]

  • feat(nebula): add MENTIONS edge to property graph store (#20401)

llama-index-llms-aibadgr [0.1.0]

  • feat(llama-index-llms-aibadgr): Add AI Badgr OpenAI‑compatible LLM integration (#20365)

llama-index-llms-anthropic [0.10.4]

  • add back haiku-3 support (#20408)

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

  • fix: bedrock converse thinking block issue (#20355)

llama-index-llms-google-genai [0.8.3]

... (truncated)

Changelog

Sourced from llama-index-core's changelog.

llama-index-core [0.14.12]

  • Feat/async tool spec support (#20338)
  • Improve MockFunctionCallingLLM (#20356)
  • fix(openai): sanitize generic Pydantic model schema names (#20371)
  • Element node parser (#20399)
  • improve llama dev logging (#20411)
  • test(node_parser): add unit tests for Java CodeSplitter (#20423)
  • fix: crash in log_vector_store_query_result when result.ids is None (#20427)

llama-index-embeddings-litellm [0.4.1]

  • Add docstring to LiteLLM embedding class (#20336)

llama-index-embeddings-ollama [0.8.5]

  • feat(llama-index-embeddings-ollama): Add keep_alive parameter (#20395)
  • docs: improve Ollama embeddings README with comprehensive documentation (#20414)

llama-index-embeddings-voyageai [0.5.2]

  • Voyage multimodal 35 (#20398)

llama-index-graph-stores-nebula [0.5.1]

  • feat(nebula): add MENTIONS edge to property graph store (#20401)

llama-index-llms-aibadgr [0.1.0]

  • feat(llama-index-llms-aibadgr): Add AI Badgr OpenAI‑compatible LLM integration (#20365)

llama-index-llms-anthropic [0.10.4]

  • add back haiku-3 support (#20408)

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

  • fix: bedrock converse thinking block issue (#20355)

llama-index-llms-google-genai [0.8.3]

  • Switch use_file_api to Flexible file_mode; Improve File Upload Handling & Bump google-genai to v1.52.0 (#20347)
  • Fix missing role from Google-GenAI (#20357)
  • Add signature index fix (#20362)
  • Add positional thought signature for thoughts (#20418)

llama-index-llms-ollama [0.9.1]

  • feature: pydantic no longer complains if you pass 'low', 'medium', 'h… (#20394)

... (truncated)

Commits

Updates llama-index-vector-stores-mongodb to 0.9.1

Updates llama-index-llms-openai to 0.6.12

Updates google-auth-httplib2 to 0.3.0

Release notes

Sourced from google-auth-httplib2's releases.

google-auth-httplib2 0.3.0

0.3.0 (2025-12-12)

Features

Changelog

Sourced from google-auth-httplib2's changelog.

0.3.0 (2025-12-12)

Features

0.2.1 (2025-10-30)

Bug Fixes

  • deps: Require google-auth >= 1.32.0,<3.0.0 (a69b725)
  • deps: Require httplib2 >= 0.19.0,<1.0.0 (a69b725)
  • Drop python 3.6; require python 3.7+ (a69b725)
  • Remove setup.cfg configuration for creating universal wheels (#191) (c2be0ae)

0.2.0 (2023-12-12)

Features

Dependencies

0.1.1 (2023-08-21)

Bug Fixes

0.1.0 (2021-03-01)

Features

  • add close method (#14) (feda187)
  • expose a few httplib2 properties and a method (#9) (e3aa44e)
Commits
  • 4aae361 chore: librarian release pull request: 20251212T201007Z (#204)
  • 1f774b4 chore: librarian update image pull request: 20251212T194254Z (#203)
  • bdf128e feat: Add support for Python 3.14 (#202)

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/huggingface/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-vector-stores-mongodb, llama-index-llms-openai, [google-auth-httplib2](https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2), [fastapi](https://github.com/fastapi/fastapi), [litellm](https://github.com/BerriAI/litellm), [pandas](https://github.com/pandas-dev/pandas), [pytest](https://github.com/pytest-dev/pytest), [pytest-cov](https://github.com/pytest-dev/pytest-cov), [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio), [dirty-equals](https://github.com/samuelcolvin/dirty-equals), [mkdocs-material](https://github.com/squidfunk/mkdocs-material), [mkdocstrings[python]](https://github.com/mkdocstrings/mkdocstrings), [mkdocs-git-revision-date-localized-plugin](https://github.com/timvink/mkdocs-git-revision-date-localized-plugin), [typer](https://github.com/fastapi/typer), [mkdocs-macros-plugin](https://github.com/fralau/mkdocs_macros_plugin), [mkdocs-glightbox](https://github.com/blueswen/mkdocs-glightbox), [pyyaml](https://github.com/yaml/pyyaml), [termcolor](https://github.com/termcolor/termcolor), [nbclient](https://github.com/jupyter/nbclient), [mypy](https://github.com/python/mypy), [ruff](https://github.com/astral-sh/ruff), [pre-commit](https://github.com/pre-commit/pre-commit) and [uv](https://github.com/astral-sh/uv) to permit the latest version.

Updates `ipykernel` from 6.30.1 to 7.1.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.1.0)

Updates `protobuf` from 6.32.0 to 6.33.2
- [Release notes](https://github.com/protocolbuffers/protobuf/releases)
- [Commits](https://github.com/protocolbuffers/protobuf/commits)

Updates `chromadb` to 1.4.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.3.0...1.4.0)

Updates `sentence-transformers` to 5.2.0
- [Release notes](https://github.com/huggingface/sentence-transformers/releases)
- [Commits](huggingface/sentence-transformers@v3.0.0...v5.2.0)

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

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

Updates `llama-index-vector-stores-mongodb` to 0.9.1

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

Updates `google-auth-httplib2` to 0.3.0
- [Release notes](https://github.com/GoogleCloudPlatform/google-auth-library-python-httplib2/releases)
- [Changelog](https://github.com/googleapis/google-auth-library-python-httplib2/blob/main/CHANGELOG.md)
- [Commits](googleapis/google-auth-library-python-httplib2@v0.2.0...v0.3.0)

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

Updates `litellm` to 1.80.11
- [Release notes](https://github.com/BerriAI/litellm/releases)
- [Commits](https://github.com/BerriAI/litellm/commits)

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 `pytest` from 8.4.2 to 9.0.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.4.2...9.0.2)

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.3.0
- [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
- [Commits](pytest-dev/pytest-asyncio@v1.1.0...v1.3.0)

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

Updates `mkdocs-material` from 9.6.19 to 9.7.1
- [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.7.1)

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

Updates `mkdocs-git-revision-date-localized-plugin` from 1.4.7 to 1.5.0
- [Release notes](https://github.com/timvink/mkdocs-git-revision-date-localized-plugin/releases)
- [Commits](timvink/mkdocs-git-revision-date-localized-plugin@v1.4.7...v1.5.0)

Updates `typer` from 0.17.4 to 0.21.0
- [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.21.0)

Updates `mkdocs-macros-plugin` from 1.3.9 to 1.5.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.5.0)

Updates `mkdocs-glightbox` from 0.5.1 to 0.5.2
- [Release notes](https://github.com/blueswen/mkdocs-glightbox/releases)
- [Changelog](https://github.com/blueswen/mkdocs-glightbox/blob/main/CHANGELOG)
- [Commits](blueswen/mkdocs-glightbox@v0.5.1...v0.5.2)

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 `termcolor` from 3.1.0 to 3.3.0
- [Release notes](https://github.com/termcolor/termcolor/releases)
- [Changelog](https://github.com/termcolor/termcolor/blob/main/CHANGES.md)
- [Commits](termcolor/termcolor@3.1.0...3.3.0)

Updates `nbclient` from 0.10.2 to 0.10.4
- [Release notes](https://github.com/jupyter/nbclient/releases)
- [Changelog](https://github.com/jupyter/nbclient/blob/main/CHANGELOG.md)
- [Commits](jupyter/nbclient@v0.10.2...v0.10.4)

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

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

Updates `pre-commit` from 4.3.0 to 4.5.1
- [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.3.0...v4.5.1)

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

---
updated-dependencies:
- dependency-name: ipykernel
  dependency-version: 7.1.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: protobuf
  dependency-version: 6.33.2
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: chromadb
  dependency-version: 1.4.0
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: sentence-transformers
  dependency-version: 5.2.0
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: graphrag-sdk
  dependency-version: 0.8.1
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: llama-index
  dependency-version: 0.14.12
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: llama-index-core
  dependency-version: 0.14.12
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: llama-index-vector-stores-mongodb
  dependency-version: 0.9.1
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: llama-index-llms-openai
  dependency-version: 0.6.12
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: google-auth-httplib2
  dependency-version: 0.3.0
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: fastapi
  dependency-version: 0.128.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: litellm
  dependency-version: 1.80.11
  dependency-type: direct:development
  dependency-group: pip
- dependency-name: pandas
  dependency-version: 2.3.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: pytest
  dependency-version: 9.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: pytest-cov
  dependency-version: 7.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: pytest-asyncio
  dependency-version: 1.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: dirty-equals
  dependency-version: '0.11'
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-material
  dependency-version: 9.7.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocstrings[python]
  dependency-version: 1.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: pip
- dependency-name: mkdocs-git-revision-date-localized-plugin
  dependency-version: 1.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: typer
  dependency-version: 0.21.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-macros-plugin
  dependency-version: 1.5.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: mkdocs-glightbox
  dependency-version: 0.5.2
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: pyyaml
  dependency-version: 6.0.3
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: termcolor
  dependency-version: 3.3.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: nbclient
  dependency-version: 0.10.4
  dependency-type: direct:development
  update-type: version-update:semver-patch
  dependency-group: pip
- dependency-name: mypy
  dependency-version: 1.19.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: ruff
  dependency-version: 0.14.10
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: pre-commit
  dependency-version: 4.5.1
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: pip
- dependency-name: uv
  dependency-version: 0.9.21
  dependency-type: direct:development
  update-type: version-update:semver-minor
  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 Jan 5, 2026
@joggrbot

This comment has been minimized.

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