Skip to content

Commit

Permalink
v0.10.62 (run-llama#15184)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Aug 7, 2024
1 parent 806456c commit 497ec04
Show file tree
Hide file tree
Showing 9 changed files with 422 additions and 256 deletions.
38 changes: 37 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,42 @@
# ChangeLog

## [2024-02-05]
## [2024-08-06]

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

- feat: Allow None metadata filter by using IS_EMPTY operator (#15167)
- fix: use parent source node to node relationships if possible during node parsing (#15182)
- Use node hash instead of node text to match nodes in fusion retriever (#15172)

### `llama-index-graph-stores-neo4j` [0.2.13]

- Neo4j property graph client side batching (#15179)

### `llama-index-graph-stores-neptune` [0.1.4]

- PropertyGraphStore support for Amazon Neptune (#15126)

### `llama-index-llms-gemini` [0.2.0]

- feat: add default_headers to Gemini model (#15141)

### `llama-index-llms-openai` [0.1.28]

- OpenAI: Support new strict functionality in tool param (#15177)

### `llama-index-vector-stores-opensearch` [0.1.14]

- Add support for full MetadataFilters in Opensearch (#15176)

### `llama-index-vector-stores-qdrant` [0.2.15]

- feat: Allow None metadata filter by using IS_EMPTY operator (#15167)

### `llama-index-vector-stores-wordlift` [0.3.0]

- Add support for fields projection and update sample Notebook (#15140)

## [2024-08-05]

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

Expand Down
38 changes: 37 additions & 1 deletion docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,42 @@
# ChangeLog

## [2024-02-05]
## [2024-08-06]

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

- feat: Allow None metadata filter by using IS_EMPTY operator (#15167)
- fix: use parent source node to node relationships if possible during node parsing (#15182)
- Use node hash instead of node text to match nodes in fusion retriever (#15172)

### `llama-index-graph-stores-neo4j` [0.2.13]

- Neo4j property graph client side batching (#15179)

### `llama-index-graph-stores-neptune` [0.1.4]

- PropertyGraphStore support for Amazon Neptune (#15126)

### `llama-index-llms-gemini` [0.2.0]

- feat: add default_headers to Gemini model (#15141)

### `llama-index-llms-openai` [0.1.28]

- OpenAI: Support new strict functionality in tool param (#15177)

### `llama-index-vector-stores-opensearch` [0.1.14]

- Add support for full MetadataFilters in Opensearch (#15176)

### `llama-index-vector-stores-qdrant` [0.2.15]

- feat: Allow None metadata filter by using IS_EMPTY operator (#15167)

### `llama-index-vector-stores-wordlift` [0.3.0]

- Add support for fields projection and update sample Notebook (#15140)

## [2024-08-05]

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

Expand Down
2 changes: 2 additions & 0 deletions docs/docs/api_reference/storage/graph_stores/neptune.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,3 +3,5 @@
members:
- NeptuneAnalyticsGraphStore
- NeptuneDatabaseGraphStore
- NeptuneAnalyticsPropertyGraphStore
- NeptuneDatabasePropertyGraphStore
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 @@
"""Init file of LlamaIndex."""

__version__ = "0.10.61"
__version__ = "0.10.62"

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

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,9 @@ import_path = "llama_index.graph_stores.neptune"

[tool.llamahub.class_authors]
NeptuneAnalyticsGraphStore = "llama-index"
NeptuneAnalyticsPropertyGraphStore = "llama-index"
NeptuneDatabaseGraphStore = "llama-index"
NeptuneDatabasePropertyGraphStore = "llama-index"

[tool.mypy]
disallow_untyped_defs = true
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-vector-stores-qdrant"
readme = "README.md"
version = "0.2.14"
version = "0.2.15"

[tool.poetry.dependencies]
python = ">=3.9,<3.13"
Expand Down
588 changes: 339 additions & 249 deletions poetry.lock

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ name = "llama-index"
packages = [{from = "_llama-index", include = "llama_index"}]
readme = "README.md"
repository = "https://github.com/run-llama/llama_index"
version = "0.10.61"
version = "0.10.62"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand All @@ -57,7 +57,7 @@ llama-index-agent-openai = ">=0.1.4,<0.3.0"
llama-index-readers-file = "^0.1.4"
llama-index-readers-llama-parse = ">=0.1.2"
llama-index-indices-managed-llama-cloud = ">=0.2.0"
llama-index-core = "0.10.61"
llama-index-core = "0.10.62"
llama-index-multi-modal-llms-openai = "^0.1.3"
llama-index-cli = "^0.1.2"

Expand Down

0 comments on commit 497ec04

Please sign in to comment.