@lobehub/chat 1.132.11 → 1.132.13
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.
- package/CHANGELOG.md +42 -0
- package/Dockerfile +2 -2
- package/Dockerfile.database +2 -2
- package/Dockerfile.pglite +2 -2
- package/README.md +8 -8
- package/README.zh-CN.md +8 -8
- package/changelog/v1.json +14 -0
- package/package.json +1 -1
- package/src/app/[variants]/(main)/settings/proxy/index.tsx +1 -2
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,48 @@
|
|
|
2
2
|
|
|
3
3
|
# Changelog
|
|
4
4
|
|
|
5
|
+
### [Version 1.132.13](https://github.com/lobehub/lobe-chat/compare/v1.132.12...v1.132.13)
|
|
6
|
+
|
|
7
|
+
<sup>Released on **2025-09-25**</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
|
+
[](#readme-top)
|
|
19
|
+
|
|
20
|
+
</div>
|
|
21
|
+
|
|
22
|
+
### [Version 1.132.12](https://github.com/lobehub/lobe-chat/compare/v1.132.11...v1.132.12)
|
|
23
|
+
|
|
24
|
+
<sup>Released on **2025-09-25**</sup>
|
|
25
|
+
|
|
26
|
+
#### 🐛 Bug Fixes
|
|
27
|
+
|
|
28
|
+
- **misc**: Slove setting proxy page with style error.
|
|
29
|
+
|
|
30
|
+
<br/>
|
|
31
|
+
|
|
32
|
+
<details>
|
|
33
|
+
<summary><kbd>Improvements and Fixes</kbd></summary>
|
|
34
|
+
|
|
35
|
+
#### What's fixed
|
|
36
|
+
|
|
37
|
+
- **misc**: Slove setting proxy page with style error, closes [#9417](https://github.com/lobehub/lobe-chat/issues/9417) ([6d3e5d1](https://github.com/lobehub/lobe-chat/commit/6d3e5d1))
|
|
38
|
+
|
|
39
|
+
</details>
|
|
40
|
+
|
|
41
|
+
<div align="right">
|
|
42
|
+
|
|
43
|
+
[](#readme-top)
|
|
44
|
+
|
|
45
|
+
</div>
|
|
46
|
+
|
|
5
47
|
### [Version 1.132.11](https://github.com/lobehub/lobe-chat/compare/v1.132.10...v1.132.11)
|
|
6
48
|
|
|
7
49
|
<sup>Released on **2025-09-24**</sup>
|
package/Dockerfile
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
## Set global build ENV
|
|
2
|
-
ARG NODEJS_VERSION="
|
|
2
|
+
ARG NODEJS_VERSION="24"
|
|
3
3
|
|
|
4
4
|
## Base image for all building stages
|
|
5
5
|
FROM node:${NODEJS_VERSION}-slim AS base
|
|
@@ -126,7 +126,7 @@ ENV NODE_ENV="production" \
|
|
|
126
126
|
NODE_OPTIONS="--dns-result-order=ipv4first --use-openssl-ca" \
|
|
127
127
|
NODE_EXTRA_CA_CERTS="" \
|
|
128
128
|
NODE_TLS_REJECT_UNAUTHORIZED="" \
|
|
129
|
-
|
|
129
|
+
SSL_CERT_FILE="/etc/ssl/certs/ca-certificates.crt"
|
|
130
130
|
|
|
131
131
|
# Make the middleware rewrite through local as default
|
|
132
132
|
# refs: https://github.com/lobehub/lobe-chat/issues/5876
|
package/Dockerfile.database
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
## Set global build ENV
|
|
2
|
-
ARG NODEJS_VERSION="
|
|
2
|
+
ARG NODEJS_VERSION="24"
|
|
3
3
|
|
|
4
4
|
## Base image for all building stages
|
|
5
5
|
FROM node:${NODEJS_VERSION}-slim AS base
|
|
@@ -149,7 +149,7 @@ ENV NODE_ENV="production" \
|
|
|
149
149
|
NODE_OPTIONS="--dns-result-order=ipv4first --use-openssl-ca" \
|
|
150
150
|
NODE_EXTRA_CA_CERTS="" \
|
|
151
151
|
NODE_TLS_REJECT_UNAUTHORIZED="" \
|
|
152
|
-
|
|
152
|
+
SSL_CERT_FILE="/etc/ssl/certs/ca-certificates.crt"
|
|
153
153
|
|
|
154
154
|
# Make the middleware rewrite through local as default
|
|
155
155
|
# refs: https://github.com/lobehub/lobe-chat/issues/5876
|
package/Dockerfile.pglite
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
## Set global build ENV
|
|
2
|
-
ARG NODEJS_VERSION="
|
|
2
|
+
ARG NODEJS_VERSION="24"
|
|
3
3
|
|
|
4
4
|
## Base image for all building stages
|
|
5
5
|
FROM node:${NODEJS_VERSION}-slim AS base
|
|
@@ -128,7 +128,7 @@ ENV NODE_ENV="production" \
|
|
|
128
128
|
NODE_OPTIONS="--dns-result-order=ipv4first --use-openssl-ca" \
|
|
129
129
|
NODE_EXTRA_CA_CERTS="" \
|
|
130
130
|
NODE_TLS_REJECT_UNAUTHORIZED="" \
|
|
131
|
-
|
|
131
|
+
SSL_CERT_FILE="/etc/ssl/certs/ca-certificates.crt"
|
|
132
132
|
|
|
133
133
|
# Make the middleware rewrite through local as default
|
|
134
134
|
# refs: https://github.com/lobehub/lobe-chat/issues/5876
|
package/README.md
CHANGED
|
@@ -382,14 +382,14 @@ In addition, these plugins are not limited to news aggregation, but can also ext
|
|
|
382
382
|
|
|
383
383
|
<!-- PLUGIN LIST -->
|
|
384
384
|
|
|
385
|
-
| Recent Submits
|
|
386
|
-
|
|
|
387
|
-
| [
|
|
388
|
-
| [
|
|
389
|
-
| [
|
|
390
|
-
| [
|
|
391
|
-
|
|
392
|
-
> 📊 Total plugins: [<kbd>**
|
|
385
|
+
| Recent Submits | Description |
|
|
386
|
+
| ----------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------------------------------------------------------------------------------------------- |
|
|
387
|
+
| [Web](https://lobechat.com/discover/plugin/web)<br/><sup>By **Proghit** on **2025-01-24**</sup> | Smart web search that reads and analyzes pages to deliver comprehensive answers from Google results.<br/>`web` `search` |
|
|
388
|
+
| [Bing_websearch](https://lobechat.com/discover/plugin/Bingsearch-identifier)<br/><sup>By **FineHow** on **2024-12-22**</sup> | Search for information from the internet base BingApi<br/>`bingsearch` |
|
|
389
|
+
| [Google CSE](https://lobechat.com/discover/plugin/google-cse)<br/><sup>By **vsnthdev** on **2024-12-02**</sup> | Searches Google through their official CSE API.<br/>`web` `search` |
|
|
390
|
+
| [Tongyi wanxiang Image Generator](https://lobechat.com/discover/plugin/alps-tongyi-image)<br/><sup>By **YoungTx** on **2024-08-09**</sup> | This plugin uses Alibaba's Tongyi Wanxiang model to generate images based on text prompts.<br/>`image` `tongyi` `wanxiang` |
|
|
391
|
+
|
|
392
|
+
> 📊 Total plugins: [<kbd>**41**</kbd>](https://lobechat.com/discover/plugins)
|
|
393
393
|
|
|
394
394
|
<!-- PLUGIN LIST -->
|
|
395
395
|
|
package/README.zh-CN.md
CHANGED
|
@@ -375,14 +375,14 @@ LobeChat 的插件生态系统是其核心功能的重要扩展,它极大地
|
|
|
375
375
|
|
|
376
376
|
<!-- PLUGIN LIST -->
|
|
377
377
|
|
|
378
|
-
| 最近新增
|
|
379
|
-
|
|
|
380
|
-
| [
|
|
381
|
-
| [
|
|
382
|
-
| [
|
|
383
|
-
| [
|
|
384
|
-
|
|
385
|
-
> 📊 Total plugins: [<kbd>**
|
|
378
|
+
| 最近新增 | 描述 |
|
|
379
|
+
| ---------------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------------------------------------------- |
|
|
380
|
+
| [网页](https://lobechat.com/discover/plugin/web)<br/><sup>By **Proghit** on **2025-01-24**</sup> | 智能网页搜索,读取和分析页面,以提供来自 Google 结果的全面答案。<br/>`网页` `搜索` |
|
|
381
|
+
| [必应网页搜索](https://lobechat.com/discover/plugin/Bingsearch-identifier)<br/><sup>By **FineHow** on **2024-12-22**</sup> | 通过 BingApi 搜索互联网上的信息<br/>`bingsearch` |
|
|
382
|
+
| [谷歌自定义搜索引擎](https://lobechat.com/discover/plugin/google-cse)<br/><sup>By **vsnthdev** on **2024-12-02**</sup> | 通过他们的官方自定义搜索引擎 API 搜索谷歌。<br/>`网络` `搜索` |
|
|
383
|
+
| [通义万象图像生成器](https://lobechat.com/discover/plugin/alps-tongyi-image)<br/><sup>By **YoungTx** on **2024-08-09**</sup> | 此插件使用阿里巴巴的通义万象模型根据文本提示生成图像。<br/>`图像` `通义` `万象` |
|
|
384
|
+
|
|
385
|
+
> 📊 Total plugins: [<kbd>**41**</kbd>](https://lobechat.com/discover/plugins)
|
|
386
386
|
|
|
387
387
|
<!-- PLUGIN LIST -->
|
|
388
388
|
|
package/changelog/v1.json
CHANGED
|
@@ -1,4 +1,18 @@
|
|
|
1
1
|
[
|
|
2
|
+
{
|
|
3
|
+
"children": {},
|
|
4
|
+
"date": "2025-09-25",
|
|
5
|
+
"version": "1.132.13"
|
|
6
|
+
},
|
|
7
|
+
{
|
|
8
|
+
"children": {
|
|
9
|
+
"fixes": [
|
|
10
|
+
"Slove setting proxy page with style error."
|
|
11
|
+
]
|
|
12
|
+
},
|
|
13
|
+
"date": "2025-09-25",
|
|
14
|
+
"version": "1.132.12"
|
|
15
|
+
},
|
|
2
16
|
{
|
|
3
17
|
"children": {
|
|
4
18
|
"improvements": [
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@lobehub/chat",
|
|
3
|
-
"version": "1.132.
|
|
3
|
+
"version": "1.132.13",
|
|
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",
|