Skip to content

Commit 497ec04

Browse files
v0.10.62 (run-llama#15184)
1 parent 806456c commit 497ec04

File tree

9 files changed

+422
-256
lines changed

9 files changed

+422
-256
lines changed

CHANGELOG.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,42 @@
11
# ChangeLog
22

3-
## [2024-02-05]
3+
## [2024-08-06]
4+
5+
### `llama-index-core` [0.10.62]
6+
7+
- feat: Allow None metadata filter by using IS_EMPTY operator (#15167)
8+
- fix: use parent source node to node relationships if possible during node parsing (#15182)
9+
- Use node hash instead of node text to match nodes in fusion retriever (#15172)
10+
11+
### `llama-index-graph-stores-neo4j` [0.2.13]
12+
13+
- Neo4j property graph client side batching (#15179)
14+
15+
### `llama-index-graph-stores-neptune` [0.1.4]
16+
17+
- PropertyGraphStore support for Amazon Neptune (#15126)
18+
19+
### `llama-index-llms-gemini` [0.2.0]
20+
21+
- feat: add default_headers to Gemini model (#15141)
22+
23+
### `llama-index-llms-openai` [0.1.28]
24+
25+
- OpenAI: Support new strict functionality in tool param (#15177)
26+
27+
### `llama-index-vector-stores-opensearch` [0.1.14]
28+
29+
- Add support for full MetadataFilters in Opensearch (#15176)
30+
31+
### `llama-index-vector-stores-qdrant` [0.2.15]
32+
33+
- feat: Allow None metadata filter by using IS_EMPTY operator (#15167)
34+
35+
### `llama-index-vector-stores-wordlift` [0.3.0]
36+
37+
- Add support for fields projection and update sample Notebook (#15140)
38+
39+
## [2024-08-05]
440

541
### `llama-index-core` [0.10.61]
642

docs/docs/CHANGELOG.md

Lines changed: 37 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,42 @@
11
# ChangeLog
22

3-
## [2024-02-05]
3+
## [2024-08-06]
4+
5+
### `llama-index-core` [0.10.62]
6+
7+
- feat: Allow None metadata filter by using IS_EMPTY operator (#15167)
8+
- fix: use parent source node to node relationships if possible during node parsing (#15182)
9+
- Use node hash instead of node text to match nodes in fusion retriever (#15172)
10+
11+
### `llama-index-graph-stores-neo4j` [0.2.13]
12+
13+
- Neo4j property graph client side batching (#15179)
14+
15+
### `llama-index-graph-stores-neptune` [0.1.4]
16+
17+
- PropertyGraphStore support for Amazon Neptune (#15126)
18+
19+
### `llama-index-llms-gemini` [0.2.0]
20+
21+
- feat: add default_headers to Gemini model (#15141)
22+
23+
### `llama-index-llms-openai` [0.1.28]
24+
25+
- OpenAI: Support new strict functionality in tool param (#15177)
26+
27+
### `llama-index-vector-stores-opensearch` [0.1.14]
28+
29+
- Add support for full MetadataFilters in Opensearch (#15176)
30+
31+
### `llama-index-vector-stores-qdrant` [0.2.15]
32+
33+
- feat: Allow None metadata filter by using IS_EMPTY operator (#15167)
34+
35+
### `llama-index-vector-stores-wordlift` [0.3.0]
36+
37+
- Add support for fields projection and update sample Notebook (#15140)
38+
39+
## [2024-08-05]
440

541
### `llama-index-core` [0.10.61]
642

docs/docs/api_reference/storage/graph_stores/neptune.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,3 +3,5 @@
33
members:
44
- NeptuneAnalyticsGraphStore
55
- NeptuneDatabaseGraphStore
6+
- NeptuneAnalyticsPropertyGraphStore
7+
- NeptuneDatabasePropertyGraphStore

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
"""Init file of LlamaIndex."""
22

3-
__version__ = "0.10.61"
3+
__version__ = "0.10.62"
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
@@ -43,7 +43,7 @@ name = "llama-index-core"
4343
packages = [{include = "llama_index"}]
4444
readme = "README.md"
4545
repository = "https://github.com/run-llama/llama_index"
46-
version = "0.10.61"
46+
version = "0.10.62"
4747

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

llama-index-integrations/graph_stores/llama-index-graph-stores-neptune/pyproject.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,9 @@ import_path = "llama_index.graph_stores.neptune"
1313

1414
[tool.llamahub.class_authors]
1515
NeptuneAnalyticsGraphStore = "llama-index"
16+
NeptuneAnalyticsPropertyGraphStore = "llama-index"
1617
NeptuneDatabaseGraphStore = "llama-index"
18+
NeptuneDatabasePropertyGraphStore = "llama-index"
1719

1820
[tool.mypy]
1921
disallow_untyped_defs = true

llama-index-integrations/vector_stores/llama-index-vector-stores-qdrant/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
2727
license = "MIT"
2828
name = "llama-index-vector-stores-qdrant"
2929
readme = "README.md"
30-
version = "0.2.14"
30+
version = "0.2.15"
3131

3232
[tool.poetry.dependencies]
3333
python = ">=3.9,<3.13"

poetry.lock

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

pyproject.toml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ name = "llama-index"
4444
packages = [{from = "_llama-index", include = "llama_index"}]
4545
readme = "README.md"
4646
repository = "https://github.com/run-llama/llama_index"
47-
version = "0.10.61"
47+
version = "0.10.62"
4848

4949
[tool.poetry.dependencies]
5050
python = ">=3.8.1,<4.0"
@@ -57,7 +57,7 @@ llama-index-agent-openai = ">=0.1.4,<0.3.0"
5757
llama-index-readers-file = "^0.1.4"
5858
llama-index-readers-llama-parse = ">=0.1.2"
5959
llama-index-indices-managed-llama-cloud = ">=0.2.0"
60-
llama-index-core = "0.10.61"
60+
llama-index-core = "0.10.62"
6161
llama-index-multi-modal-llms-openai = "^0.1.3"
6262
llama-index-cli = "^0.1.2"
6363

0 commit comments

Comments
 (0)