Skip to content
Merged

v0.12.39 #18913

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# ChangeLog

## [2025-05-30]

### `llama-index-core` [0.12.39]

- feat: Adding Resource to perform dependency injection in Workflows (docs coming soon!) (#18884)
- feat: Add `require_tool` param to function calling LLMs (#18654)
- fix: make prefix and response non-required for hitl events (#18896)
- fix: SelectionOutputParser when LLM chooses no choices (#18886)

### `llama-index-indices-managed-llama-cloud` [0.7.2]

- feat: add non persisted composite retrieval (#18908)

### `llama-index-llms-bedrock-converse` [0.7.0]

- feat: Update aioboto3 dependency to allow latest version (#18889)

### `llama-index-llms-ollama` [0.6.1]

- Support ollama 0.5.0 SDK, update ollama docs (#18904)

### `llama-index-vector-stores-milvus` [0.8.3]

- feat: Multi language analyzer supported in Milvus (#18901)

## [2025-05-28]

### `llama-index-core` [0.12.38]
Expand Down
25 changes: 25 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# ChangeLog

## [2025-05-30]

### `llama-index-core` [0.12.39]

- feat: Adding Resource to perform dependency injection in Workflows (docs coming soon!) (#18884)
- feat: Add `require_tool` param to function calling LLMs (#18654)
- fix: make prefix and response non-required for hitl events (#18896)
- fix: SelectionOutputParser when LLM chooses no choices (#18886)

### `llama-index-indices-managed-llama-cloud` [0.7.2]

- feat: add non persisted composite retrieval (#18908)

### `llama-index-llms-bedrock-converse` [0.7.0]

- feat: Update aioboto3 dependency to allow latest version (#18889)

### `llama-index-llms-ollama` [0.6.1]

- Support ollama 0.5.0 SDK, update ollama docs (#18904)

### `llama-index-vector-stores-milvus` [0.8.3]

- feat: Multi language analyzer supported in Milvus (#18901)

## [2025-05-28]

### `llama-index-core` [0.12.38]
Expand Down
4 changes: 0 additions & 4 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1171,10 +1171,7 @@ nav:
- ./api_reference/llama_deploy/control_plane.md
- ./api_reference/llama_deploy/deploy.md
- ./api_reference/llama_deploy/deployment.md
- ./api_reference/llama_deploy/message_consumers.md
- ./api_reference/llama_deploy/message_publishers.md
- ./api_reference/llama_deploy/messages.md
- ./api_reference/llama_deploy/orchestrators.md
- ./api_reference/llama_deploy/python_sdk.md
- ./api_reference/llama_deploy/services.md
- ./api_reference/llama_deploy/types.md
Expand All @@ -1191,7 +1188,6 @@ nav:
- ./api_reference/llama_deploy/message_queues/rabbitmq.md
- ./api_reference/llama_deploy/message_queues/redis.md
- ./api_reference/llama_deploy/message_queues/simple.md
- ./api_reference/llama_deploy/message_queues/solace.md
- Metadata Extractors:
- ./api_reference/extractors/documentcontext.md
- ./api_reference/extractors/entity.md
Expand Down
2 changes: 1 addition & 1 deletion llama-index-core/llama_index/core/__init__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
"""Top-level imports for LlamaIndex."""

__version__ = "0.12.38"
__version__ = "0.12.39"

import logging
from logging import NullHandler
Expand Down
2 changes: 1 addition & 1 deletion llama-index-core/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ dev = [

[project]
name = "llama-index-core"
version = "0.12.38"
version = "0.12.39"
description = "Interface between LLMs and your data"
authors = [{name = "Jerry Liu", email = "[email protected]"}]
requires-python = ">=3.9,<4.0"
Expand Down
8 changes: 4 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ classifiers = [
dependencies = [
"llama-index-agent-openai>=0.4.0,<0.5",
"llama-index-cli>=0.4.1,<0.5",
"llama-index-core>=0.12.38,<0.13",
"llama-index-core>=0.12.39,<0.13",
"llama-index-embeddings-openai>=0.3.0,<0.4",
"llama-index-indices-managed-llama-cloud>=0.4.0",
"llama-index-llms-openai>=0.3.0,<0.4",
"llama-index-multi-modal-llms-openai>=0.4.0,<0.5",
"llama-index-llms-openai>=0.4.0,<0.5",
"llama-index-multi-modal-llms-openai>=0.5.0,<0.6",
"llama-index-program-openai>=0.3.0,<0.4",
"llama-index-question-gen-openai>=0.3.0,<0.4",
"llama-index-readers-file>=0.4.0,<0.5",
Expand Down Expand Up @@ -74,7 +74,7 @@ maintainers = [
name = "llama-index"
readme = "README.md"
requires-python = ">=3.9,<4.0"
version = "0.12.38"
version = "0.12.39"

[project.scripts]
llamaindex-cli = "llama_index.cli.command_line:main"
Expand Down
56 changes: 28 additions & 28 deletions uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading