Skip to content

Commit 9eeec6b

Browse files
authored
✨ v0.8.3-rc1 (#11856)
* 🔧 chore: Update configuration version to 1.3.4 in librechat.example.yaml and data-provider config.ts - Bumped the configuration version in both librechat.example.yaml and data-provider/src/config.ts to 1.3.4. - Added new options for creating prompts and agents in the interface section of the YAML configuration. - Updated capabilities list in the endpoints section to include 'deferred_tools'. * 🔧 chore: Bump version to 0.8.3-rc1 across multiple packages and update related configurations - Updated version to 0.8.3-rc1 in bun.lock, package.json, and various package.json files for frontend, backend, and data provider. - Adjusted Dockerfile and Dockerfile.multi to reflect the new version. - Incremented version for @librechat/api from 1.7.22 to 1.7.23 and for @librechat/client from 0.4.51 to 0.4.52. - Updated appVersion in helm Chart.yaml to 0.8.3-rc1. - Enhanced test configuration to align with the new version. * 🔧 chore: Update version to 0.8.300 across multiple packages - Bumped version to 0.8.300 in bun.lock, package-lock.json, and package.json for the data provider. - Ensured consistency in versioning across the frontend, backend, and data provider packages. * 🔧 chore: Bump package versions in bun.lock - Updated version for @librechat/api from 1.7.22 to 1.7.23. - Incremented version for @librechat/client from 0.4.51 to 0.4.52. - Bumped version for @librechat/data-schemas from 0.0.35 to 0.0.36.
1 parent 50a48ef commit 9eeec6b

File tree

17 files changed

+41
-32
lines changed

17 files changed

+41
-32
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v0.8.2
1+
# v0.8.3-rc1
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.8.2
2+
# v0.8.3-rc1
33

44
# Set configurable max-old-space-size with default
55
ARG NODE_MAX_OLD_SPACE_SIZE=6144

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.8.2",
3+
"version": "v0.8.3-rc1",
44
"description": "",
55
"scripts": {
66
"start": "echo 'please run this from the root directory'",

api/server/services/initializeMCPs.spec.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
*
44
* These tests verify that MCPServersRegistry and MCPManager are ALWAYS initialized,
55
* even when no explicitly configured MCP servers exist. This is critical for the
6-
* "Dynamic MCP Server Management" feature (v0.8.2-rc1) which allows users to
7-
* add MCP servers via the UI without requiring explicit configuration.
6+
* "Dynamic MCP Server Management" feature (introduced in `0.8.2-rc1` release) which
7+
* allows users to add MCP servers via the UI without requiring explicit configuration.
88
*
99
* Bug fixed: Previously, MCPManager was only initialized when mcpServers existed
1010
* in librechat.yaml, causing "MCPManager has not been initialized" errors when

bun.lock

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

client/jest.config.cjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/** v0.8.2 */
1+
/** v0.8.3-rc1 */
22
module.exports = {
33
roots: ['<rootDir>/src'],
44
testEnvironment: 'jsdom',

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.8.2",
3+
"version": "v0.8.3-rc1",
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.8.2
1+
// v0.8.3-rc1
22
// See .env.test.example for an example of the '.env.test' file.
33
require('dotenv').config({ path: './e2e/.env.test' });

helm/librechat/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ version: 1.9.8
2323
# It is recommended to use it with quotes.
2424

2525
# renovate: image=ghcr.io/danny-avila/librechat
26-
appVersion: "v0.8.2"
26+
appVersion: "v0.8.3-rc1"
2727

2828
home: https://www.librechat.ai
2929

librechat.example.yaml

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# https://www.librechat.ai/docs/configuration/librechat_yaml
33

44
# Configuration version (required)
5-
version: 1.2.1
5+
version: 1.3.4
66

77
# Cache settings: Set to true to enable caching
88
cache: true
@@ -87,12 +87,14 @@ interface:
8787
presets: true
8888
prompts:
8989
use: true
90+
create: true
9091
share: false
9192
public: false
9293
bookmarks: true
9394
multiConvo: true
9495
agents:
9596
use: true
97+
create: true
9698
share: false
9799
public: false
98100
peoplePicker:
@@ -102,6 +104,13 @@ interface:
102104
marketplace:
103105
use: false
104106
fileCitations: true
107+
# Remote Agents configuration
108+
# Controls user permissions for remote agents with external API support
109+
# remoteAgents:
110+
# use: false
111+
# create: false
112+
# share: false
113+
# public: false
105114
# MCP Servers configuration example
106115
# mcpServers:
107116
# Controls user permissions for MCP (Model Context Protocol) server management
@@ -264,7 +273,7 @@ endpoints:
264273
# # Set to 0.0 to show all sources (no filtering), or higher like 0.7 for stricter filtering
265274
# minRelevanceScore: 0.45
266275
# # (optional) Agent Capabilities available to all users. Omit the ones you wish to exclude. Defaults to list below.
267-
# capabilities: ["execute_code", "file_search", "actions", "tools"]
276+
# capabilities: ["deferred_tools", "execute_code", "file_search", "actions", "tools"]
268277

269278
# Anthropic endpoint configuration with Vertex AI support
270279
# Use this to run Anthropic Claude models through Google Cloud Vertex AI

0 commit comments

Comments
 (0)