chroma: Deprecating versions 0.5.7 thru 0.5.12 (#27305)

**Description:** Deprecated version of Chroma >=0.5.5 <0.5.12 due to a
serious correctness issue that caused some embeddings for deployments
with multiple collections to be lost (read more on the issue in Chroma
repo)
**Issue:** chroma-core/chroma#2922 (fixed by chroma-core/chroma##2923
and released in
[0.5.13](https://github.com/chroma-core/chroma/releases/tag/0.5.13))
**Dependencies:** N/A
**Twitter handle:** `@t_azarov`
This commit is contained in:
Trayan Azarov 2024-10-14 18:56:05 +03:00 committed by GitHub
parent 2197958366
commit 59bbda9ba3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 730 additions and 633 deletions

File diff suppressed because it is too large Load Diff

View File

@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "langchain-chroma"
version = "0.1.4"
version = "0.1.5"
description = "An integration package connecting Chroma and LangChain"
authors = []
readme = "README.md"
@ -47,7 +47,7 @@ addopts = " --strict-markers --strict-config --durations=5"
markers = [ "requires: mark tests as requiring a specific library", "asyncio: mark tests as requiring asyncio", "compile: mark placeholder test used to compile integration tests without running them",]
[tool.poetry.dependencies.chromadb]
version = ">=0.4.0,<0.6.0,!=0.5.4,!=0.5.5"
version = ">=0.4.0,<0.6.0,!=0.5.4,!=0.5.5,!=0.5.7,!=0.5.9,!=0.5.10,!=0.5.11,!=0.5.12"
[tool.poetry.dependencies.fastapi]
version = ">=0.95.2,<1"