Skip to content

Commit a829c95

Browse files
v0.12.39 (#18913)
1 parent 6906afc commit a829c95

File tree

7 files changed

+84
-38
lines changed

7 files changed

+84
-38
lines changed

CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# ChangeLog
22

3+
## [2025-05-30]
4+
5+
### `llama-index-core` [0.12.39]
6+
7+
- feat: Adding Resource to perform dependency injection in Workflows (docs coming soon!) (#18884)
8+
- feat: Add `require_tool` param to function calling LLMs (#18654)
9+
- fix: make prefix and response non-required for hitl events (#18896)
10+
- fix: SelectionOutputParser when LLM chooses no choices (#18886)
11+
12+
### `llama-index-indices-managed-llama-cloud` [0.7.2]
13+
14+
- feat: add non persisted composite retrieval (#18908)
15+
16+
### `llama-index-llms-bedrock-converse` [0.7.0]
17+
18+
- feat: Update aioboto3 dependency to allow latest version (#18889)
19+
20+
### `llama-index-llms-ollama` [0.6.1]
21+
22+
- Support ollama 0.5.0 SDK, update ollama docs (#18904)
23+
24+
### `llama-index-vector-stores-milvus` [0.8.3]
25+
26+
- feat: Multi language analyzer supported in Milvus (#18901)
27+
328
## [2025-05-28]
429

530
### `llama-index-core` [0.12.38]

docs/docs/CHANGELOG.md

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,30 @@
11
# ChangeLog
22

3+
## [2025-05-30]
4+
5+
### `llama-index-core` [0.12.39]
6+
7+
- feat: Adding Resource to perform dependency injection in Workflows (docs coming soon!) (#18884)
8+
- feat: Add `require_tool` param to function calling LLMs (#18654)
9+
- fix: make prefix and response non-required for hitl events (#18896)
10+
- fix: SelectionOutputParser when LLM chooses no choices (#18886)
11+
12+
### `llama-index-indices-managed-llama-cloud` [0.7.2]
13+
14+
- feat: add non persisted composite retrieval (#18908)
15+
16+
### `llama-index-llms-bedrock-converse` [0.7.0]
17+
18+
- feat: Update aioboto3 dependency to allow latest version (#18889)
19+
20+
### `llama-index-llms-ollama` [0.6.1]
21+
22+
- Support ollama 0.5.0 SDK, update ollama docs (#18904)
23+
24+
### `llama-index-vector-stores-milvus` [0.8.3]
25+
26+
- feat: Multi language analyzer supported in Milvus (#18901)
27+
328
## [2025-05-28]
429

530
### `llama-index-core` [0.12.38]

docs/mkdocs.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1171,10 +1171,7 @@ nav:
11711171
- ./api_reference/llama_deploy/control_plane.md
11721172
- ./api_reference/llama_deploy/deploy.md
11731173
- ./api_reference/llama_deploy/deployment.md
1174-
- ./api_reference/llama_deploy/message_consumers.md
1175-
- ./api_reference/llama_deploy/message_publishers.md
11761174
- ./api_reference/llama_deploy/messages.md
1177-
- ./api_reference/llama_deploy/orchestrators.md
11781175
- ./api_reference/llama_deploy/python_sdk.md
11791176
- ./api_reference/llama_deploy/services.md
11801177
- ./api_reference/llama_deploy/types.md
@@ -1191,7 +1188,6 @@ nav:
11911188
- ./api_reference/llama_deploy/message_queues/rabbitmq.md
11921189
- ./api_reference/llama_deploy/message_queues/redis.md
11931190
- ./api_reference/llama_deploy/message_queues/simple.md
1194-
- ./api_reference/llama_deploy/message_queues/solace.md
11951191
- Metadata Extractors:
11961192
- ./api_reference/extractors/documentcontext.md
11971193
- ./api_reference/extractors/entity.md

llama-index-core/llama_index/core/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Top-level imports for LlamaIndex."""
22

3-
__version__ = "0.12.38"
3+
__version__ = "0.12.39"
44

55
import logging
66
from logging import NullHandler

llama-index-core/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ dev = [
3333

3434
[project]
3535
name = "llama-index-core"
36-
version = "0.12.38"
36+
version = "0.12.39"
3737
description = "Interface between LLMs and your data"
3838
authors = [{name = "Jerry Liu", email = "jerry@llamaindex.ai"}]
3939
requires-python = ">=3.9,<4.0"

pyproject.toml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,11 +41,11 @@ classifiers = [
4141
dependencies = [
4242
"llama-index-agent-openai>=0.4.0,<0.5",
4343
"llama-index-cli>=0.4.1,<0.5",
44-
"llama-index-core>=0.12.38,<0.13",
44+
"llama-index-core>=0.12.39,<0.13",
4545
"llama-index-embeddings-openai>=0.3.0,<0.4",
4646
"llama-index-indices-managed-llama-cloud>=0.4.0",
47-
"llama-index-llms-openai>=0.3.0,<0.4",
48-
"llama-index-multi-modal-llms-openai>=0.4.0,<0.5",
47+
"llama-index-llms-openai>=0.4.0,<0.5",
48+
"llama-index-multi-modal-llms-openai>=0.5.0,<0.6",
4949
"llama-index-program-openai>=0.3.0,<0.4",
5050
"llama-index-question-gen-openai>=0.3.0,<0.4",
5151
"llama-index-readers-file>=0.4.0,<0.5",
@@ -74,7 +74,7 @@ maintainers = [
7474
name = "llama-index"
7575
readme = "README.md"
7676
requires-python = ">=3.9,<4.0"
77-
version = "0.12.38"
77+
version = "0.12.39"
7878

7979
[project.scripts]
8080
llamaindex-cli = "llama_index.cli.command_line:main"

uv.lock

Lines changed: 28 additions & 28 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)