From f6118879e5b2f7cf04f9357b65debe7f2b291e64 Mon Sep 17 00:00:00 2001 From: Fuegovic <32828263+fuegovic@users.noreply.github.com> Date: Tue, 5 Dec 2023 08:38:41 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=8E=20update:=20meilisearch=20(#1269)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .env.example | 1 - .gitignore | 2 +- docker-compose.yml | 4 ++-- docs/general_info/breaking_changes.md | 5 +++++ 4 files changed, 8 insertions(+), 4 deletions(-) diff --git a/.env.example b/.env.example index 1fe3cfb9a..02dcc799c 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 a6d89a977..14bca1d75 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 da5f5569b..5008f9752 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 ed6a6f1e3..b46bc2dfa 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)