|
2 | 2 |
|
3 | 3 | This is a collection of small guides and recipes to help you get started with Chroma. |
4 | 4 |
|
5 | | -Latest ChromaDB version: [1.5.2](https://github.com/chroma-core/chroma/releases/tag/1.5.2) |
| 5 | +Latest ChromaDB version: [1.5.3](https://github.com/chroma-core/chroma/releases/tag/1.5.3) |
6 | 6 |
|
7 | 7 | <div class="api-changelog" markdown="1"> |
8 | 8 |
|
9 | | -??? info "API Changelog (1.5.2, 1.5.1, and 1.5.0)" |
| 9 | +??? info "API Changelog (1.5.3, 1.5.2, 1.5.1, and 1.5.0)" |
| 10 | + |
| 11 | + **Version [1.5.3](https://github.com/chroma-core/chroma/releases/tag/1.5.3) (March 7, 2026)** |
| 12 | + |
| 13 | + | Area | API-facing change | Reference | |
| 14 | + |---|---|---| |
| 15 | + | Collections | Added delete operations with `limit` in server and client APIs | [#6573](https://github.com/chroma-core/chroma/pull/6573), [#6578](https://github.com/chroma-core/chroma/pull/6578) | |
| 16 | + | Python Client | Updated Python packaging compatibility by dropping Pydantic v1 compatibility layer for Python 3.14 support | [#6356](https://github.com/chroma-core/chroma/pull/6356) | |
10 | 17 |
|
11 | 18 | **Version [1.5.2](https://github.com/chroma-core/chroma/releases/tag/1.5.2) (February 27, 2026)** |
12 | 19 |
|
@@ -38,7 +45,7 @@ Latest ChromaDB version: [1.5.2](https://github.com/chroma-core/chroma/releases/ |
38 | 45 |
|
39 | 46 | ## New and Noteworthy |
40 | 47 |
|
41 | | -- 🧨 [Local Markdown CLI with Go `PersistentClient`](strategies/go-local-markdown-cli.md) - New end-to-end local-first CLI example (`index` + `search`) using `chroma-go` with `default_ef`, markdown chunking, and metadata filter DSL (`env:prod`) - 📅`05-Mar-2026` |
| 48 | +- 🧨 [Go Local/Persistent Client Example](strategies/go-local-markdown-cli.md) - A new local/persistent Go client is available, and this page includes a complete example for markdown indexing and search - 📅`05-Mar-2026` |
42 | 49 | - 🖼️ [Image Search](strategies/image-search.md) - Added a multimodal retrieval walkthrough with a full runnable Python example for text-to-image and image-to-image search using OpenCLIP - 📅`26-Feb-2026` |
43 | 50 | - 🔎 [Keyword Search](strategies/keyword-search.md) - Expanded with Rust/Go guidance, regex (`$regex`/`$not_regex`) patterns, composition hints, and full runnable Python/TypeScript/Go/Rust examples - 📅`26-Feb-2026` |
44 | 51 | - ✅ [Metadata Schema Validation](strategies/metadata-schema-validation.md) - Added app-layer metadata contract patterns with short snippets and runnable Python/TypeScript/Go/Rust examples - 📅`26-Feb-2026` |
@@ -73,10 +80,11 @@ ChromaDB. |
73 | 80 |
|
74 | 81 | ## Running ChromaDB |
75 | 82 |
|
| 83 | +- [Running Chroma](running/running-chroma.md) - Main guide for running ChromaDB via CLI, Docker, Docker Compose, and Kubernetes |
76 | 84 | - [Deployment Patterns](running/deployment-patterns.md) - Decide between embedded (`PersistentClient`) and standalone server (`HttpClient`) with copy/paste examples |
77 | | -- [CLI](running/running-chroma.md#chroma-cli) - Running ChromaDB via the CLI |
78 | 85 | - [Docker](running/running-chroma.md#docker) - Running ChromaDB in Docker |
79 | 86 | - [Docker Compose](running/running-chroma.md#docker-compose) - Running ChromaDB in Docker Compose |
| 87 | +- [CLI](running/running-chroma.md#chroma-cli) - Running ChromaDB via the CLI |
80 | 88 | - [Kubernetes](running/running-chroma.md#minikube-with-helm-chart) - Running ChromaDB in Kubernetes (Minikube) |
81 | 89 |
|
82 | 90 | ## Integrations |
|
0 commit comments