@lobehub/chat 1.141.5 → 1.141.6

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -145,26 +145,24 @@ jobs:
145
145
  node-version: 22
146
146
  package-manager-cache: false
147
147
 
148
- - name: Install bun
149
- uses: oven-sh/setup-bun@v2
150
- with:
151
- bun-version: 1.2.23
148
+ - name: Install pnpm
149
+ uses: pnpm/action-setup@v4
152
150
 
153
151
  - name: Install deps
154
- run: bun i
152
+ run: pnpm i
155
153
 
156
154
  - name: Lint
157
- run: bun run lint
155
+ run: npm run lint
158
156
 
159
157
  - name: Test Client DB
160
- run: bun run --filter @lobechat/database test:client-db
158
+ run: pnpm --filter @lobechat/database test:client-db
161
159
  env:
162
160
  KEY_VAULTS_SECRET: LA7n9k3JdEcbSgml2sxfw+4TV1AzaaFU5+R176aQz4s=
163
161
  S3_PUBLIC_DOMAIN: https://example.com
164
162
  APP_URL: https://home.com
165
163
 
166
164
  - name: Test Coverage
167
- run: bun run --filter @lobechat/database test:coverage
165
+ run: pnpm --filter @lobechat/database test:coverage
168
166
  env:
169
167
  DATABASE_TEST_URL: postgresql://postgres:postgres@localhost:5432/postgres
170
168
  DATABASE_DRIVER: node
package/CHANGELOG.md CHANGED
@@ -2,6 +2,23 @@
2
2
 
3
3
  # Changelog
4
4
 
5
+ ### [Version 1.141.6](https://github.com/lobehub/lobe-chat/compare/v1.141.5...v1.141.6)
6
+
7
+ <sup>Released on **2025-10-22**</sup>
8
+
9
+ <br/>
10
+
11
+ <details>
12
+ <summary><kbd>Improvements and Fixes</kbd></summary>
13
+
14
+ </details>
15
+
16
+ <div align="right">
17
+
18
+ [![](https://img.shields.io/badge/-BACK_TO_TOP-151515?style=flat-square)](#readme-top)
19
+
20
+ </div>
21
+
5
22
  ### [Version 1.141.5](https://github.com/lobehub/lobe-chat/compare/v1.141.4...v1.141.5)
6
23
 
7
24
  <sup>Released on **2025-10-22**</sup>
package/changelog/v1.json CHANGED
@@ -1,4 +1,9 @@
1
1
  [
2
+ {
3
+ "children": {},
4
+ "date": "2025-10-22",
5
+ "version": "1.141.6"
6
+ },
2
7
  {
3
8
  "children": {
4
9
  "improvements": [
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lobehub/chat",
3
- "version": "1.141.5",
3
+ "version": "1.141.6",
4
4
  "description": "Lobe Chat - an open-source, high-performance chatbot framework that supports speech synthesis, multimodal, and extensible Function Call plugin system. Supports one-click free deployment of your private ChatGPT/LLM web application.",
5
5
  "keywords": [
6
6
  "framework",
@@ -1,7 +1,6 @@
1
1
  'use client';
2
2
 
3
- import { QueryClient } from '@tanstack/query-core';
4
- import { QueryClientProvider } from '@tanstack/react-query';
3
+ import { QueryClient, QueryClientProvider } from '@tanstack/react-query';
5
4
  import React, { PropsWithChildren, useState } from 'react';
6
5
 
7
6
  import { lambdaQuery, lambdaQueryClient } from '@/libs/trpc/client';