Chat History Not Displayed After Upgrading to v0.7.7 #6914
Replies: 5 comments 6 replies
-
Seems you're running the 0.7.5, 0.7.6 and 0.7.7 (latest) containers alongside the latest dev? |
Beta Was this translation helpful? Give feedback.
-
Originally, I just wanted to use the latest version of LibreChat, but I noticed that the UI looked different compared to what other users have shown. I tried an older version and discovered that the conversation history is incomplete in v0.7.7. |
Beta Was this translation helpful? Give feedback.
-
@Odrec , thank you very much for your attention. The Output of docker ps: ![]() |
Beta Was this translation helpful? Give feedback.
-
If you can, go into your chrome network tab and compare the results of the also i have a suspicion you are not on the same user account when comparing users. you can also check in the network tab with |
Beta Was this translation helpful? Give feedback.
-
Hey I have insatlled and run the lates version of librechat. I just cloned and then ran compose up. it runs but none of my chat gets saved. Im not sure what is the reason. I even tried to add auth to mongodb as below -
to check if it was permissins issue. But still only current chat shows. |
Beta Was this translation helpful? Give feedback.
Uh oh!
There was an error while loading. Please reload this page.
-
What happened?
Description:
After upgrading from LibreChat v0.7.5/v0.7.6 to v0.7.7, all chat history from previous days no longer appears in the sidebar. When I downgrade back to v0.7.5 or v0.7.6, the chat history is visible again.
Environment:
LibreChat version: v0.7.7 (issue), v0.7.6/v0.7.5 (working)
Deployment method: Docker Compose
Operating system: macOS Sequoia Version 15.4
Expected Behavior:
All previous chat history should be visible in the sidebar, as it is in v0.7.5/v0.7.6.
Actual Behavior
Chat history from previous days is not displayed in the sidebar when using v0.7.7. Only new chats created today and yesterday appear.
Base docker-compose.yml
services:
api:
container_name: LibreChat
ports:
- "${PORT}:${PORT}"
depends_on:
- mongodb
# - rag_api
image: ghcr.io/danny-avila/librechat-dev:latest
restart: always
user: "${UID}:${GID}"
extra_hosts:
- "host.docker.internal:host-gateway"
environment:
- HOST=0.0.0.0
- MONGO_URI=mongodb://mongodb:27017/LibreChat
- MEILI_HOST=http://meilisearch:7700
- RAG_PORT=${RAG_PORT:-8000}
- RAG_API_URL=http://rag_api:${RAG_PORT:-8000}
# Add Timezone setting Beijing Time
- TZ=Asia/Shanghai #
volumes:
- type: bind
source: ./.env
target: /app/.env
- ./images:/app/client/public/images
- ./uploads:/app/uploads
- ./logs:/app/api/logs
- ./app_data:/app/data
mongodb:
container_name: chat-mongodb
image: mongo
restart: always
user: "${UID}:${GID}"
volumes:
- ./data-node:/data/db
command: mongod --noauth
meilisearch:
container_name: chat-meilisearch
image: getmeili/meilisearch:v1.12.3
restart: always
user: "${UID}:${GID}"
environment:
- MEILI_HOST=http://meilisearch:7700
- MEILI_NO_ANALYTICS=true
- MEILI_MASTER_KEY=${MEILI_MASTER_KEY}
volumes:
- ./meili_data_v1.12:/meili_data
vectordb:
container_name: vectordb
image: ankane/pgvector:latest
environment:
POSTGRES_DB: mydatabase
POSTGRES_USER: myuser
POSTGRES_PASSWORD: mypassword
restart: always
volumes:
- pgdata2:/var/lib/postgresql/data
rag_api:
container_name: rag_api
image: ghcr.io/danny-avila/librechat-rag-api-dev-lite:latest
environment:
- DB_HOST=vectordb
- RAG_PORT=${RAG_PORT:-8000}
restart: always
depends_on:
- vectordb
env_file:
- .env
volumes:
pgdata2:
Override file (docker-compose.override.yml)
services:
api:
volumes:
- type: bind
source: ./librechat.yaml
target: /app/librechat.yaml
image: ghcr.io/danny-avila/librechat:latest
Version Information
ghcr.io/danny-avila/librechat-dev latest 5e51e467b29c 3 days ago 942MB
ghcr.io/danny-avila/librechat-rag-api-dev-lite latest 49a785a50986 7 days ago 1.28GB
ghcr.io/danny-avila/librechat latest 0eded051543d 5 weeks ago 894MB
ghcr.io/danny-avila/librechat v0.7.6 feb898da4806 3 months ago 898MB
ghcr.io/danny-avila/librechat v0.7.5 70b426c6424b 5 months ago 888MB
Steps to Reproduce
Run LibreChat v0.7.5 or v0.7.6 and I can see all the historic chats.
Update docker-compose.override.yml to use latest image (v0.7.7)
Run docker compose up -d
Open the UI - all previous chat history except for today and yesterday is missing.
What browsers are you seeing the problem on?
Chrome
Relevant log output
Screenshots
v0.7.6 or v0.7.5:
v0.7.7:
Code of Conduct
Beta Was this translation helpful? Give feedback.
All reactions