-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
220 changed files
with
5,007 additions
and
4,656 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
--- | ||
title: 'V4.8.5(进行中)' | ||
description: 'FastGPT V4.8.5 更新说明' | ||
icon: 'upgrade' | ||
draft: false | ||
toc: true | ||
weight: 820 | ||
--- | ||
|
||
## 升级指南 | ||
|
||
### 1. 做好数据库备份 | ||
|
||
### 2. 修改镜像 | ||
|
||
- fastgpt 镜像 tag 修改成 v4.8.5-alpha | ||
<!-- - fastgpt-sandbox 镜像 tag 修改成 v4.8.5 (选择性,无变更) --> | ||
<!-- - 商业版镜像 tag 修改成 v4.8.5 --> | ||
|
||
### 3. 执行初始化 | ||
|
||
从任意终端,发起 1 个 HTTP 请求。其中 {{rootkey}} 替换成环境变量里的 `rootkey`;{{host}} 替换成**FastGPT 域名**。 | ||
|
||
```bash | ||
curl --location --request POST 'https://{{host}}/api/admin/initv485' \ | ||
--header 'rootkey: {{rootkey}}' \ | ||
--header 'Content-Type: application/json' | ||
``` | ||
|
||
会把插件的数据表合并到应用中,插件表不会删除。 | ||
|
||
## V4.8.5 更新说明 | ||
|
||
1. 新增 - 合并插件和应用,统一成工作台 | ||
2. 修复 - SSR渲染 | ||
3. 修复 - 定时任务无法实际关闭 | ||
4. 修复 - 输入引导特殊字符导致正则报错 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import { ParentIdType } from 'common/parentFolder/type'; | ||
import { AppSchema } from './type'; | ||
import { AppTypeEnum } from './constants'; | ||
|
||
export type CreateAppProps = { | ||
parentId?: ParentIdType; | ||
name?: string; | ||
avatar?: string; | ||
intro?: string; | ||
type?: AppTypeEnum; | ||
modules: AppSchema['modules']; | ||
edges?: AppSchema['edges']; | ||
}; | ||
export type CreateHttpPluginChildrenPros = Omit<CreateAppProps, 'type'> & { | ||
parentId: ParentIdType; | ||
name: string; | ||
intro: string; | ||
avatar: string; | ||
modules: AppSchema['modules']; | ||
edges: AppSchema['edges']; | ||
pluginData: { | ||
pluginUniId: string; | ||
}; | ||
}; |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
import { StoreNodeItemType } from '../workflow/type'; | ||
import { StoreEdgeItemType } from '../workflow/type/edge'; | ||
import { AppChatConfigType } from './type'; | ||
import { AppChatConfigType, AppSchema } from './type'; | ||
|
||
export type AppVersionSchemaType = { | ||
_id: string; | ||
appId: string; | ||
time: Date; | ||
nodes: StoreNodeItemType[]; | ||
edges: StoreEdgeItemType[]; | ||
chatConfig: AppChatConfigType; | ||
nodes: AppSchema['modules']; | ||
edges: AppSchema['edges']; | ||
chatConfig: AppSchema['chatConfig']; | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,3 +118,4 @@ export enum FlowNodeTypeEnum { | |
} | ||
|
||
export const EDGE_TYPE = 'default'; | ||
export const defaultNodeVersion = '481'; |
Oops, something went wrong.