Skip to content

Commit

Permalink
v0.11.5 (#15834)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich authored Sep 4, 2024
1 parent 177e21a commit ecd9147
Show file tree
Hide file tree
Showing 8 changed files with 182 additions and 163 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-09-04]

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

- remove unneeded assert in property graph retriever (#15832)
- make simple property graphs serialize again (#15833)
- fix json schema for fastapi return types on core components (#15816)

### `llama-index-llms-nvidia` [0.2.2]

- NVIDIA llm: Add Completion for starcoder models (#15802)

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

- add ollama response usage (#15773)

### `llama-index-readers-dashscope` [0.2.1]

- fix pydantic v2 validation errors (#15800)

### `llama-index-readers-discord` [0.2.1]

- fix: convert Document id from int to string in DiscordReader (#15806)

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

- Add MariaDB vector store integration package (#15564)

## [2024-09-02]

### `llama-index-core` [0.11.4]
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-09-04]

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

- remove unneeded assert in property graph retriever (#15832)
- make simple property graphs serialize again (#15833)
- fix json schema for fastapi return types on core components (#15816)

### `llama-index-llms-nvidia` [0.2.2]

- NVIDIA llm: Add Completion for starcoder models (#15802)

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

- add ollama response usage (#15773)

### `llama-index-readers-dashscope` [0.2.1]

- fix pydantic v2 validation errors (#15800)

### `llama-index-readers-discord` [0.2.1]

- fix: convert Document id from int to string in DiscordReader (#15806)

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

- Add MariaDB vector store integration package (#15564)

## [2024-09-02]

### `llama-index-core` [0.11.4]
Expand Down
4 changes: 4 additions & 0 deletions docs/docs/api_reference/storage/vector_store/mariadb.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
::: llama_index.vector_stores.mariadb
options:
members:
- MariaDBVectorStore
3 changes: 3 additions & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -338,6 +338,7 @@ nav:
- ./examples/llm/nvidia.ipynb
- ./examples/llm/nvidia_nim.ipynb
- ./examples/llm/nvidia_tensorrt.ipynb
- ./examples/llm/nvidia_text_completion.ipynb
- ./examples/llm/nvidia_triton.ipynb
- ./examples/llm/oci_genai.ipynb
- ./examples/llm/octoai.ipynb
Expand Down Expand Up @@ -1470,6 +1471,7 @@ nav:
- ./api_reference/storage/vector_store/lancedb.md
- ./api_reference/storage/vector_store/lantern.md
- ./api_reference/storage/vector_store/lindorm.md
- ./api_reference/storage/vector_store/mariadb.md
- ./api_reference/storage/vector_store/metal.md
- ./api_reference/storage/vector_store/milvus.md
- ./api_reference/storage/vector_store/mongodb.md
Expand Down Expand Up @@ -2151,6 +2153,7 @@ plugins:
- ../llama-index-integrations/embeddings/llama-index-embeddings-xinference
- ../llama-index-integrations/postprocessor/llama-index-postprocessor-xinference-rerank
- ../llama-index-integrations/selectors/llama-index-selectors-notdiamond
- ../llama-index-integrations/vector_stores/llama-index-vector-stores-mariadb
- 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.11.4"
__version__ = "0.11.5"

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.4"
version = "0.11.5"

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

Large diffs are not rendered by default.

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.4"
version = "0.11.5"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
llama-index-legacy = "^0.9.48"
llama-index-llms-openai = "^0.2.0"
llama-index-embeddings-openai = "^0.2.0"
llama-index-llms-openai = "^0.2.2"
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-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.4"
llama-index-core = "^0.11.5"
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

0 comments on commit ecd9147

Please sign in to comment.