npc0-hue
|
96de05b3cb
|
fix: 修改插件容器镜像位置
|
2025-10-19 09:29:11 +08:00 |
|
npc0-hue
|
23d42b27a1
|
fix: 修改插件容器镜像位置
|
2025-10-19 09:29:11 +08:00 |
|
npc0-hue
|
67cb3b876d
|
fix: 修复后台创建用户和工作流
|
2025-10-19 09:29:11 +08:00 |
|
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 |
|
Stream
|
372a6caf6e
|
chore(version): bump version to 1.8.1 (#25060)
|
2025-09-03 18:54:07 +08:00 |
|
zxhlyh
|
4b27c89b77
|
fix: model credential name (#25081)
Co-authored-by: hjlarry <hjlarry@163.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-03 18:23:57 +08:00 |
|
-LAN-
|
20370b79e9
|
Fix advanced chat workflow event handler signature mismatch (#25078)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-03 16:22:13 +08:00 |
|
dswl23
|
9a30c359f2
|
Fix: handle 204 No Content response in MCP client (#25040)
|
2025-09-03 15:22:42 +08:00 |
|
Asuka Minato
|
ae68bc2441
|
typevar example (#25064)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-03 14:54:38 +08:00 |
|
非法操作
|
69e77cd0df
|
feat: improve multi model credentials (#25009)
Co-authored-by: Claude <noreply@anthropic.com>
|
2025-09-03 13:52:31 +08:00 |
|
-LAN-
|
b17527c32a
|
[Chore/Refactor] Switch from MyPy to Basedpyright for type checking (#25047)
Signed-off-by: -LAN- <laipz8200@outlook.com>
|
2025-09-03 11:52:26 +08:00 |
|
湛露先生
|
7a01b3cd36
|
clean console apis and rag cleans. (#25042)
Signed-off-by: zhanluxianshen <zhanluxianshen@163.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-03 11:25:18 +08:00 |
|
-LAN-
|
9b258f915d
|
chore: translate Chinese comments to English in ClickZetta Volume storage module (#25037)
|
2025-09-03 10:57:58 +08:00 |
|
Will
|
caea6de71f
|
fix: workflow not published (#25030)
|
2025-09-03 10:07:31 +08:00 |
|
NeatGuyCoding
|
ed485f359e
|
feat: add test containers based tests for tools manage service (#25028)
|
2025-09-03 09:20:16 +08:00 |
|
Yongtao Huang
|
0341b20b70
|
Refactor: use DatasourceType.XX.value instead of hardcoded (#25015)
Signed-off-by: Yongtao Huang <yongtaoh2022@gmail.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-03 08:56:48 +08:00 |
|
-LAN-
|
bfe1471a23
|
chore: remove duplicate test helper classes from api root directory (#25024)
|
2025-09-03 08:56:00 +08:00 |
|
Will
|
99f57f5954
|
fix: EndUser is not bound to a Session (#25010)
|
2025-09-02 21:37:21 +08:00 |
|
Will
|
b7211ab9e6
|
fix: xxx is not bound to a Session (#24966)
|
2025-09-02 21:37:06 +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
|
d280f52f61
|
Post fix of #23224 (#25007)
|
2025-09-02 20:59:08 +08:00 |
|
NeatGuyCoding
|
62c24dd395
|
minor fix: fix the check of subscription capacity limit (#24991)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-02 19:14:30 +08:00 |
|
Asuka Minato
|
25bb2b2a8a
|
example add more type check (#24999)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-02 19:13:43 +08:00 |
|
Novice
|
0f1ccd43d9
|
fix: workflow log status filter add parial success status (#24977)
|
2025-09-02 16:24:03 +08:00 |
|
Bowen Liang
|
eafe26f2a5
|
chore: apply ty checks on api code with script and ci action (#24653)
|
2025-09-02 16:05:13 +08:00 |
|
湛露先生
|
3c5b9089af
|
make clean() function in index_processor_base abstractmethod (#24959)
Signed-off-by: zhanluxianshen <zhanluxianshen@163.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-02 14:48:45 +08:00 |
|
lyzno1
|
14f2fdbd94
|
fix: add Indonesian (id-ID) language support and improve language selector (#24951)
|
2025-09-02 14:44:59 +08:00 |
|
-LAN-
|
6ff2b6cd9b
|
Fix: Resolve workflow_node_execution primary key conflicts with UUID v7 (#24643)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-02 14:18:29 +08:00 |
|
Yongtao Huang
|
1865879f69
|
Fix: ensure InstalledApp deletion uses model instances instead of Row (#24942)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-02 11:59:38 +08:00 |
|
Novice
|
35ee380345
|
chore: optimize SQL queries that perform partial full table scans (#24786)
|
2025-09-02 11:46:11 +08:00 |
|
Yongtao Huang
|
8193ee2a9b
|
Migrate SQLAlchemy from 1.x to 2.0 with automated and manual adjustments (#23224)
Co-authored-by: Yongtao Huang <99629139+hyongtao-db@users.noreply.github.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-02 10:30:19 +08:00 |
|
NeatGuyCoding
|
93db8cc6ca
|
Feature add test containers tool transform service (#24927)
|
2025-09-02 09:30:55 +08:00 |
|
Charles Liu
|
4e7bcb3e5a
|
replace the secret field from obfuscated to full-masked value (#24800)
Co-authored-by: charles liu <dearcharles.liu@gmail.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-02 09:19:20 +08:00 |
|
jiangbo721
|
899bcf0be4
|
fix: remove duplicated code (#24893)
|
2025-09-02 08:58:31 +08:00 |
|
Frederick2313072
|
ee936321ad
|
fix:score threshold (#24897)
|
2025-09-02 08:58:14 +08:00 |
|
wlleiiwang
|
95d41b3f06
|
FEAT: Tencent Vector optimize BM25 initialization to reduce loading time (#24915)
Co-authored-by: wlleiiwang <wlleiiwang@tencent.com>
|
2025-09-01 21:08:41 +08:00 |
|
湛露先生
|
367ef38e01
|
fix close session twice. (#24917)
Signed-off-by: zhanluxianshen <zhanluxianshen@163.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-01 21:08:01 +08:00 |
|
耐小心
|
a42189c730
|
fix: prevent database connection leaks in chatflow mode by using Session-managed queries (#24656)
Co-authored-by: 王锶奇 <wangsiqi2@tal.com>
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-01 18:22:42 +08:00 |
|
ZalterCitty
|
f65e134da4
|
fix wrong filter handle for saved messages (#24891)
Co-authored-by: zhuqingchao <zhuqingchao@xiaomi.com>
|
2025-09-01 16:32:08 +08:00 |
|
Frederick2313072
|
b5f8e55049
|
fix:hard-coded top-k fallback issue. (#24879)
|
2025-09-01 15:46:37 +08:00 |
|
Asuka Minato
|
2b2cd9fc9d
|
example enum to StrEnum (#24877)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-01 15:40:26 +08:00 |
|
耐小心
|
6d90cf47d2
|
fix: Fix database connection leak in EasyUIBasedGenerateTaskPipeline (#24815)
|
2025-09-01 14:48:56 +08:00 |
|
木之本澪
|
5ff4822652
|
refactor: migrate marketplace.py from requests to httpx (#24015)
|
2025-09-01 14:28:21 +08:00 |
|
willzhao
|
2a5d167b40
|
[CHORE]: remove redundant-cast (#24807)
|
2025-09-01 14:05:32 +08:00 |
|
NeatGuyCoding
|
a35a18e4f7
|
the conversion OAuthGrantType(parsed_args["grant_type"]) can raise ValueError for invalid values which is not caught and will produce a 500 (#24854)
|
2025-09-01 10:05:54 +08:00 |
|
NeatGuyCoding
|
56a83114c1
|
remove duplicated authorization header handling and bearer should be case-insensitive (#24852)
|
2025-09-01 10:05:19 +08:00 |
|
Asuka Minato
|
c3ab06c27b
|
example of decorator typing (#24857)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-09-01 10:04:24 +08:00 |
|
Asuka Minato
|
2cdc545906
|
model_config = ConfigDict(extra='allow') (#24859)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-08-31 23:21:41 +08:00 |
|
Asuka Minato
|
20b0f41bff
|
Update ast-grep pattern for session.query (#24828)
Co-authored-by: autofix-ci[bot] <114827586+autofix-ci[bot]@users.noreply.github.com>
|
2025-08-31 17:03:51 +08:00 |
|