v0.7.8 (#7287)

*  v0.7.8

* chore: bump data-provider to v0.7.82

* chore: update CONFIG_VERSION to 1.2.5

* chore: bump librechat-mcp version to 1.2.2

* chore: bump @librechat/data-schemas version to 0.0.7
This commit is contained in:
Danny Avila 2025-05-08 13:28:40 -04:00 committed by GitHub
parent e5b234bc72
commit f7777a2723
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 19 additions and 19 deletions

View file

@ -1,4 +1,4 @@
# v0.7.8-rc1 # v0.7.8
# Base node image # Base node image
FROM node:20-alpine AS node FROM node:20-alpine AS node

View file

@ -1,5 +1,5 @@
# Dockerfile.multi # Dockerfile.multi
# v0.7.8-rc1 # v0.7.8
# Base for all builds # Base for all builds
FROM node:20-alpine AS base-min FROM node:20-alpine AS base-min

View file

@ -1,6 +1,6 @@
{ {
"name": "@librechat/backend", "name": "@librechat/backend",
"version": "v0.7.8-rc1", "version": "v0.7.8",
"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": "v0.7.8-rc1", "version": "v0.7.8",
"description": "", "description": "",
"type": "module", "type": "module",
"scripts": { "scripts": {

View file

@ -1,3 +1,3 @@
// v0.7.8-rc1 // v0.7.8
// See .env.test.example for an example of the '.env.test' file. // See .env.test.example for an example of the '.env.test' file.
require('dotenv').config({ path: './e2e/.env.test' }); require('dotenv').config({ path: './e2e/.env.test' });

14
package-lock.json generated
View file

@ -1,12 +1,12 @@
{ {
"name": "LibreChat", "name": "LibreChat",
"version": "v0.7.8-rc1", "version": "v0.7.8",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "LibreChat", "name": "LibreChat",
"version": "v0.7.8-rc1", "version": "v0.7.8",
"license": "ISC", "license": "ISC",
"workspaces": [ "workspaces": [
"api", "api",
@ -47,7 +47,7 @@
}, },
"api": { "api": {
"name": "@librechat/backend", "name": "@librechat/backend",
"version": "v0.7.8-rc1", "version": "v0.7.8",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@anthropic-ai/sdk": "^0.37.0", "@anthropic-ai/sdk": "^0.37.0",
@ -1090,7 +1090,7 @@
}, },
"client": { "client": {
"name": "@librechat/frontend", "name": "@librechat/frontend",
"version": "v0.7.8-rc1", "version": "v0.7.8",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@ariakit/react": "^0.4.15", "@ariakit/react": "^0.4.15",
@ -43067,7 +43067,7 @@
}, },
"packages/data-provider": { "packages/data-provider": {
"name": "librechat-data-provider", "name": "librechat-data-provider",
"version": "0.7.81", "version": "0.7.82",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"axios": "^1.8.2", "axios": "^1.8.2",
@ -43205,7 +43205,7 @@
}, },
"packages/data-schemas": { "packages/data-schemas": {
"name": "@librechat/data-schemas", "name": "@librechat/data-schemas",
"version": "0.0.6", "version": "0.0.7",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {
"mongoose": "^8.12.1" "mongoose": "^8.12.1"
@ -43431,7 +43431,7 @@
}, },
"packages/mcp": { "packages/mcp": {
"name": "librechat-mcp", "name": "librechat-mcp",
"version": "1.2.1", "version": "1.2.2",
"license": "ISC", "license": "ISC",
"dependencies": { "dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0", "@modelcontextprotocol/sdk": "^1.9.0",

View file

@ -1,6 +1,6 @@
{ {
"name": "LibreChat", "name": "LibreChat",
"version": "v0.7.8-rc1", "version": "v0.7.8",
"description": "", "description": "",
"workspaces": [ "workspaces": [
"api", "api",

View file

@ -1,6 +1,6 @@
{ {
"name": "librechat-data-provider", "name": "librechat-data-provider",
"version": "0.7.81", "version": "0.7.82",
"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",

View file

@ -1228,9 +1228,9 @@ export enum TTSProviders {
/** Enum for app-wide constants */ /** Enum for app-wide constants */
export enum Constants { export enum Constants {
/** Key for the app's version. */ /** Key for the app's version. */
VERSION = 'v0.7.8-rc1', VERSION = 'v0.7.8',
/** Key for the Custom Config's version (librechat.yaml). */ /** 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. */ /** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */
NO_PARENT = '00000000-0000-0000-0000-000000000000', NO_PARENT = '00000000-0000-0000-0000-000000000000',
/** Standard value for the initial conversationId before a request is sent */ /** Standard value for the initial conversationId before a request is sent */

View file

@ -1,6 +1,6 @@
{ {
"name": "@librechat/data-schemas", "name": "@librechat/data-schemas",
"version": "0.0.6", "version": "0.0.7",
"description": "Mongoose schemas and models for LibreChat", "description": "Mongoose schemas and models for LibreChat",
"type": "module", "type": "module",
"main": "dist/index.cjs", "main": "dist/index.cjs",

View file

@ -1,6 +1,6 @@
{ {
"name": "librechat-mcp", "name": "librechat-mcp",
"version": "1.2.1", "version": "1.2.2",
"type": "commonjs", "type": "commonjs",
"description": "MCP services for LibreChat", "description": "MCP services for LibreChat",
"main": "dist/index.js", "main": "dist/index.js",

View file

@ -68,7 +68,7 @@ export class MCPConnection extends EventEmitter {
this.client = new Client( this.client = new Client(
{ {
name: 'librechat-mcp-client', name: 'librechat-mcp-client',
version: '1.2.1', version: '1.2.2',
}, },
{ {
capabilities: {}, capabilities: {},