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 |
|
Bowen Liang
|
5d16d27962
|
chore: apply static type checks on celery async task dispatches and imports (#24418)
|
2025-08-24 23:07:22 +08:00 |
|
9527MrLi
|
acc8287573
|
feat: Implements periodic deletion of workflow run logs that exceed t… (#23881)
Co-authored-by: shiyun.li973792 <shiyun.li@seres.cn>
Co-authored-by: 1wangshu <suewangswu@gmail.com>
Co-authored-by: Blackoutta <hyytez@gmail.com>
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
|
2025-08-19 09:47:34 +08:00 |
|
Junyan Qin (Chin)
|
e933e25668
|
feat: no longer enable auto upgrade when marketplace is disabled (#24… (#24101)
|
2025-08-18 15:57:33 +08:00 |
|
-LAN-
|
b1b7ff5988
|
feat: add Redis SSL/TLS certificate authentication support (#23624)
|
2025-08-18 10:59:07 +08:00 |
|
GuanMu
|
d8c98001d8
|
fix: Update the scheduling method for timed tasks, (#22779)
|
2025-07-25 16:27:35 +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 |
|
湛露先生
|
9596ffac7a
|
Add Env 'CELERY_SENTINEL_PASSWORD' for celery connect redis sentinel. (#21198)
|
2025-06-27 17:37:11 +08:00 |
|
Dongyu Li
|
5b42e0aebb
|
Feat/queue monitor (#20647)
|
2025-06-04 19:56:34 +08:00 |
|
FamousMai
|
b5aa970766
|
feat: 新增sandbox-full支持
|
2025-03-28 15:18:33 +08:00 |
|
Jyong
|
cf00ee42f5
|
send knowledge base auto disable notification (#12126)
|
2024-12-26 18:14:08 +08:00 |
|
yihong
|
56e15d09a9
|
feat: mypy for all type check (#10921)
|
2024-12-24 18:38:51 +08:00 |
|
Bowen Liang
|
9b46b02717
|
refactor: assembling the app features in modular way (#9129)
Signed-off-by: -LAN- <laipz8200@outlook.com>
Co-authored-by: -LAN- <laipz8200@outlook.com>
|
2024-11-30 23:05:22 +08:00 |
|
Jyong
|
41c6bf5fe4
|
update the scheduler of update_tidb_serverless_status_task to 1/10min (#11135)
|
2024-11-27 17:41:00 +08:00 |
|
Jyong
|
128efc3193
|
Feat/clean message records (#10588)
|
2024-11-18 16:57:39 +08:00 |
|
fdb02983rhy
|
16db2c4e57
|
Fix: Set Celery LOG_File only when available, always log to console (#10563)
|
2024-11-11 23:53:12 +08:00 |
|
liuhaoran
|
7c2a9b0744
|
celery worker log format following LOG_FORMAT env#9404 (#10016)
Signed-off-by: root <root@localhost.localdomain>
Co-authored-by: root <root@localhost.localdomain>
|
2024-11-08 17:12:09 +08:00 |
|
Jyong
|
18106a4fc6
|
add tidb on qdrant type (#9831)
Co-authored-by: Zhaofeng Miao <522856232@qq.com>
|
2024-10-25 13:57:03 +08:00 |
|
Bowen Liang
|
4d9160ca9f
|
refactor: use dify_config to replace legacy usage of flask app's config (#9089)
|
2024-10-22 11:01:32 +08:00 |
|
Zhi
|
d542b15cc0
|
feat: support redis sentinel mode (#7756)
|
2024-09-08 13:23:51 +08:00 |
|
-LAN-
|
3571292fbf
|
chore(api): Introduce Ruff Formatter. (#7291)
|
2024-08-15 12:54:05 +08:00 |
|
Jyong
|
7c397f5722
|
update celery beat scheduler time to env (#6352)
|
2024-07-17 02:31:30 +08:00 |
|
Jyong
|
988aa4b5da
|
update clean_unused_datasets_task timedelta (#6324)
|
2024-07-16 13:43:04 +08:00 |
|
Bowen Liang
|
28089c98c1
|
fix: skip Celery warning by setting broker_connection_retry_on_startup config (#3188)
|
2024-04-09 16:14:43 +08:00 |
|
Jyong
|
5e66a60f1c
|
add embedding cache and clean embedding cache job (#3087)
Co-authored-by: jyong <jyong@dify.ai>
|
2024-04-02 20:46:24 +08:00 |
|
Jyong
|
1716ac562c
|
add clean_unused_datasets_task (#3057)
Co-authored-by: jyong <jyong@dify.ai>
|
2024-04-01 01:34:21 +08:00 |
|
Bowen Liang
|
cc9e74123c
|
improve: introduce isort for linting Python imports (#1983)
|
2024-01-12 12:34:01 +08:00 |
|
Jyong
|
2757494265
|
alter schedule timedelta (#1923)
Co-authored-by: jyong <jyong@dify.ai>
|
2024-01-04 18:10:16 +08:00 |
|
Jyong
|
595e9b25ba
|
Add data clean schedule (#1859)
Co-authored-by: jyong <jyong@dify.ai>
|
2024-01-02 15:29:18 +08:00 |
|
Yuhao
|
f8eefa31fe
|
feat: add redis ssl support (#65)
|
2023-05-17 15:40:21 +08:00 |
|
John Wang
|
db896255d6
|
Initial commit
|
2023-05-15 08:51:32 +08:00 |
|