Skip to content

Commit af90c17

Browse files
authored
fix: Bumping version to 0.5.13 and making a note about version deprecations (#37)
1 parent 1295d9f commit af90c17

File tree

6 files changed

+15
-11
lines changed

6 files changed

+15
-11
lines changed

docs/core/advanced/wal.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ request (aka transaction) is safely stored before acknowledging back to the user
66
after writing to the WAL, the data is also written to the index. This enables Chroma to serve as real-time search
77
engine, where the data is available for querying immediately after it is written to the WAL.
88

9-
Below is a diagram that illustrates the WAL in ChromaDB (ca. v0.4.22):
9+
Below is a diagram that illustrates the WAL in ChromaDB (ca. v0.5.1322):
1010

1111
![WAL](../../assets/images/WAL.png){: style="width:100%"}
1212

docs/index.md

+5-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,11 @@
22

33
This is a collection of small guides and recipes to help you get started with ChromaDB.
44

5-
Latest ChromaDB version: [0.5.11](https://github.com/chroma-core/chroma/releases/tag/0.5.11)
5+
!!! warning "Critical Fixes"
6+
7+
If you are using Chroma `>=0.5.7` and `<=0.5.13` please upgrade to `0.5.13` as there is a critical bug that can cause data loss. Read more on the [GH Issue](https://github.com/chroma-core/chroma/issues/2922).
8+
9+
Latest ChromaDB version: [0.5.13](https://github.com/chroma-core/chroma/releases/tag/0.5.13)
610

711

812
## New and Noteworthy

docs/running/running-chroma.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Prerequisites:
4040
- Docker - [Overview of Docker Desktop | Docker Docs](https://docs.docker.com/desktop/)
4141

4242
```shell
43-
docker run -d --rm --name chromadb -v ./chroma:/chroma/chroma -e IS_PERSISTENT=TRUE -e ANONYMIZED_TELEMETRY=TRUE chromadb/chroma:0.5.11
43+
docker run -d --rm --name chromadb -v ./chroma:/chroma/chroma -e IS_PERSISTENT=TRUE -e ANONYMIZED_TELEMETRY=TRUE chromadb/chroma:0.5.13
4444
```
4545

4646
Options:
@@ -72,7 +72,7 @@ docker compose up -d --build
7272
If you want to run a specific version of Chroma you can checkout the version tag you need:
7373

7474
```shell
75-
git checkout release/0.5.11
75+
git checkout release/0.5.13
7676
```
7777

7878
### Docker Compose (Without Cloning the Repo)
@@ -93,7 +93,7 @@ networks:
9393
driver: bridge
9494
services:
9595
chromadb:
96-
image: chromadb/chroma:0.5.11
96+
image: chromadb/chroma:0.5.13
9797
volumes:
9898
- ./chromadb:/chroma/chroma
9999
environment:
@@ -106,7 +106,7 @@ services:
106106
- net
107107
```
108108
109-
The above will create a container with the latest Chroma (`chromadb/chroma:0.5.11`), will expose it to port `8000` on
109+
The above will create a container with the latest Chroma (`chromadb/chroma:0.5.13`), will expose it to port `8000` on
110110
the local machine and will persist data in `./chromadb` relative path from where the `docker-compose.yaml` has been ran.
111111

112112
!!! tip "Versioning"
@@ -148,7 +148,7 @@ Get and install the chart:
148148
```bash
149149
helm repo add chroma https://amikos-tech.github.io/chromadb-chart/
150150
helm repo update
151-
helm install chroma chroma/chromadb --set chromadb.apiVersion="0.5.11"
151+
helm install chroma chroma/chromadb --set chromadb.apiVersion="0.5.13"
152152
```
153153

154154
By default the chart will enable authentication in Chroma. To get the token run the following:

docs/security/chroma-ssl-cert.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ You can run Chroma with the SSL/TLS certificate generate above or any other cert
111111

112112
services:
113113
server:
114-
image: chromadb/chroma:0.5.11
114+
image: chromadb/chroma:0.5.13
115115
volumes:
116116
# Be aware that indexed data are located in "/chroma/chroma/"
117117
# Default configuration for persist_directory in chromadb/config.py

docs/security/ssl-proxies.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ services:
104104
sh -c "/usr/local/bin/wait-for-certs.sh && \
105105
/opt/bitnami/envoy/bin/envoy -c /opt/bitnami/envoy/conf/envoy.yaml"
106106
chromadb:
107-
image: chromadb/chroma:0.5.11
107+
image: chromadb/chroma:0.5.13
108108
volumes:
109109
- ./chromadb:/chroma/chroma
110110
environment:
@@ -166,7 +166,7 @@ services:
166166
environment:
167167
- CHROMA_DOMAIN=${CHROMA_DOMAIN:-localhost}
168168
chromadb:
169-
image: chromadb/chroma:0.5.11
169+
image: chromadb/chroma:0.5.13
170170
volumes:
171171
- ./chromadb:/chroma/chroma
172172
environment:

docs/strategies/memory-management.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ To enable the LRU cache the following two settings parameters or environment var
3434

3535
The below code snippets assume you are working with a `PersistentClient` or an `EphemeralClient` instance.
3636

37-
At the time of writing (Chroma v0.4.22), Chroma does not allow you to manually unloading of collections from memory.
37+
At the time of writing (Chroma v0.5.1322), Chroma does not allow you to manually unloading of collections from memory.
3838

3939
Here we provide a simple utility function to help users unload collections from memory.
4040

0 commit comments

Comments
 (0)