Skip to content

Commit 93e1f4b

Browse files
v0.12.9 (run-llama#17400)
1 parent 965aa04 commit 93e1f4b

File tree

8 files changed

+248
-132
lines changed

8 files changed

+248
-132
lines changed

CHANGELOG.md

+61
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,66 @@
11
# ChangeLog
22

3+
## [2024-12-31]
4+
5+
### `llama-index-core` [0.12.9]
6+
7+
- clean up type hints in schema extractor (#17394)
8+
- Fix IndexError in LLM Reranking when handling malformed LLM responses (#17353)
9+
10+
### `llama-index-llms-bedrock-converse` [0.4.3]
11+
12+
- Fix Regression on Tools use for Bedrock Converse (#17364)
13+
14+
### `llama-index-llms-sagemaker-endpoint` [0.3.1]
15+
16+
- Pass `aws_region_name` to `get_aws_service_client()` in SageMakerLLM (#12000)
17+
18+
### `llama-index-postprocessor-voyageai-rerank` [0.3.2]
19+
20+
- VoyageAIRerank constructor fix for truncation (#17343)
21+
22+
### `llama-index-readers-gitlab` [0.3.1]
23+
24+
- Fix: Properly add blob documents from Gitlab Repo (#17392)
25+
26+
### `llama-index-readers-rss` [0.3.2]
27+
28+
- Fix minor issues in rss (#17351)
29+
30+
### `llama-index-readers-web` [0.3.3]
31+
32+
- fix: prevent infinite recursion in `get_article_urls` (#17360)
33+
34+
### `llama-index-vector-stores-azureaisearch` [0.3.2]
35+
36+
- azureaisearch: add semantic search mode support for async queries (#17335)
37+
38+
### `llama-index-vector-stores-azurecosmosnosql` [1.3.1]
39+
40+
- fix storeindex cosmosnosql query issue - (BadRequest) (#17385)
41+
42+
### `llama-index-vector-stores-milvus` [0.5.0]
43+
44+
- feat: milvus async (#17378)
45+
46+
### `llama-index-vector-stores-opensearch` [0.5.2]
47+
48+
- Fix typo in property name (#17365)
49+
- bugfix when initializing with async aoss vector store (#17340)
50+
51+
### `llama-index-vector-stores-tablestore` [0.2.2]
52+
53+
- TablestoreVectorStore: support hybrid query, modify some documents. (#17366)
54+
- TablestoreVectorStore check the Dimension of the embedding when writing it to store. (#17321)
55+
56+
### `llama-index-vector-stores-qdrant` [0.4.2]
57+
58+
- qdrant filter fix for `query_str` is None (#17377)
59+
60+
### `llama-index-vector-stores-weaviate` [1.3.1]
61+
62+
- implement `client_kwargs["custom_batch"]` for weaviate (#17347)
63+
364
## [2024-12-20]
465

566
### `llama-index-core` [0.12.8]

docs/docs/CHANGELOG.md

+61
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,66 @@
11
# ChangeLog
22

3+
## [2024-12-31]
4+
5+
### `llama-index-core` [0.12.9]
6+
7+
- clean up type hints in schema extractor (#17394)
8+
- Fix IndexError in LLM Reranking when handling malformed LLM responses (#17353)
9+
10+
### `llama-index-llms-bedrock-converse` [0.4.3]
11+
12+
- Fix Regression on Tools use for Bedrock Converse (#17364)
13+
14+
### `llama-index-llms-sagemaker-endpoint` [0.3.1]
15+
16+
- Pass `aws_region_name` to `get_aws_service_client()` in SageMakerLLM (#12000)
17+
18+
### `llama-index-postprocessor-voyageai-rerank` [0.3.2]
19+
20+
- VoyageAIRerank constructor fix for truncation (#17343)
21+
22+
### `llama-index-readers-gitlab` [0.3.1]
23+
24+
- Fix: Properly add blob documents from Gitlab Repo (#17392)
25+
26+
### `llama-index-readers-rss` [0.3.2]
27+
28+
- Fix minor issues in rss (#17351)
29+
30+
### `llama-index-readers-web` [0.3.3]
31+
32+
- fix: prevent infinite recursion in `get_article_urls` (#17360)
33+
34+
### `llama-index-vector-stores-azureaisearch` [0.3.2]
35+
36+
- azureaisearch: add semantic search mode support for async queries (#17335)
37+
38+
### `llama-index-vector-stores-azurecosmosnosql` [1.3.1]
39+
40+
- fix storeindex cosmosnosql query issue - (BadRequest) (#17385)
41+
42+
### `llama-index-vector-stores-milvus` [0.5.0]
43+
44+
- feat: milvus async (#17378)
45+
46+
### `llama-index-vector-stores-opensearch` [0.5.2]
47+
48+
- Fix typo in property name (#17365)
49+
- bugfix when initializing with async aoss vector store (#17340)
50+
51+
### `llama-index-vector-stores-tablestore` [0.2.2]
52+
53+
- TablestoreVectorStore: support hybrid query, modify some documents. (#17366)
54+
- TablestoreVectorStore check the Dimension of the embedding when writing it to store. (#17321)
55+
56+
### `llama-index-vector-stores-qdrant` [0.4.2]
57+
58+
- qdrant filter fix for `query_str` is None (#17377)
59+
60+
### `llama-index-vector-stores-weaviate` [1.3.1]
61+
62+
- implement `client_kwargs["custom_batch"]` for weaviate (#17347)
63+
364
## [2024-12-20]
465

566
### `llama-index-core` [0.12.8]
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
::: llama_index.storage.docstore.azurecosmosnosql
2+
options:
3+
members:
4+
- AzureCosmosNoSqlIndexStore

docs/mkdocs.yml

+1
Original file line numberDiff line numberDiff line change
@@ -1492,6 +1492,7 @@ nav:
14921492
- ./api_reference/storage/chat_store/upstash.md
14931493
- Docstore:
14941494
- ./api_reference/storage/docstore/azure.md
1495+
- ./api_reference/storage/docstore/azurecosmosnosql.md
14951496
- ./api_reference/storage/docstore/couchbase.md
14961497
- ./api_reference/storage/docstore/dynamodb.md
14971498
- ./api_reference/storage/docstore/elasticsearch.md

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Init file of LlamaIndex."""
22

3-
__version__ = "0.12.8"
3+
__version__ = "0.12.9"
44

55
import logging
66
from logging import NullHandler

llama-index-core/pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ name = "llama-index-core"
4646
packages = [{include = "llama_index"}]
4747
readme = "README.md"
4848
repository = "https://github.com/run-llama/llama_index"
49-
version = "0.12.8"
49+
version = "0.12.9"
5050

5151
[tool.poetry.dependencies]
5252
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}

0 commit comments

Comments
 (0)