v0.5.9 (#970)

*  v0.5.9

* chore: bump data-provider
This commit is contained in:
Danny Avila 2023-09-18 17:23:32 -04:00 committed by GitHub
parent 1378eb5097
commit 8580f1c3d3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
7 changed files with 17 additions and 13 deletions

View file

@ -1,6 +1,6 @@
{ {
"name": "@librechat/backend", "name": "@librechat/backend",
"version": "0.5.8", "version": "0.5.9",
"description": "", "description": "",
"scripts": { "scripts": {
"start": "echo 'please run this from the root directory'", "start": "echo 'please run this from the root directory'",

View file

@ -1,6 +1,6 @@
{ {
"name": "@librechat/frontend", "name": "@librechat/frontend",
"version": "0.5.8", "version": "0.5.9",
"description": "", "description": "",
"scripts": { "scripts": {
"data-provider": "cd .. && npm run build:data-provider", "data-provider": "cd .. && npm run build:data-provider",

View file

@ -14,7 +14,7 @@ export default function Footer() {
rel="noreferrer" rel="noreferrer"
className="underline" className="underline"
> >
{config?.appTitle || 'LibreChat'} v0.5.8 {config?.appTitle || 'LibreChat'} v0.5.9
</a> </a>
{' - '}. {localize('com_ui_pay_per_call')} {' - '}. {localize('com_ui_pay_per_call')}
</div> </div>

View file

@ -4,10 +4,14 @@
**If you experience any issues after updating, we recommend clearing your browser cache and cookies.** **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. 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 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 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 ## v0.5.8

10
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "LibreChat", "name": "LibreChat",
"version": "0.5.8", "version": "0.5.9",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "LibreChat", "name": "LibreChat",
"version": "0.5.8", "version": "0.5.9",
"hasInstallScript": true, "hasInstallScript": true,
"license": "ISC", "license": "ISC",
"workspaces": [ "workspaces": [
@ -39,7 +39,7 @@
}, },
"api": { "api": {
"name": "@librechat/backend", "name": "@librechat/backend",
"version": "0.5.8", "version": "0.5.9",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@anthropic-ai/sdk": "^0.5.4", "@anthropic-ai/sdk": "^0.5.4",
@ -92,7 +92,7 @@
}, },
"client": { "client": {
"name": "@librechat/frontend", "name": "@librechat/frontend",
"version": "0.5.8", "version": "0.5.9",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@headlessui/react": "^1.7.13", "@headlessui/react": "^1.7.13",
@ -23529,7 +23529,7 @@
}, },
"packages/data-provider": { "packages/data-provider": {
"name": "librechat-data-provider", "name": "librechat-data-provider",
"version": "0.1.8", "version": "0.1.9",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@tanstack/react-query": "^4.28.0", "@tanstack/react-query": "^4.28.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "LibreChat", "name": "LibreChat",
"version": "0.5.8", "version": "0.5.9",
"description": "", "description": "",
"workspaces": [ "workspaces": [
"api", "api",

View file

@ -1,6 +1,6 @@
{ {
"name": "librechat-data-provider", "name": "librechat-data-provider",
"version": "0.1.8", "version": "0.1.9",
"description": "data services for librechat apps", "description": "data services for librechat apps",
"main": "dist/index.js", "main": "dist/index.js",
"module": "dist/index.es.js", "module": "dist/index.es.js",