npc0-hue
|
17832f2424
|
fix: Dify 1.8.1问题修复
本次提交整合了多个功能改进和问题修复:
主要功能:
- 批量工作流处理功能完善,支持 Excel 上传和进度跟踪
- 管理中心反向代理和转发配置优化
- 用户同步添加互斥锁,防止并发问题
- 计费系统和额度显示优化
- AI 绘图功能扩展
前端改进:
- 文本生成应用显示修复
- 批量任务进度展示优化
- 按钮样式和 CSS 优化,禁止换行
- 多语言支持完善(新增印尼语等)
- 构建镜像逻辑优化
- 批量处理进度管理器实现
后端改进:
- Docker Compose 配置升级
- 队列任务和 Worker Pool 优化
- Admin API 初始化和验证逻辑改进
- 数据库迁移和初始化完善
- 静态变量处理优化
- URL 签名助手实现
- Celery 扩展优化
- 代码和导入包问题修复(idea 自动调整代码位置)
技术改进:
- 兼容性修复 (flask-restx, jschardet)
- 钉钉 Web API 版本更新
- 代码格式化和导入包问题修复
- 日志处理优化
- 工作流循环管理优化
Docker 相关:
- Nginx 配置更新
- 容器启动脚本优化
- 镜像构建流程改进
- docker-compose.dify-plus.yaml 大幅更新
管理后台:
- 工作流批量处理 API 实现
- 工作池初始化
- 批量工作流服务实现
- 转发扩展配置
- 用户服务扩展
|
2025-10-17 23:04:25 +08:00 |
|
npc0-hue
|
f26fe2f4d2
|
Merge tag '1.8.1' into merge-tag-1.8.1
# Conflicts:
# .gitignore
# README.md
# api/.env.example
# api/Dockerfile
# api/commands.py
# api/configs/app_config.py
# api/controllers/console/__init__.py
# api/controllers/console/apikey.py
# api/controllers/console/app/statistic.py
# api/controllers/service_api/app/app.py
# api/controllers/service_api/app/audio.py
# api/controllers/service_api/app/completion.py
# api/controllers/service_api/app/conversation.py
# api/controllers/service_api/app/file.py
# api/controllers/service_api/app/message.py
# api/controllers/service_api/app/workflow.py
# api/controllers/service_api/wraps.py
# api/controllers/web/completion.py
# api/core/app/apps/advanced_chat/app_generator.py
# api/core/app/apps/advanced_chat/generate_task_pipeline.py
# api/core/app/apps/agent_chat/app_generator.py
# api/core/app/apps/workflow/app_generator.py
# api/core/app/apps/workflow/generate_task_pipeline.py
# api/core/app/task_pipeline/workflow_cycle_manage.py
# api/core/helper/code_executor/code_executor.py
# api/core/tools/builtin_tool/providers/code/tools/simple_code.py
# api/core/workflow/nodes/code/code_node.py
# api/docker/entrypoint.sh
# api/events/event_handlers/__init__.py
# api/extensions/ext_celery.py
# api/extensions/ext_commands.py
# api/models/model.py
# api/models/workflow.py
# api/poetry.lock
# api/pyproject.toml
# api/services/app_service.py
# api/services/feature_service.py
# api/services/workspace_service.py
# web/.env.example
# web/Dockerfile
# web/app/(commonLayout)/apps/Apps.tsx
# web/app/components/apps/app-card.tsx
# web/app/components/base/chat/embedded-chatbot/index.tsx
# web/app/components/base/mermaid/index.tsx
# web/app/components/develop/index.tsx
# web/app/components/develop/secret-key/secret-key-modal.tsx
# web/app/components/develop/secret-key/style.module.css
# web/app/components/develop/template/template.zh.mdx
# web/app/components/explore/app-list/index.tsx
# web/app/components/explore/category.tsx
# web/app/components/explore/sidebar/index.tsx
# web/app/components/header/account-dropdown/index.tsx
# web/app/components/header/index.tsx
# web/app/components/share/utils.ts
# web/app/layout.tsx
# web/app/signin/components/mail-and-password-auth.tsx
# web/app/signin/normal-form.tsx
# web/app/signin/page.module.css
# web/context/app-context.tsx
# web/i18n/i18next-config.ts
# web/i18n/ja-JP/login.ts
# web/i18n/ko-KR/login.ts
#
if dify_config.WORKFLOW_LOG_CLEANUP_ENABLED:
# 2:00 AM every day
imports.append("schedule.clean_workflow_runlogs_precise")
beat_schedule["clean_workflow_runlogs_precise"] = {
"task": "schedule.clean_workflow_runlogs_precise.clean_workflow_runlogs_precise",
"schedule": crontab(minute="0", hour="2"),
} web/package.json
# web/pnpm-lock.yaml
# web/types/feature.ts
|
2025-09-25 15:55:13 +08:00 |
|
zxhlyh
|
cfb447fa4e
|
Refactor/model credential (#24994)
|
2025-09-03 13:36:59 +08:00 |
|
GuanMu
|
354cf90ad4
|
Export DSL from history (#24939)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-02 21:36:52 +08:00 |
|
Yongtao Huang
|
6cbc7cdbe6
|
CI: add TS indentation check via esLint (#24810)
|
2025-09-01 15:31:59 +08:00 |
|
Yongtao Huang
|
2b6d8399a4
|
Fix never hit (!code || code.length === 0) (#24860)
|
2025-09-01 09:45:07 +08:00 |
|
Yongtao Huang
|
c98c868426
|
Remove redundant from_variable_selector null-check (#24842)
|
2025-08-31 17:00:13 +08:00 |
|
Yongtao Huang
|
fb88d6035b
|
Fix: rm invalid errorMessage on e.toString() (#24805)
|
2025-08-30 06:18:51 -07:00 |
|
Junyan Qin (Chin)
|
9107f951de
|
feat: oauth provider (#24206)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
Co-authored-by: yessenia <yessenia.contact@gmail.com>
|
2025-08-29 14:10:51 +08:00 |
|
NFish
|
147d4aad15
|
Fix/web app auth error (#24637)
|
2025-08-27 18:00:25 +08:00 |
|
非法操作
|
ee927868ee
|
feat: add multi model credentials (#24451)
Co-authored-by: zxhlyh <jasonapring2015@outlook.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-08-25 16:12:29 +08:00 |
|
quicksand
|
8e01726bac
|
remove: document download file permission (#24459)
|
2025-08-25 15:11:48 +08:00 |
|
Joel
|
f03c3a290f
|
feat: notice of the expire of education verify (#24210)
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
2025-08-20 15:37:46 +08:00 |
|
Joel
|
b4d288448d
|
feat: enchance prompt and code (#23633)
Co-authored-by: stream <stream@dify.ai>
Co-authored-by: Stream <1542763342@qq.com>
Co-authored-by: Stream <Stream_2@qq.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-08-18 12:29:12 +08:00 |
|
Yongtao Huang
|
9848dc471c
|
Fix: narrow beforeRequest hook type to avoid boolean in array (#23860)
Signed-off-by: Yongtao Huang <yongtaoh2022@gmail.com>
Co-authored-by: Yongtao Huang <99629139+hyongtao-db@users.noreply.github.com>
|
2025-08-13 23:28:13 +08:00 |
|
Will
|
223f618ba5
|
Feat/improved mcp timeout configs (#23605)
Co-authored-by: crazywoola <427733928@qq.com>
|
2025-08-12 13:14:00 +08:00 |
|
lyzno1
|
7b6591fce4
|
fix: make TagSelector always visible for accessibility and mobile support (#23515)
|
2025-08-07 09:25:26 +08:00 |
|
Good Wood
|
bcbccaf041
|
fix: fix wrong unicodechar regx (#23468)
|
2025-08-06 09:48:25 +08:00 |
|
yyh
|
d77a23fa53
|
feat: enhance document list navigation and sorting functionality (#23383)
|
2025-08-05 10:19:47 +08:00 |
|
NeatGuyCoding
|
9ec39e5b2e
|
fix: fetchAppWithTags may return empty when apps is over 100 (#23350)
|
2025-08-04 20:20:43 +08:00 |
|
lyzno1
|
ecea3142c9
|
feat(ui): unify tag editing in app sidebar and add management entry to TagFilter (#23325)
|
2025-08-03 18:30:47 +08:00 |
|
Warren Wong
|
8b9e0d7691
|
feat: Add Download Button to UI for Knowledge Resource Source Files (#23320)
|
2025-08-03 16:26:11 +08:00 |
|
GuanMu
|
7138adf691
|
Feat annotations panel (#22968)
|
2025-07-30 13:40:48 +08:00 |
|
Yip Chung Lam
|
ce6d331b43
|
fix: web SSO login redirect to correct basePath and origin (#23058)
|
2025-07-28 18:17:01 +08:00 |
|
zhaobingshuang
|
e54a84792b
|
fix(dataset): CELERY_BROKER uses amqp rabbitmq. When adding document segments in batches and uploading large files, the status will always remain stuck at "In batch processing" #22709 (#23038)
|
2025-07-28 14:24:13 +08:00 |
|
呆萌闷油瓶
|
e7630c0e11
|
feat: clear all annotation (#22878)
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
2025-07-25 18:06:03 +08:00 |
|
呆萌闷油瓶
|
271f626cda
|
fix: type error in list-operator (#22803)
|
2025-07-24 12:21:20 +08:00 |
|
Junyan Qin (Chin)
|
e5644e940d
|
feat: plugin auto upgrade strategy (#19758)
Co-authored-by: Joel <iamjoel007@gmail.com>
Co-authored-by: crazywoola <427733928@qq.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: Novice <novice12185727@gmail.com>
|
2025-07-23 15:33:39 +08:00 |
|
KVOJJJin
|
fe245e6269
|
Perf: remove user profile loading (#22710)
|
2025-07-21 16:35:52 +08:00 |
|
Maries
|
ed2a4c40e2
|
Support OAuth Integration for Plugin Tools (#22550)
Co-authored-by: zxhlyh <jasonapring2015@outlook.com>
Co-authored-by: Yeuoly <admin@srmxy.cn>
|
2025-07-17 17:18:44 +08:00 |
|
zyssyz123
|
550b1d2ba3
|
Feat/change user email (#22213)
Co-authored-by: NFish <douxc512@gmail.com>
Co-authored-by: JzoNg <jzongcode@gmail.com>
Co-authored-by: Garfield Dai <dai.hai@foxmail.com>
|
2025-07-17 10:55:59 +08:00 |
|
NFish
|
15d7b98f1f
|
Perf/web app authrozation (#22524)
|
2025-07-17 10:52:10 +08:00 |
|
qfl
|
003f755e85
|
feat(app): support custom max_active_requests per app (#22073)
|
2025-07-16 15:31:19 +08:00 |
|
baonudesifeizhai
|
704ea782bc
|
feat: auto-fill MCP server description with app description #22443 (#22477)
|
2025-07-16 15:03:33 +08:00 |
|
Joel
|
5cb067d1fc
|
feat: the frontend part of mcp (#22131)
Co-authored-by: jZonG <jzongcode@gmail.com>
Co-authored-by: Novice <novice12185727@gmail.com>
Co-authored-by: nite-knite <nkCoding@gmail.com>
Co-authored-by: Hanqing Zhao <sherry9277@gmail.com>
|
2025-07-10 14:14:02 +08:00 |
|
GuanMu
|
8bdc0cfd14
|
feat: add document pause and resume functionality (#21894)
|
2025-07-04 14:06:47 +08:00 |
|
zxhlyh
|
c75cc75bc9
|
Chore/workflow last run (#21823)
Co-authored-by: Joel <iamjoel007@gmail.com>
|
2025-07-02 17:48:07 +08:00 |
|
Joel
|
c98f6e4efb
|
fix: can not reset system variables (#21750)
|
2025-07-01 16:00:17 +08:00 |
|
NFish
|
482f2b60c6
|
Fix/ serveral bugs fixed in enterprise (#21729)
|
2025-07-01 10:42:11 +08:00 |
|
NFish
|
65810c5e8d
|
fix: keep search params in web app url when needs authorize (#21717)
|
2025-06-30 18:28:31 +08:00 |
|
Yeuoly
|
04a6c958c8
|
feat: add DYNAMIC_SELECT parameter type for dynamic options in parameter entities (#21425)
|
2025-06-26 17:44:14 +08:00 |
|
Joel
|
4cc2303418
|
feat: last run frontend (#21369)
The frontend of feat: Persist Variables for Enhanced Debugging Workflow (#20699).
Co-authored-by: jZonG <jzongcode@gmail.com>
|
2025-06-24 09:10:30 +08:00 |
|
Good Wood
|
3a772620d3
|
feat: add config for max-tree-depth (#21291)
|
2025-06-23 13:55:57 +08:00 |
|
NFish
|
80884c1a78
|
fix: auto redirect to login page if web app needs login (#21096)
|
2025-06-17 11:33:46 +08:00 |
|
NFish
|
ff2bc7ca42
|
Fix/webapp loop login (#21092)
|
2025-06-17 10:45:03 +08:00 |
|
NFish
|
784d5d8586
|
Fix/add webapp no permission page (#20819)
|
2025-06-09 15:44:49 +08:00 |
|
NFish
|
b86843d6f6
|
Fix/webapp access scope (#20109)
|
2025-06-05 10:55:17 +08:00 |
|
zxhlyh
|
e528d3a30f
|
fix: workflow plugins list update (#20357)
|
2025-05-28 17:45:08 +08:00 |
|
Good Wood
|
bd73bb13b9
|
feat: add pagination for plugin page (#20151)
|
2025-05-27 12:54:52 +08:00 |
|
crazywoola
|
3997b491f2
|
Revert "fix: fix duplicate app lose custom image" (#19995)
|
2025-05-20 18:42:59 +08:00 |
|