Skip to content

Commit f7777a2

Browse files
authored
✨ 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
1 parent e5b234b commit f7777a2

File tree

12 files changed

+19
-19
lines changed

12 files changed

+19
-19
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.7.8-rc1
1+
# v0.7.8
22

33
# Base node image
44
FROM node:20-alpine AS node

Dockerfile.multi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Dockerfile.multi
2-
# v0.7.8-rc1
2+
# v0.7.8
33

44
# Base for all builds
55
FROM node:20-alpine AS base-min

api/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librechat/backend",
3-
"version": "v0.7.8-rc1",
3+
"version": "v0.7.8",
44
"description": "",
55
"scripts": {
66
"start": "echo 'please run this from the root directory'",

client/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librechat/frontend",
3-
"version": "v0.7.8-rc1",
3+
"version": "v0.7.8",
44
"description": "",
55
"type": "module",
66
"scripts": {

e2e/jestSetup.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
// v0.7.8-rc1
1+
// v0.7.8
22
// See .env.test.example for an example of the '.env.test' file.
33
require('dotenv').config({ path: './e2e/.env.test' });

package-lock.json

Lines changed: 7 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "LibreChat",
3-
"version": "v0.7.8-rc1",
3+
"version": "v0.7.8",
44
"description": "",
55
"workspaces": [
66
"api",

packages/data-provider/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "librechat-data-provider",
3-
"version": "0.7.81",
3+
"version": "0.7.82",
44
"description": "data services for librechat apps",
55
"main": "dist/index.js",
66
"module": "dist/index.es.js",

packages/data-provider/src/config.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1228,9 +1228,9 @@ export enum TTSProviders {
12281228
/** Enum for app-wide constants */
12291229
export enum Constants {
12301230
/** Key for the app's version. */
1231-
VERSION = 'v0.7.8-rc1',
1231+
VERSION = 'v0.7.8',
12321232
/** Key for the Custom Config's version (librechat.yaml). */
1233-
CONFIG_VERSION = '1.2.4',
1233+
CONFIG_VERSION = '1.2.5',
12341234
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */
12351235
NO_PARENT = '00000000-0000-0000-0000-000000000000',
12361236
/** Standard value for the initial conversationId before a request is sent */

packages/data-schemas/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@librechat/data-schemas",
3-
"version": "0.0.6",
3+
"version": "0.0.7",
44
"description": "Mongoose schemas and models for LibreChat",
55
"type": "module",
66
"main": "dist/index.cjs",

packages/mcp/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "librechat-mcp",
3-
"version": "1.2.1",
3+
"version": "1.2.2",
44
"type": "commonjs",
55
"description": "MCP services for LibreChat",
66
"main": "dist/index.js",

packages/mcp/src/connection.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ export class MCPConnection extends EventEmitter {
6868
this.client = new Client(
6969
{
7070
name: 'librechat-mcp-client',
71-
version: '1.2.1',
71+
version: '1.2.2',
7272
},
7373
{
7474
capabilities: {},

0 commit comments

Comments
 (0)