diff --git a/Dockerfile b/Dockerfile index 870e55cb04..393b35354d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -# v0.7.8-rc1 +# v0.7.8 # Base node image FROM node:20-alpine AS node diff --git a/Dockerfile.multi b/Dockerfile.multi index 1d39bd7193..991f805bec 100644 --- a/Dockerfile.multi +++ b/Dockerfile.multi @@ -1,5 +1,5 @@ # Dockerfile.multi -# v0.7.8-rc1 +# v0.7.8 # Base for all builds FROM node:20-alpine AS base-min diff --git a/api/package.json b/api/package.json index 218a648ee0..06974608e8 100644 --- a/api/package.json +++ b/api/package.json @@ -1,6 +1,6 @@ { "name": "@librechat/backend", - "version": "v0.7.8-rc1", + "version": "v0.7.8", "description": "", "scripts": { "start": "echo 'please run this from the root directory'", diff --git a/client/package.json b/client/package.json index a12a677d74..5fd9729a74 100644 --- a/client/package.json +++ b/client/package.json @@ -1,6 +1,6 @@ { "name": "@librechat/frontend", - "version": "v0.7.8-rc1", + "version": "v0.7.8", "description": "", "type": "module", "scripts": { diff --git a/e2e/jestSetup.js b/e2e/jestSetup.js index 755a0f11bf..6815ad1d40 100644 --- a/e2e/jestSetup.js +++ b/e2e/jestSetup.js @@ -1,3 +1,3 @@ -// v0.7.8-rc1 +// v0.7.8 // See .env.test.example for an example of the '.env.test' file. require('dotenv').config({ path: './e2e/.env.test' }); diff --git a/package-lock.json b/package-lock.json index e660bf71d6..769c6e8a03 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "LibreChat", - "version": "v0.7.8-rc1", + "version": "v0.7.8", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "LibreChat", - "version": "v0.7.8-rc1", + "version": "v0.7.8", "license": "ISC", "workspaces": [ "api", @@ -47,7 +47,7 @@ }, "api": { "name": "@librechat/backend", - "version": "v0.7.8-rc1", + "version": "v0.7.8", "license": "ISC", "dependencies": { "@anthropic-ai/sdk": "^0.37.0", @@ -1090,7 +1090,7 @@ }, "client": { "name": "@librechat/frontend", - "version": "v0.7.8-rc1", + "version": "v0.7.8", "license": "ISC", "dependencies": { "@ariakit/react": "^0.4.15", @@ -43067,7 +43067,7 @@ }, "packages/data-provider": { "name": "librechat-data-provider", - "version": "0.7.81", + "version": "0.7.82", "license": "ISC", "dependencies": { "axios": "^1.8.2", @@ -43205,7 +43205,7 @@ }, "packages/data-schemas": { "name": "@librechat/data-schemas", - "version": "0.0.6", + "version": "0.0.7", "license": "MIT", "dependencies": { "mongoose": "^8.12.1" @@ -43431,7 +43431,7 @@ }, "packages/mcp": { "name": "librechat-mcp", - "version": "1.2.1", + "version": "1.2.2", "license": "ISC", "dependencies": { "@modelcontextprotocol/sdk": "^1.9.0", diff --git a/package.json b/package.json index 63695339b2..e24c5b43cc 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "LibreChat", - "version": "v0.7.8-rc1", + "version": "v0.7.8", "description": "", "workspaces": [ "api", diff --git a/packages/data-provider/package.json b/packages/data-provider/package.json index 91bc237d5c..025dda23df 100644 --- a/packages/data-provider/package.json +++ b/packages/data-provider/package.json @@ -1,6 +1,6 @@ { "name": "librechat-data-provider", - "version": "0.7.81", + "version": "0.7.82", "description": "data services for librechat apps", "main": "dist/index.js", "module": "dist/index.es.js", diff --git a/packages/data-provider/src/config.ts b/packages/data-provider/src/config.ts index dd6cbe87d3..978aea2520 100644 --- a/packages/data-provider/src/config.ts +++ b/packages/data-provider/src/config.ts @@ -1228,9 +1228,9 @@ export enum TTSProviders { /** Enum for app-wide constants */ export enum Constants { /** Key for the app's version. */ - VERSION = 'v0.7.8-rc1', + VERSION = 'v0.7.8', /** Key for the Custom Config's version (librechat.yaml). */ - CONFIG_VERSION = '1.2.4', + CONFIG_VERSION = '1.2.5', /** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */ NO_PARENT = '00000000-0000-0000-0000-000000000000', /** Standard value for the initial conversationId before a request is sent */ diff --git a/packages/data-schemas/package.json b/packages/data-schemas/package.json index 2f35c69c9f..1a0f3fa152 100644 --- a/packages/data-schemas/package.json +++ b/packages/data-schemas/package.json @@ -1,6 +1,6 @@ { "name": "@librechat/data-schemas", - "version": "0.0.6", + "version": "0.0.7", "description": "Mongoose schemas and models for LibreChat", "type": "module", "main": "dist/index.cjs", diff --git a/packages/mcp/package.json b/packages/mcp/package.json index b9acef0c22..840e76f5ee 100644 --- a/packages/mcp/package.json +++ b/packages/mcp/package.json @@ -1,6 +1,6 @@ { "name": "librechat-mcp", - "version": "1.2.1", + "version": "1.2.2", "type": "commonjs", "description": "MCP services for LibreChat", "main": "dist/index.js", diff --git a/packages/mcp/src/connection.ts b/packages/mcp/src/connection.ts index 415059a66f..662d7f932b 100644 --- a/packages/mcp/src/connection.ts +++ b/packages/mcp/src/connection.ts @@ -68,7 +68,7 @@ export class MCPConnection extends EventEmitter { this.client = new Client( { name: 'librechat-mcp-client', - version: '1.2.1', + version: '1.2.2', }, { capabilities: {},