mirror of
https://github.com/labring/FastGPT.git
synced 2026-02-27 01:02:22 +08:00
V4.14.5.1 dev (#6290)
* chore: cherry pick some commits from v4.14.6-dev (#6287) * fix: custom domain limitation (#6265) * fix: system secret (#6259) * fix: system secret * chore: update docs * chore: docs * fix password variable & datetime picker (#6276) * fix password variable & datetime picker * doc * chore: cherry pick some commits from v4.14.6-dev (#6287) * fix: custom domain limitation (#6265) * fix: system secret (#6259) * fix: system secret * chore: update docs * chore: docs * doc * chore: docs --------- Co-authored-by: Finley Ge <32237950+FinleyGe@users.noreply.github.com> Co-authored-by: Finley Ge <finleyge@fastgpt.io> * perf: extname computed (#6285) * perf: extname computed * chore: handle hash or query flags --------- Co-authored-by: Finley Ge <finleyge@fastgpt.io> * chore: docs (#6291) --------- Co-authored-by: heheer <heheer@sealos.io> Co-authored-by: Archer <545436317@qq.com>
This commit is contained in:
@@ -119,6 +119,7 @@ description: FastGPT 文档目录
|
||||
- [/docs/upgrading/4-14/4143](/docs/upgrading/4-14/4143)
|
||||
- [/docs/upgrading/4-14/4144](/docs/upgrading/4-14/4144)
|
||||
- [/docs/upgrading/4-14/4145](/docs/upgrading/4-14/4145)
|
||||
- [/docs/upgrading/4-14/41451](/docs/upgrading/4-14/41451)
|
||||
- [/docs/upgrading/4-14/4146](/docs/upgrading/4-14/4146)
|
||||
- [/docs/upgrading/4-8/40](/docs/upgrading/4-8/40)
|
||||
- [/docs/upgrading/4-8/41](/docs/upgrading/4-8/41)
|
||||
|
||||
48
document/content/docs/upgrading/4-14/41451.mdx
Normal file
48
document/content/docs/upgrading/4-14/41451.mdx
Normal file
@@ -0,0 +1,48 @@
|
||||
---
|
||||
title: 'V4.14.5.1'
|
||||
description: 'FastGPT V4.14.5.1 更新说明'
|
||||
---
|
||||
|
||||
|
||||
## 🚀 新增内容
|
||||
|
||||
1. Markdown 表格支持导出 csv。
|
||||
|
||||
### 1. 更新镜像:
|
||||
|
||||
- 更新 FastGPT 镜像tag: v4.14.5.1
|
||||
- 更新 FastGPT 商业版镜像tag: v4.14.5.1
|
||||
- 更新 fastgpt-plugin 镜像 tag: v0.4.0
|
||||
- mcp_server 无需更新
|
||||
- Sandbox 无需更新
|
||||
- AIProxy 无需更新
|
||||
- mongo 无需更新
|
||||
|
||||
### 2. 执行升级脚本
|
||||
|
||||
从任意终端,发起 1 个 HTTP 请求。其中 `{{rootkey}}` 替换成环境变量里的 `rootkey`;`{{host}}` 替换成**FastGPT 域名**。
|
||||
|
||||
```bash
|
||||
curl --location --request POST 'https://{{host}}/api/admin/initv41451' \
|
||||
--header 'rootkey: {{rootkey}}' \
|
||||
--header 'Content-Type: application/json'
|
||||
```
|
||||
|
||||
1. 迁移系统工具的系统密钥配置
|
||||
|
||||
## ⚙️ 优化
|
||||
|
||||
1. 工作流触摸板移动时,遇到输入框后会被强制阻拦。
|
||||
2. 工作流粘贴节点,精确按鼠标位置粘贴。
|
||||
3. 精确移除请求 LLM 时多余的系统字段,避免部分模型接口报错。
|
||||
4. 使用 path.extname 从 URL 获取文件扩展名
|
||||
|
||||
## 🐛 修复
|
||||
|
||||
1. 系统工具工具集设置系统密钥后,子工具无法读取到设置的系统密钥
|
||||
2. 密码类型的全局变量,必填规则校验错误。
|
||||
3. 时间类型的全局变量,选择月份被遮挡。
|
||||
4. 手动复制弹窗,换行丢失。
|
||||
5. 未传入文件上传类型变量,对话接口报错。
|
||||
|
||||
## 插件
|
||||
@@ -7,6 +7,29 @@ description: 'FastGPT V4.14.6 更新说明'
|
||||
## 🚀 新增内容
|
||||
|
||||
1. Markdown 表格支持导出 csv。
|
||||
2. 系统工具可配置自定义的分类属性
|
||||
|
||||
### 1. 更新镜像:
|
||||
|
||||
- 更新 FastGPT 镜像tag: v4.14.6
|
||||
- 更新 FastGPT 商业版镜像tag: v4.14.6
|
||||
- 更新 fastgpt-plugin 镜像 tag: v0.4.0
|
||||
- mcp_server 无需更新
|
||||
- Sandbox 无需更新
|
||||
- AIProxy 无需更新
|
||||
- mongo 5.x 版本修改成 5.0.32 版本,解决 CVE-2025-14847 漏洞。直接修改镜像 tag 成 `5.0.32`。
|
||||
|
||||
### 2. 执行升级脚本
|
||||
|
||||
从任意终端,发起 1 个 HTTP 请求。其中 `{{rootkey}}` 替换成环境变量里的 `rootkey`;`{{host}}` 替换成**FastGPT 域名**。
|
||||
|
||||
```bash
|
||||
curl --location --request POST 'https://{{host}}/api/admin/initv4146' \
|
||||
--header 'rootkey: {{rootkey}}' \
|
||||
--header 'Content-Type: application/json'
|
||||
```
|
||||
|
||||
1. 迁移系统工具的系统密钥配置
|
||||
|
||||
## ⚙️ 优化
|
||||
|
||||
@@ -16,4 +39,6 @@ description: 'FastGPT V4.14.6 更新说明'
|
||||
|
||||
## 🐛 修复
|
||||
|
||||
1. 系统工具工具集设置系统密钥后,子工具无法读取到设置的系统密钥
|
||||
|
||||
## 插件
|
||||
|
||||
Reference in New Issue
Block a user