Skip to content

Commit

Permalink
v0.10.32 (#13119)
Browse files Browse the repository at this point in the history
  • Loading branch information
logan-markewich committed Apr 26, 2024
1 parent fcf1913 commit 7c48797
Show file tree
Hide file tree
Showing 9 changed files with 117 additions and 27 deletions.
31 changes: 31 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# ChangeLog

## [2024-04-25]

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

- Corrected wrong output type for `OutputKeys.from_keys()` (#13086)
- add run_jobs to aws base embedding (#13096)
- allow user to customize the keyword extractor prompt template (#13083)
- (CondenseQuestionChatEngine) Do not condense the question if there's no conversation history (#13069)
- QueryPlanTool: Execute tool calls in subsequent (dependent) nodes in the query plan (#13047)
- Fix for fusion retriever sometime return Nonetype query(s) before similarity search (#13112)

### `llama-index-embeddings-ipex-llm` [0.1.1]

- Support llama-index-embeddings-ipex-llm for Intel GPUs (#13097)

### `llama-index-packs-raft-dataset` [0.1.4]

- Fix bug in raft dataset generator - multiple system prompts (#12751)

### `llama-index-readers-microsoft-sharepoint` [0.2.1]

- Add access control related metadata to SharePoint reader (#13067)

### `llama-index-vector-stores-pinecone` [0.1.6]

- Nested metadata filter support (#13113)

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

- Nested metadata filter support (#13113)

## [2024-04-23]

### `llama-index-core` [0.10.31]
Expand Down
38 changes: 33 additions & 5 deletions SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,39 @@
# Security Policy

## Supported Versions
Before reporting a vulnerability, please review In-Scope Targets and Out-of-Scope Targets below.

Currently, we support security patches by committing changes and bumping the version published to PyPi.
## In-Scope Targets

## Reporting a Vulnerability
The following packages and repositories are eligible for bug bounties:

Found a vulnerability? Please email us:
- llama-index-core
- llama-index-integrations (see exceptions)
- llama-index-networks

- security@llamaindex.ai
## Out of Scope Targets

All out of scope targets defined by huntr as well as:

- **llama-index-experimental**: This repository is for experimental code and is not
eligible for bug bounties, bug reports to it will be marked as interesting or waste of
time and published with no bounty attached.
- **llama-index-integrations/tools**: Community contributed tools are not eligible for bug
bounties. Generally tools interact with the real world. Developers are expected to
understand the security implications of their code and are responsible for the security
of their tools.
- Code documented with security notices. This will be decided done on a case by
case basis, but likely will not be eligible for a bounty as the code is already
documented with guidelines for developers that should be followed for making their
application secure.

## Reporting LlamaCloud Vulnerabilities

Please report security vulnerabilities associated with LlamaCloud by email to `security@llamaindex.ai`.

- LlamaCloud site: https://cloud.llamaindex.ai
- LlamaCloud API: https://api.cloud.llamaindex.ai/docs
- LlamaParse client: https://github.com/run-llama/llama_parse

### Other Security Concerns

For any other security concerns, please contact us at `security@llamaindex.ai`.
31 changes: 31 additions & 0 deletions docs/docs/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,36 @@
# ChangeLog

## [2024-04-25]

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

- Corrected wrong output type for `OutputKeys.from_keys()` (#13086)
- add run_jobs to aws base embedding (#13096)
- allow user to customize the keyword extractor prompt template (#13083)
- (CondenseQuestionChatEngine) Do not condense the question if there's no conversation history (#13069)
- QueryPlanTool: Execute tool calls in subsequent (dependent) nodes in the query plan (#13047)
- Fix for fusion retriever sometime return Nonetype query(s) before similarity search (#13112)

### `llama-index-embeddings-ipex-llm` [0.1.1]

- Support llama-index-embeddings-ipex-llm for Intel GPUs (#13097)

### `llama-index-packs-raft-dataset` [0.1.4]

- Fix bug in raft dataset generator - multiple system prompts (#12751)

### `llama-index-readers-microsoft-sharepoint` [0.2.1]

- Add access control related metadata to SharePoint reader (#13067)

### `llama-index-vector-stores-pinecone` [0.1.6]

- Nested metadata filter support (#13113)

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

- Nested metadata filter support (#13113)

## [2024-04-23]

### `llama-index-core` [0.10.31]
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.31"
__version__ = "0.10.32"

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.31"
version = "0.10.32"

[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-azure-openai"
readme = "README.md"
version = "0.1.7"
version = "0.1.8"

[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-embeddings-openai"
readme = "README.md"
version = "0.1.8"
version = "0.1.9"

[tool.poetry.dependencies]
python = ">=3.8.1,<4.0"
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.31"
version = "0.10.32"

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

Expand Down

0 comments on commit 7c48797

Please sign in to comment.