diff --git a/.env.example b/.env.example index 1fe3cfb9aa..02dcc799cf 100644 --- a/.env.example +++ b/.env.example @@ -77,7 +77,6 @@ BINGAI_TOKEN=user_provided CHATGPT_TOKEN= CHATGPT_MODELS=text-davinci-002-render-sha,gpt-4 - # CHATGPT_REVERSE_PROXY= #============# diff --git a/.gitignore b/.gitignore index a6d89a9771..14bca1d758 100644 --- a/.gitignore +++ b/.gitignore @@ -2,7 +2,7 @@ # Logs data-node -meili_data +meili_data* data/ logs *.log diff --git a/docker-compose.yml b/docker-compose.yml index da5f5569b3..5008f97521 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -57,7 +57,7 @@ services: command: mongod --noauth meilisearch: container_name: chat-meilisearch - image: getmeili/meilisearch:v1.0 + image: getmeili/meilisearch:v1.5 restart: always # ports: # Uncomment this to access meilisearch from outside docker # - 7700:7700 # if exposing these ports, make sure your master key is not the default value @@ -69,4 +69,4 @@ services: - MEILI_HTTP_ADDR=meilisearch:7700 - MEILI_NO_ANALYTICS=true volumes: - - ./meili_data:/meili_data + - ./meili_data_v1.5:/meili_data diff --git a/docs/general_info/breaking_changes.md b/docs/general_info/breaking_changes.md index ed6a6f1e30..b46bc2dfaa 100644 --- a/docs/general_info/breaking_changes.md +++ b/docs/general_info/breaking_changes.md @@ -4,6 +4,11 @@ **If you experience any issues after updating, we recommend clearing your browser cache and cookies.** Certain changes in the updates may impact cookies, leading to unexpected behaviors if not cleared properly. +## v0.6.x + +- **Meilisearch Update**: Following the recent update to Meilisearch, an unused folder named `meili_data` may be present in your root directory. This folder is no longer required and can be **safely deleted** to free up space. +- **New Indexing Data Location**: The indexing data has been relocated. It will now be stored in a new folder named `meili_data_v1.x`, where `1.x` represents the version of Meilisearch. For instance, with the current Meilisearch version `1.5`, the folder will be `meili_data_v1.5`. + ## v0.5.9 - It's now required to set a **JWT_REFRESH_SECRET** in your .env file as of [#927](https://github.com/danny-avila/LibreChat/pull/927)