diff --git a/api/package.json b/api/package.json index 5f8f1b94d8..ab41b26881 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "@librechat/backend", - "version": "0.5.8", + "version": "0.5.9", "description": "", "scripts": { "start": "echo 'please run this from the root directory'", diff --git a/client/package.json b/client/package.json index 042b6033a8..7199cd60eb 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "@librechat/frontend", - "version": "0.5.8", + "version": "0.5.9", "description": "", "scripts": { "data-provider": "cd .. && npm run build:data-provider", diff --git a/client/src/components/Input/Footer.tsx b/client/src/components/Input/Footer.tsx index 528d1a995f..b69c3faee6 100644 --- a/client/src/components/Input/Footer.tsx +++ b/client/src/components/Input/Footer.tsx @@ -14,7 +14,7 @@ export default function Footer() { rel="noreferrer" className="underline" > - {config?.appTitle || 'LibreChat'} v0.5.8 + {config?.appTitle || 'LibreChat'} v0.5.9 {' - '}. {localize('com_ui_pay_per_call')} diff --git a/docs/general_info/breaking_changes.md b/docs/general_info/breaking_changes.md index 76b3ee05c8..ed6a6f1e30 100644 --- a/docs/general_info/breaking_changes.md +++ b/docs/general_info/breaking_changes.md @@ -4,10 +4,14 @@ **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.5.8 +## 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) - - It's also recommended you set REFRESH_TOKEN_EXPIRY or the default value will be used. +- 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) + - It's also recommended you update your `SESSION_EXPIRY` to a lower value and set `REFRESH_TOKEN_EXPIRY` + + - Default values: session expiry: 15 minutes, refresh token expiry: 7 days + + - *See **[.env.example](https://github.com/danny-avila/LibreChat/blob/1378eb5097b666a4add27923e47be73919957e5b/.env.example#L314)** for exact values in millisecond calculation* ## v0.5.8 diff --git a/package-lock.json b/package-lock.json index 7abad398bb..a499a69b24 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "LibreChat", - "version": "0.5.8", + "version": "0.5.9", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "LibreChat", - "version": "0.5.8", + "version": "0.5.9", "hasInstallScript": true, "license": "ISC", "workspaces": [ @@ -39,7 +39,7 @@ }, "api": { "name": "@librechat/backend", - "version": "0.5.8", + "version": "0.5.9", "license": "ISC", "dependencies": { "@anthropic-ai/sdk": "^0.5.4", @@ -92,7 +92,7 @@ }, "client": { "name": "@librechat/frontend", - "version": "0.5.8", + "version": "0.5.9", "license": "ISC", "dependencies": { "@headlessui/react": "^1.7.13", @@ -23529,7 +23529,7 @@ }, "packages/data-provider": { "name": "librechat-data-provider", - "version": "0.1.8", + "version": "0.1.9", "license": "ISC", "dependencies": { "@tanstack/react-query": "^4.28.0", diff --git a/package.json b/package.json index 745896ddf4..a946c0b5e9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "LibreChat", - "version": "0.5.8", + "version": "0.5.9", "description": "", "workspaces": [ "api", diff --git a/packages/data-provider/package.json b/packages/data-provider/package.json index 5db9e26d35..d248045fd3 100644 --- a/packages/data-provider/package.json +++ b/packages/data-provider/package.json @@ -1,6 +1,6 @@ { "name": "librechat-data-provider", - "version": "0.1.8", + "version": "0.1.9", "description": "data services for librechat apps", "main": "dist/index.js", "module": "dist/index.es.js",