Skip to content

Commit

Permalink
[RELEASE] 0.5.17 (#3036)
Browse files Browse the repository at this point in the history
Release 0.5.17
  • Loading branch information
itaismith authored Oct 31, 2024
1 parent e8ae5a4 commit cc27ef1
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 6 deletions.
2 changes: 1 addition & 1 deletion chromadb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

__settings = Settings()

__version__ = "0.5.16"
__version__ = "0.5.17"


# Workaround to deal with Colab's old sqlite3 version
Expand Down
2 changes: 1 addition & 1 deletion deployments/aws/chroma.cf.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
"ChromaVersion": {
"Description": "Chroma version to install",
"Type": "String",
"Default": "LATEST_VERSION"
"Default": "0.5.17"
},
"ChromaServerAuthCredentials": {
"Description": "Chroma authentication credentials",
Expand Down
2 changes: 1 addition & 1 deletion deployments/azure/chroma.tfvars.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ machine_type = "Standard_B1s" # Azure VM size
ssh_public_key_path = "~/.ssh/id_rsa.pub" # Path to your SSH public key

instance_name = "chroma-instance"
chroma_version = "0.5.16"
chroma_version = "0.5.17"
chroma_server_auth_credentials = ""
chroma_server_auth_provider = ""
chroma_auth_token_transport_header = ""
Expand Down
2 changes: 1 addition & 1 deletion deployments/azure/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ variable "machine_type" {

variable "chroma_version" {
description = "Chroma version to install"
default = "0.5.16"
default = "0.5.17"
}

variable "chroma_server_auth_credentials" {
Expand Down
2 changes: 1 addition & 1 deletion deployments/gcp/chroma.tfvars
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ project_id = "your-gcp-project-id"
region = "your-region" # e.g., "us-central1"
zone = "your-zone"
machine_type = ""
chroma_version = "0.5.16"
chroma_version = "0.5.17"
chroma_server_auth_credentials = ""
chroma_server_auth_provider = ""
chroma_auth_token_transport_header = ""
Expand Down
2 changes: 1 addition & 1 deletion deployments/gcp/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ variable "machine_type" {

variable "chroma_version" {
description = "Chroma version to install"
default = "0.5.16"
default = "0.5.17"
}

variable "chroma_server_auth_credentials" {
Expand Down
17 changes: 17 additions & 0 deletions docs/docs.trychroma.com/pages/deployment/migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,23 @@ We will aim to provide:

## Migration Log

### v0.5.17

We no longer support sending empty lists or dictionaries for metadata filtering, ID filtering, etc. For example,

```python
collection.get(
ids=["id1", "id2", "id3", ...],
where={}
)
```

is not supported. Instead, use:

```python
collection.get(ids=["id1", "id2", "id3", ...])
```

### v0.5.12

The operators `$ne` (not equal) and `$nin` (not in) in `where` clauses have been updated:
Expand Down

0 comments on commit cc27ef1

Please sign in to comment.