Skip to content

Commit

Permalink
v0.10.43 (#13902)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Jun 3, 2024
1 parent 4d2e8db commit 910db52
Show file tree
Hide file tree
Showing 6 changed files with 76 additions and 20 deletions.
28 changes: 28 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# ChangeLog

## [2024-06-02]

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

- use default UUIDs when possible for property graph index vector stores (#13886)
- avoid empty or duplicate inserts in property graph index (#13891)
- Fix cur depth for `get_rel_map` in simple property graph store (#13888)
- (bandaid) disable instrumentation from logging generators (#13901)
- Add backwards compatibility to Dispatcher.get_dispatch_event() method (#13895)
- Fix: Incorrect naming of acreate_plan in StructuredPlannerAgent (#13879)

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

- Handle cases where type is missing (neo4j property graph) (#13875)
- Rename `Neo4jPGStore` to `Neo4jPropertyGraphStore` (with backward compat) (#13891)

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

- Improve the retry mechanism of OpenAI (#13878)

### `llama-index-readers-web` [0.1.18]

- AsyncWebPageReader: made it actually async; it was exhibiting blocking behavior (#13897)

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

- Fix/OpenSearch filter logic (#13804)

## [2024-05-31]

### `llama-index-core` [0.10.42]
Expand Down
28 changes: 28 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,33 @@
# ChangeLog

## [2024-06-02]

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

- use default UUIDs when possible for property graph index vector stores (#13886)
- avoid empty or duplicate inserts in property graph index (#13891)
- Fix cur depth for `get_rel_map` in simple property graph store (#13888)
- (bandaid) disable instrumentation from logging generators (#13901)
- Add backwards compatibility to Dispatcher.get_dispatch_event() method (#13895)
- Fix: Incorrect naming of acreate_plan in StructuredPlannerAgent (#13879)

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

- Handle cases where type is missing (neo4j property graph) (#13875)
- Rename `Neo4jPGStore` to `Neo4jPropertyGraphStore` (with backward compat) (#13891)

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

- Improve the retry mechanism of OpenAI (#13878)

### `llama-index-readers-web` [0.1.18]

- AsyncWebPageReader: made it actually async; it was exhibiting blocking behavior (#13897)

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

- Fix/OpenSearch filter logic (#13804)

## [2024-05-31]

### `llama-index-core` [0.10.42]
Expand Down
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.42"
__version__ = "0.10.43"

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.42"
version = "0.10.43"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
32 changes: 16 additions & 16 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

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.42"
version = "0.10.43"

[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.1.2"
llama-index-core = "0.10.42"
llama-index-core = "0.10.43"
llama-index-multi-modal-llms-openai = "^0.1.3"
llama-index-cli = "^0.1.2"

Expand Down

0 comments on commit 910db52

Please sign in to comment.