Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

v0.11.7 #15891

Merged
merged 2 commits into from
Sep 7, 2024
Merged

v0.11.7 #15891

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,30 @@
# ChangeLog

## [2024-09-06]

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

- Make SentenceSplitter's secondary_chunking_regex optional (#15882)
- force openai structured output (#15706)
- fix assert error, add type ignore for streaming agents (#15887)
- Fix image document deserialization issue (#15857)

### `llama-index-graph-stores-kuzu` [0.3.2]

- Bug fix for KuzuPropertyGraphStore: Allow upserting relations even when chunks are absent (#15889)

### `llama-index-llms-bedrock-converse` [0.3.0]

- Removed unused llama-index-llms-anthropic dependency from Bedrock Converse (#15869)

### `llama-index-vector-stores-postgres` [0.2.2]

- Fix PGVectorStore with latest pydantic, update pydantic imports (#15886)

### `llama-index-vector-stores-tablestore` [0.1.0]

- Add TablestoreVectorStore (#15657)

## [2024-09-05]

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

## [2024-09-06]

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

- Make SentenceSplitter's secondary_chunking_regex optional (#15882)
- force openai structured output (#15706)
- fix assert error, add type ignore for streaming agents (#15887)
- Fix image document deserialization issue (#15857)

### `llama-index-graph-stores-kuzu` [0.3.2]

- Bug fix for KuzuPropertyGraphStore: Allow upserting relations even when chunks are absent (#15889)

### `llama-index-llms-bedrock-converse` [0.3.0]

- Removed unused llama-index-llms-anthropic dependency from Bedrock Converse (#15869)

### `llama-index-vector-stores-postgres` [0.2.2]

- Fix PGVectorStore with latest pydantic, update pydantic imports (#15886)

### `llama-index-vector-stores-tablestore` [0.1.0]

- Add TablestoreVectorStore (#15657)

## [2024-09-05]

### `llama-index-core` [0.11.6]
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.11.6"
__version__ = "0.11.7"

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

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-agent-openai"
readme = "README.md"
version = "0.3.0"
version = "0.3.1"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,13 +29,13 @@ exclude = ["**/BUILD"]
license = "MIT"
name = "llama-index-llms-openai"
readme = "README.md"
version = "0.2.2"
version = "0.2.3"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
openai = "^1.40.0"
llama-index-core = "^0.11.0"
llama-index-agent-openai = "^0.3.0"
llama-index-core = "^0.11.7"
llama-index-agent-openai = "^0.3.1"

[tool.poetry.group.dev.dependencies]
ipython = "8.10.0"
Expand Down
36 changes: 18 additions & 18 deletions poetry.lock

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

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

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
llama-index-legacy = "^0.9.48"
llama-index-llms-openai = "^0.2.2"
llama-index-llms-openai = "^0.2.3"
llama-index-embeddings-openai = "^0.2.4"
llama-index-program-openai = "^0.2.0"
llama-index-question-gen-openai = "^0.2.0"
llama-index-agent-openai = "^0.3.0"
llama-index-agent-openai = "^0.3.1"
llama-index-readers-file = "^0.2.0"
llama-index-readers-llama-parse = ">=0.3.0"
llama-index-indices-managed-llama-cloud = ">=0.3.0"
llama-index-core = "^0.11.6"
llama-index-core = "^0.11.7"
llama-index-multi-modal-llms-openai = "^0.2.0"
llama-index-cli = "^0.3.0"
nltk = ">3.8.1" # avoids a CVE, temp until next release, should be in llama-index-core
Expand Down
Loading