olliphant dify releases

Dify 1.10.0 (2025-11-13)

公式リリースノート: https://github.com/langgenius/dify/releases/tag/1.10.0

v1.10.0 - Event-Driven Workflows

このバージョンの記事

# テーマ 状態
01-trigger-when-something-happens-then-do-something Trigger = イベント駆動ワークフロー (1.10.0) draft
02-marketplace マーケットプレイス (1.10.0) draft
03-enjoy-the-experience 体験を楽しむ (1.10.0) draft
04-a-big-thanks-to-our-contributor コントリビューターへの感謝 (1.10.0) draft

リリースノート抜粋

Introduce Trigger Functionality

A trigger is a type of Start node that allows your workflow to run automatically—either on a schedule or in response to events from external systems (such as GitHub, Gmail, or your internal services)—without requiring a user action or API call.
Triggers are ideal for automating repetitive processes and integrating workflows with third-party applications to enable seamless data synchronization and processing.

⚡️ Trigger = When something happens → then do something

Triggers form the foundation of event-driven Workflow capabilities and currently support the following types:

These trigger features are only available for Workflows. Chatflow, Agent, and BasicChat currently do not support triggers.

🧩 Marketplace

We provide several popular trigger plugins, which you can explore in our Marketplace.

image

😎 Enjoy the Experience

Sit back, relax, and let your workflows run themselves.

image

A big thanks to our contributor !

Thanks so much for the contributors in #23981 who helps us developed this feature! It's a big deal made by you guys! @ACAne0320 @hjlarry @lyzno1 @CathyL0 @zhangxuhe1

Upgrade Guide

Docker Compose Deployments

  1. Back up your customized docker-compose YAML file (optional)

bash cd docker cp docker-compose.yaml docker-compose.yaml.$(date +%s).bak

  1. Get the latest code from the main branch

bash git checkout main git pull origin main

  1. Stop the service. Please execute in the docker directory

bash docker compose down

  1. Back up data

bash tar -cvf volumes-$(date +%s).tgz volumes

  1. Upgrade services

bash docker compose up -d

Source Code Deployments

  1. Stop the API server, Worker, and Web frontend Server.

  2. Get the latest code from the release branch:

```bash
git checkout 1.10.0

…(以下省略、公式リリースノートを参照)


本記事は非公式まとめです。 正式な機能仕様、互換性、移行手順については Dify 公式ドキュメント および 公式リリースノート を必ずご確認ください。