Skip to content

Commit 4d04904

Browse files
danny-avilagithub-actions[bot]rubentalstra
authored
✨ v0.7.7 (#6206)
* v0.7.7 * chore: Bump librechat-mcp version to 1.1.0 * action: update Unreleased changelog * Update CHANGELOG.md --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Co-authored-by: Ruben Talstra <RubenTalstra1211@outlook.com>
1 parent 8cb7f34 commit 4d04904

File tree

12 files changed

+37
-17
lines changed

12 files changed

+37
-17
lines changed

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
# Changelog
2+
3+
All notable changes to this project will be documented in this file.
4+
5+
## [Unreleased]
6+
7+
### ✨ New Features
8+
9+
- 🪄 feat: Agent Artifacts by **@danny-avila** in [#5804](https://github.com/danny-avila/LibreChat/pull/5804)
10+
11+
### ⚙️ Other Changes
12+
13+
- 🔄 chore: Enforce 18next Language Keys by **@rubentalstra** in [#5803](https://github.com/danny-avila/LibreChat/pull/5803)
14+
- 🔃 refactor: Parent Message ID Handling on Error, Update Translations, Bump Agents by **@danny-avila** in [#5833](https://github.com/danny-avila/LibreChat/pull/5833)
15+
16+
---

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.7.7-rc1
1+
# v0.7.7
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.7-rc1
2+
# v0.7.7
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.7-rc1",
3+
"version": "v0.7.7",
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.7-rc1",
3+
"version": "v0.7.7",
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.7-rc1
1+
// v0.7.7
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: 6 additions & 6 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.7-rc1",
3+
"version": "v0.7.7",
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.6998",
3+
"version": "0.7.7",
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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1173,7 +1173,7 @@ export enum TTSProviders {
11731173
/** Enum for app-wide constants */
11741174
export enum Constants {
11751175
/** Key for the app's version. */
1176-
VERSION = 'v0.7.7-rc1',
1176+
VERSION = 'v0.7.7',
11771177
/** Key for the Custom Config's version (librechat.yaml). */
11781178
CONFIG_VERSION = '1.2.1',
11791179
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */

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.0.0",
3+
"version": "1.1.0",
44
"type": "module",
55
"description": "MCP services for LibreChat",
66
"main": "dist/index.js",

packages/mcp/src/connection.ts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,11 @@ export class MCPConnection extends EventEmitter {
4545
iconPath?: string;
4646
timeout?: number;
4747

48-
constructor(serverName: string, private readonly options: t.MCPOptions, private logger?: Logger) {
48+
constructor(
49+
serverName: string,
50+
private readonly options: t.MCPOptions,
51+
private logger?: Logger,
52+
) {
4953
super();
5054
this.serverName = serverName;
5155
this.logger = logger;
@@ -54,7 +58,7 @@ export class MCPConnection extends EventEmitter {
5458
this.client = new Client(
5559
{
5660
name: 'librechat-mcp-client',
57-
version: '1.0.0',
61+
version: '1.1.0',
5862
},
5963
{
6064
capabilities: {},

0 commit comments

Comments
 (0)