Skip to content

Commit cc34a62

Browse files
v0.13.2 (#19672)
1 parent a121a47 commit cc34a62

File tree

10 files changed

+139
-12
lines changed

10 files changed

+139
-12
lines changed

CHANGELOG.md

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

3+
## [2025-08-14]
4+
5+
### `llama-index-core` [0.13.2]
6+
7+
- feat: allow streaming to be disabled in agents (#19668)
8+
- fix: respect the value of NLTK_DATA env var if present (#19664)
9+
- fix: Order preservation and fetching in batch non-cached embeddings in `a/get_text_embedding_batch()` (#19536)
10+
11+
### `llama-index-embeddings-ollama` [0.8.1]
12+
13+
- fix: Access embedding output (#19635)
14+
- fix: use normalized embeddings (#19622)
15+
16+
### `llama-index-graph-rag-cognee` [0.3.0]
17+
18+
- fix: Update and fix cognee integration (#19650)
19+
20+
### `llama-index-llms-anthropic` [0.8.4]
21+
22+
- fix: Error in Anthropic extended thinking with tool use (#19642)
23+
- chore: context window for claude 4 sonnet to 1 mln tokens (#19649)
24+
25+
### `llama-index-llms-bedrock-converse` [0.8.2]
26+
27+
- feat: add openai-oss models to BedrockConverse (#19653)
28+
29+
### `llama-index-llms-ollama` [0.7.1]
30+
31+
- fix: fix ollama role response detection (#19671)
32+
33+
### `llama-index-llms-openai` [0.5.3]
34+
35+
- fix: AzureOpenAI streaming token usage (#19633)
36+
37+
### `llama-index-readers-file` [0.5.1]
38+
39+
- feat: enhance PowerPoint reader with comprehensive content extraction (#19478)
40+
41+
### `llama-index-retrievers-bm25` [0.6.3]
42+
43+
- fix: fix persist+load for bm25 (#19657)
44+
45+
### `llama-index-retrievers-superlinked` [0.1.0]
46+
47+
- feat: add Superlinked retriever integration (#19636)
48+
49+
### `llama-index-tools-mcp` [0.4.0]
50+
51+
- feat: Handlers for custom types and pydantic models in tools (#19601)
52+
53+
### `llama-index-vector-stores-clickhouse` [0.6.0]
54+
55+
- chore: Updates to ClickHouse integration based on new vector search capabilities in ClickHouse (#19647)
56+
57+
### `llama-index-vector-stores-postgres` [0.6.3]
58+
59+
- fix: Add other special characters in `ts_query` normalization (#19637)
60+
361
## [2025-08-08]
462

563
### `llama-index-core` [0.13.1]

docs/docs/CHANGELOG.md

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

3+
## [2025-08-14]
4+
5+
### `llama-index-core` [0.13.2]
6+
7+
- feat: allow streaming to be disabled in agents (#19668)
8+
- fix: respect the value of NLTK_DATA env var if present (#19664)
9+
- fix: Order preservation and fetching in batch non-cached embeddings in `a/get_text_embedding_batch()` (#19536)
10+
11+
### `llama-index-embeddings-ollama` [0.8.1]
12+
13+
- fix: Access embedding output (#19635)
14+
- fix: use normalized embeddings (#19622)
15+
16+
### `llama-index-graph-rag-cognee` [0.3.0]
17+
18+
- fix: Update and fix cognee integration (#19650)
19+
20+
### `llama-index-llms-anthropic` [0.8.4]
21+
22+
- fix: Error in Anthropic extended thinking with tool use (#19642)
23+
- chore: context window for claude 4 sonnet to 1 mln tokens (#19649)
24+
25+
### `llama-index-llms-bedrock-converse` [0.8.2]
26+
27+
- feat: add openai-oss models to BedrockConverse (#19653)
28+
29+
### `llama-index-llms-ollama` [0.7.1]
30+
31+
- fix: fix ollama role response detection (#19671)
32+
33+
### `llama-index-llms-openai` [0.5.3]
34+
35+
- fix: AzureOpenAI streaming token usage (#19633)
36+
37+
### `llama-index-readers-file` [0.5.1]
38+
39+
- feat: enhance PowerPoint reader with comprehensive content extraction (#19478)
40+
41+
### `llama-index-retrievers-bm25` [0.6.3]
42+
43+
- fix: fix persist+load for bm25 (#19657)
44+
45+
### `llama-index-retrievers-superlinked` [0.1.0]
46+
47+
- feat: add Superlinked retriever integration (#19636)
48+
49+
### `llama-index-tools-mcp` [0.4.0]
50+
51+
- feat: Handlers for custom types and pydantic models in tools (#19601)
52+
53+
### `llama-index-vector-stores-clickhouse` [0.6.0]
54+
55+
- chore: Updates to ClickHouse integration based on new vector search capabilities in ClickHouse (#19647)
56+
57+
### `llama-index-vector-stores-postgres` [0.6.3]
58+
59+
- fix: Add other special characters in `ts_query` normalization (#19637)
60+
61+
362
## [2025-08-08]
463

564
### `llama-index-core` [0.13.1]
@@ -59,6 +118,10 @@
59118
- fix: BM25 Retriever allow `top_k` value greater than number of nodes added (#19577)
60119
- feat: Add metadata filtering support to BM25 Retriever and update documentation (#19586)
61120

121+
### `llama-index-tools-aws-bedrock-agentcore` [0.1.0]
122+
123+
- feat: Bedrock AgentCore browser and code interpreter toolspecs (#19559)
124+
62125
### `llama-index-vector-stores-baiduvectordb` [0.6.0]
63126

64127
- fix: fix filter operators and add stores_text support (#19591)
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.retrievers.superlinked
2+
options:
3+
members:
4+
- SuperlinkedRetriever

docs/mkdocs.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -617,6 +617,7 @@ nav:
617617
- ./examples/tools/function_tool_callback.ipynb
618618
- ./examples/tools/mcp.ipynb
619619
- ./examples/tools/mcp_agent_tools.ipynb
620+
- ./examples/tools/mcp_toolbox.ipynb
620621
- ./examples/tools/order_completion_agent_with_artifact_editor.ipynb
621622
- Transforms:
622623
- ./examples/transforms/TransformsEval.ipynb
@@ -1518,6 +1519,7 @@ nav:
15181519
- ./api_reference/retrievers/router.md
15191520
- ./api_reference/retrievers/sql.md
15201521
- ./api_reference/retrievers/summary.md
1522+
- ./api_reference/retrievers/superlinked.md
15211523
- ./api_reference/retrievers/tldw.md
15221524
- ./api_reference/retrievers/transform.md
15231525
- ./api_reference/retrievers/tree.md
@@ -1786,7 +1788,6 @@ nav:
17861788
- ./workflows/v1/resources.md
17871789
- ./workflows/v1/stepwise.md
17881790
- ./workflows/v1/deployment.md
1789-
17901791
- LlamaCloud: https://docs.cloud.llamaindex.ai/
17911792
plugins:
17921793
- search
@@ -2488,6 +2489,7 @@ plugins:
24882489
- ../llama-index-integrations/vector_stores/llama-index-vector-stores-bigquery
24892490
- ../llama-index-integrations/tools/llama-index-tools-aws-bedrock-agentcore
24902491
- ../llama-index-integrations/llms/llama-index-llms-heroku
2492+
- ../llama-index-integrations/retrievers/llama-index-retrievers-superlinked
24912493
- redirects:
24922494
redirect_maps:
24932495
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.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.13.1"
3+
__version__ = "0.13.2"
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
@@ -31,7 +31,7 @@ dev = [
3131

3232
[project]
3333
name = "llama-index-core"
34-
version = "0.13.1"
34+
version = "0.13.2"
3535
description = "Interface between LLMs and your data"
3636
authors = [{name = "Jerry Liu", email = "[email protected]"}]
3737
requires-python = ">=3.9,<4.0"

llama-index-core/uv.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

llama-index-integrations/llms/llama-index-llms-anthropic/pyproject.toml

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

2828
[project]
2929
name = "llama-index-llms-anthropic"
30-
version = "0.8.3"
30+
version = "0.8.4"
3131
description = "llama-index llms anthropic integration"
3232
authors = [{name = "Your Name", email = "[email protected]"}]
3333
requires-python = ">=3.9,<4.0"

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ classifiers = [
4040
]
4141
dependencies = [
4242
"llama-index-cli>=0.5.0,<0.6",
43-
"llama-index-core>=0.13.1,<0.14",
43+
"llama-index-core>=0.13.2,<0.14",
4444
"llama-index-embeddings-openai>=0.5.0,<0.6",
4545
"llama-index-indices-managed-llama-cloud>=0.4.0",
4646
"llama-index-llms-openai>=0.5.0,<0.6",
@@ -70,7 +70,7 @@ maintainers = [
7070
name = "llama-index"
7171
readme = "README.md"
7272
requires-python = ">=3.9,<4.0"
73-
version = "0.13.1"
73+
version = "0.13.2"
7474

7575
[project.scripts]
7676
llamaindex-cli = "llama_index.cli.command_line:main"

uv.lock

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

0 commit comments

Comments
 (0)