Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v0.8.5-rc1
# v0.8.5

# Base node image
FROM node:20-alpine AS node
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile.multi
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dockerfile.multi
# v0.8.5-rc1
# v0.8.5

# Set configurable max-old-space-size with default
ARG NODE_MAX_OLD_SPACE_SIZE=6144
Expand Down
2 changes: 1 addition & 1 deletion api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@librechat/backend",
"version": "v0.8.5-rc1",
"version": "v0.8.5",
"description": "",
"scripts": {
"start": "echo 'please run this from the root directory'",
Expand Down
12 changes: 6 additions & 6 deletions bun.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion client/jest.config.cjs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/** v0.8.5-rc1 */
/** v0.8.5 */
module.exports = {
roots: ['<rootDir>/src'],
testEnvironment: 'jsdom',
Expand Down
2 changes: 1 addition & 1 deletion client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@librechat/frontend",
"version": "v0.8.5-rc1",
"version": "v0.8.5",
"description": "",
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion e2e/jestSetup.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
// v0.8.5-rc1
// v0.8.5
// See .env.test.example for an example of the '.env.test' file.
require('dotenv').config({ path: './e2e/.env.test' });
2 changes: 1 addition & 1 deletion helm/librechat/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ version: 2.0.2
# It is recommended to use it with quotes.

# renovate: image=registry.librechat.ai/danny-avila/librechat
appVersion: "v0.8.5-rc1"
appVersion: "v0.8.5"
Copy link

Copilot AI Apr 17, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Chart.yaml comment states the chart version should be incremented for any chart change, including appVersion changes. Since appVersion is updated here, the chart version should also be bumped (otherwise Helm consumers may not receive the update because the chart package version is unchanged).

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@danny-avila Could you please bump the helm chart version?


home: https://www.librechat.ai

Expand Down
2 changes: 1 addition & 1 deletion librechat.example.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# https://www.librechat.ai/docs/configuration/librechat_yaml

# Configuration version (required)
version: 1.3.8
version: 1.3.9

# Cache settings: Set to true to enable caching
cache: true
Expand Down
16 changes: 8 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "LibreChat",
"version": "v0.8.5-rc1",
"version": "v0.8.5",
"description": "",
"packageManager": "npm@11.10.0",
"workspaces": [
Expand Down
2 changes: 1 addition & 1 deletion packages/api/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@librechat/api",
"version": "1.7.28",
"version": "1.7.29",
"type": "commonjs",
"description": "MCP services for LibreChat",
"main": "dist/index.js",
Expand Down
2 changes: 1 addition & 1 deletion packages/client/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@librechat/client",
"version": "0.4.57",
"version": "0.4.58",
"description": "React components for LibreChat",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion packages/data-provider/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "librechat-data-provider",
"version": "0.8.500",
"version": "0.8.501",
"description": "data services for librechat apps",
"main": "dist/index.js",
"module": "dist/index.es.js",
Expand Down
4 changes: 2 additions & 2 deletions packages/data-provider/src/config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1853,9 +1853,9 @@ export enum TTSProviders {
/** Enum for app-wide constants */
export enum Constants {
/** Key for the app's version. */
VERSION = 'v0.8.5-rc1',
VERSION = 'v0.8.5',
/** Key for the Custom Config's version (librechat.yaml). */
CONFIG_VERSION = '1.3.8',
CONFIG_VERSION = '1.3.9',
/** Standard value for the first message's `parentMessageId` value, to indicate no parent exists. */
NO_PARENT = '00000000-0000-0000-0000-000000000000',
/** Standard value to use whatever the submission prelim. `responseMessageId` is */
Expand Down
2 changes: 1 addition & 1 deletion packages/data-schemas/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@librechat/data-schemas",
"version": "0.0.49",
"version": "0.0.50",
"description": "Mongoose schemas and models for LibreChat",
"type": "module",
"main": "dist/index.cjs",
Expand Down
Loading