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

[version] bump version to 0.10.54 #14681

Merged
merged 5 commits into from
Jul 10, 2024
Merged
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
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# ChangeLog

## [2024-07-10]

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

- fix: update operator logic for simple vector store filter (#14674)
- Add AgentOps integration (#13935)

### `llama-index-embeddings-fastembed` [0.1.5]

- chore: update required python version in Qdrant fastembed package (#14677)

### `llama-index-embeddings-huggingface-optimum-intel` [0.1.6]

- Bump version llama-index-embeddings-huggingface-optimum-intel (#14670)

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

- Added support for custom index settings (#14655)

### `llama-index-callbacks-agentops` [0.1.0]

- Initial release

### `llama-index-indices-managed-vertexai` [0.0.2]

- Fix #14637 Llamaindex managed Vertex AI index needs to be updated. (#14641)

### `llama-index-readers-file` [0.1.29]

- fix unstructured import in simple file reader (#14642)

## [2024-07-08]

### `llama-index-core` [0.10.53]
Expand Down
38 changes: 37 additions & 1 deletion docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# ChangeLog

## [2024-07-10]

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

- fix: update operator logic for simple vector store filter (#14674)
- Add AgentOps integration (#13935)

### `llama-index-embeddings-fastembed` [0.1.5]

- chore: update required python version in Qdrant fastembed package (#14677)

### `llama-index-embeddings-huggingface-optimum-intel` [0.1.6]

- Bump version llama-index-embeddings-huggingface-optimum-intel (#14670)

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

- Added support for custom index settings (#14655)

### `llama-index-callbacks-agentops` [0.1.0]

- Initial release

### `llama-index-indices-managed-vertexai` [0.0.2]

- Fix #14637 Llamaindex managed Vertex AI index needs to be updated. (#14641)

### `llama-index-readers-file` [0.1.29]

- fix unstructured import in simple file reader (#14642)

## [2024-07-08]

### `llama-index-core` [0.10.53]
Expand All @@ -13,11 +44,16 @@
- add cloud document converter (#14608)
- fix KnowledgeGraphIndex arg 'kg_triple_extract_template' typo error (#14619)
- Fix: Update `UnstructuredElementNodeParser` due to change in unstructured (#14606)
- Update ReAct Step to solve issue with incomplete generation (#14587)

### `llama-index-callbacks-promptlayer` [0.1.3]

- Conditions logging to promptlayer on successful request (#14632)

### `llama-index-embeddings-databricks` [0.1.0]

- Add integration embeddings databricks (#14590)

### `llama-index-llms-ai21` [0.3.1]

- Fix MessageRole import from the wrong package in AI21 Package (#14596)
Expand All @@ -29,7 +65,7 @@

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

- Fix Bedrock Converse's tool use blocks, when there are multiple consecutive function calls (#14386)
- Fix Bedrock Converse's tool use blocks, when there are multiple consecutive function calls (#14386)

### `llama-index-llms-optimum-intel` [0.1.0]

Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/callbacks/agentops.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.callbacks.agentops
options:
members:
- AgentOpsEventHandler
2 changes: 2 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -748,6 +748,7 @@ nav:
- ./api_reference/agent/openai_legacy.md
- ./api_reference/agent/react.md
- Callbacks:
- ./api_reference/callbacks/agentops.md
- ./api_reference/callbacks/aim.md
- ./api_reference/callbacks/argilla.md
- ./api_reference/callbacks/arize_phoenix.md
Expand Down Expand Up @@ -2044,6 +2045,7 @@ plugins:
- ../llama-index-integrations/embeddings/llama-index-embeddings-databricks
- ../llama-index-integrations/llms/llama-index-llms-optimum-intel
- ../llama-index-integrations/llms/llama-index-llms-qianfan
- ../llama-index-integrations/callbacks/llama-index-callbacks-agentops
- redirects:
redirect_maps:
./api/llama_index.vector_stores.MongoDBAtlasVectorSearch.html: api_reference/storage/vector_store/mongodb.md
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.53"
__version__ = "0.10.54"

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.53"
version = "0.10.54"

[tool.poetry.dependencies]
SQLAlchemy = {extras = ["asyncio"], version = ">=1.4.49"}
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-embeddings-fastembed"
readme = "README.md"
version = "0.1.4"
version = "0.1.5"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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-elasticsearch"
readme = "README.md"
version = "0.2.1"
version = "0.2.2"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
2 changes: 1 addition & 1 deletion 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.53"
version = "0.10.54"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
Expand Down
Loading