npc0-hue
|
d6fe1858db
|
fix: React Server Components拒绝服务漏洞 (CVE-2025-55184) 和 CVE-2025-54880
|
2025-12-15 15:44:23 +08:00 |
|
npc0-hue
|
2e70cb143b
|
fix: 修复 cve-2025-55182
|
2025-12-06 11:14:49 +08:00 |
|
npc0-hue
|
bcd2ff4a45
|
fix: 修复text-to-audio 记得添加 api_token
fix: 修复监控界面刷新每次会先显示半秒余额15后才切换为真实值
fix: 添加使用统计
|
2025-12-06 11:14:49 +08:00 |
|
npc0-hue
|
316fa371f2
|
feat: - 非权限用户不显示密钥按钮
- 用户id没有自增解决方案
|
2025-10-28 11:53:05 +08:00 |
|
npc0-hue
|
c507fc2675
|
feat:-皮肤处理和oauth快捷登录
- 同步至应用模板
- 取消同步至应用模板
- 计费唯一索引
|
2025-10-28 11:53:05 +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 |
|
17hz
|
fabb05d792
|
fix: Boolean type control is not displayed (#25031)
Co-authored-by: WTW0313 <twwu@dify.ai>
|
2025-09-03 15:39:09 +08:00 |
|
NeatGuyCoding
|
56342dbb9b
|
Hotfix translation error (#25035)
|
2025-09-03 15:23:04 +08:00 |
|
github-actions[bot]
|
c108855b12
|
chore: translate i18n files (#25061)
Co-authored-by: zxhlyh <16177003+zxhlyh@users.noreply.github.com>
|
2025-09-03 14:48:53 +08:00 |
|
zyileven
|
824e23b0a4
|
fix: Solve the problem of opening remarks appearing in the chat cont… (#25067)
|
2025-09-03 14:48:30 +08:00 |
|
zxhlyh
|
cfb447fa4e
|
Refactor/model credential (#24994)
|
2025-09-03 13:36:59 +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 |
|
17hz
|
590ad057de
|
fix: remove redundant z-index from Field component (#25034)
|
2025-09-03 10:39:07 +08:00 |
|
-LAN-
|
b13c996cb2
|
chore: remove ty type checker from reformat script and pre-commit hooks (#25021)
|
2025-09-03 08:56:23 +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 |
|
17hz
|
e01174c997
|
fix: refresh UI after user profile change (#24998)
|
2025-09-02 18:57:35 +08:00 |
|
17hz
|
8ff33b5862
|
fix: remove unnecessary modal visibility toggle on error in name save (#25001)
|
2025-09-02 18:57:24 +08:00 |
|
17hz
|
9210c7425f
|
fix: ensure the modal closed by level (#24984)
|
2025-09-02 17:06:10 +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 |
|
17hz
|
0b2be36594
|
feat: make secretInput type field prevent browser auto-fill (#24971)
|
2025-09-02 16:04:12 +08:00 |
|
17hz
|
c4c0720ccb
|
refactor: update radio component to handle boolean values instead of numeric (#24956)
|
2025-09-02 15:11:42 +08:00 |
|
17hz
|
29b0500626
|
fix: API Key Authorization Configuration Model Form render default value (#24963)
|
2025-09-02 14:52:05 +08:00 |
|
lyzno1
|
14f2fdbd94
|
fix: add Indonesian (id-ID) language support and improve language selector (#24951)
|
2025-09-02 14:44:59 +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 |
|
17hz
|
8b817da382
|
feat: LLM prompt Jinja2 template now support more variables (#24944)
|
2025-09-02 11:59:31 +08:00 |
|
github-actions[bot]
|
1acd6ba705
|
chore: translate i18n files (#24934)
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
|
2025-09-02 10:16:14 +08:00 |
|
Zhedong Cen
|
7f62c2556c
|
fix(i18n): align zh-Hant indexMethodEconomyTip with zh-Hans (#24933)
|
2025-09-02 09:57:39 +08:00 |
|
znn
|
57ecb1f357
|
downvote with reason (#24922)
|
2025-09-02 09:57:04 +08:00 |
|
Atif
|
d259f6a861
|
fix: API key input uses password type and no autocomplete (#24864)
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
|
2025-09-02 09:37:24 +08:00 |
|
17hz
|
8f9ee6d07d
|
fix: email input cannot scroll (#24930)
|
2025-09-02 09:35:53 +08:00 |
|
17hz
|
a8b3c014dc
|
fix: npx typo error (#24929)
|
2025-09-02 09:20:51 +08:00 |
|
Frederick2313072
|
b5f8e55049
|
fix:hard-coded top-k fallback issue. (#24879)
|
2025-09-01 15:46:37 +08:00 |
|
Yongtao Huang
|
6cbc7cdbe6
|
CI: add TS indentation check via esLint (#24810)
|
2025-09-01 15:31:59 +08:00 |
|
Tianyi Jing
|
f88cdfe48e
|
fix: add missing form for boolean types (#24812)
Signed-off-by: jingfelix <jingfelix@outlook.com>
|
2025-09-01 15:21:36 +08:00 |
|
17hz
|
47eeee36b3
|
chore: pnpx deprecation (#24868)
|
2025-09-01 14:45:44 +08:00 |
|
17hz
|
c3bdd92a6b
|
fix: basepath did not read from the environment variable (#24870)
|
2025-09-01 13:50:33 +08:00 |
|
NeatGuyCoding
|
d6a27bcd11
|
fix translation of all oauth.ts (#24855)
|
2025-09-01 10:04:05 +08:00 |
|
Yongtao Huang
|
2b6d8399a4
|
Fix never hit (!code || code.length === 0) (#24860)
|
2025-09-01 09:45:07 +08:00 |
|
17hz
|
dde17997b7
|
refactor: replace clsx with classnames (#24776)
|
2025-08-31 17:08:29 +08:00 |
|
lyzno1
|
c1a970d43a
|
chore: remove unused i18n keys (#24803)
|
2025-08-31 17:07:15 +08:00 |
|
17hz
|
46ea7d73d5
|
fix: Variable Aggregator cannot select conversation variables (#24793)
|
2025-08-31 17:03:36 +08:00 |
|
lyzno1
|
56a5289a43
|
fix: XSS vulnerability in block-input and support-var-input components (#24835)
|
2025-08-31 17:01:10 +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 |
|
zyileven
|
d25ba94252
|
fix(web): improve floating UI positioning when scrolling (#24595) (#24782)
|
2025-08-29 16:49:13 +08:00 |
|
17hz
|
0284de1ae6
|
refactor: Promote basepath to environment variable (#24445)
Co-authored-by: crazywoola <100913391+crazywoola@users.noreply.github.com>
|
2025-08-29 15:39:37 +08:00 |
|