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>
This commit is contained in:
Danny Avila 2025-03-06 14:33:33 -05:00 committed by GitHub
parent 8cb7f34f86
commit 4d04904af3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
12 changed files with 37 additions and 17 deletions

View file

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

View file

@ -1173,7 +1173,7 @@ export enum TTSProviders {
/** Enum for app-wide constants */
export enum Constants {
/** Key for the app's version. */
VERSION = 'v0.7.7-rc1',
VERSION = 'v0.7.7',
/** Key for the Custom Config's version (librechat.yaml). */
CONFIG_VERSION = '1.2.1',
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */

View file

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

View file

@ -45,7 +45,11 @@ export class MCPConnection extends EventEmitter {
iconPath?: string;
timeout?: number;
constructor(serverName: string, private readonly options: t.MCPOptions, private logger?: Logger) {
constructor(
serverName: string,
private readonly options: t.MCPOptions,
private logger?: Logger,
) {
super();
this.serverName = serverName;
this.logger = logger;
@ -54,7 +58,7 @@ export class MCPConnection extends EventEmitter {
this.client = new Client(
{
name: 'librechat-mcp-client',
version: '1.0.0',
version: '1.1.0',
},
{
capabilities: {},