Skip to content

v0.6.2 EMERGENCY FIX

Compare
Choose a tag to compare
@takatost takatost released this 11 Apr 16:05
· 513 commits to main since this release
6fa0e40

Warning

⚠️ EMERGENCY FIX ⚠️

PLEASE UPGRADE to v0.6.2 AS SOON AS POSSIBLE TO PREVENT DATA LEAKAGE.

Fix the issue where sys.query/sys.files data gets confused with other tasks during high concurrency in workflow/chatflow in #3378.


✨ Spotlight on Dify v0.6.0 ✨

🚀 Introducing Dify Workflow 🚀

Eager to elevate the stability and reproducibility of your LLM applications? The latest release, Dify Workflow, is here to empower you.

Curious for more? Swing by the v0.6.0 Release Notes for the full scoop.


What’s New in v0.6.2?

This update primarily focuses on enhancing system stability and improving user experience. Key updates include:

  • feat: OpenAI gpt-4-turbo & gpt-4-turbo-2024-04-09 support by @Yeuoly in #3263
  • feat: Azure OpenAI gpt-4-turbo-2024-04-09 support by @Kennytian in #3300
  • feat: Add Cohere Command R / R+ model support by @takatost in #3333
  • feat: Add Google gemini-1.5-pro support by @lroolle in #2925
  • feat: Enabled vision feature support of OpenAI Compatible API by @takatost in #3272
  • feat: Agent app support image input for reasoning by @Yeuoly in #3293
  • feat: Update aws bedrock new models by @crazywoola in #3326
  • refactor: Enhanced ReAct mode of Agent app by @Yeuoly in #3355
  • For additional enhancements and updates, refer to the What's Changed section below.

Update Guide

Docker compose deployments:

  1. Get the latest code from the main branch:

    git checkout main
    git pull origin main
  2. Go to the next step and update to the latest image:

    cd docker
    docker compose up -d

Source Code deployments:

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

  2. Get the latest code from the main branch:

    git checkout main
    git pull origin main
  3. Update Python dependencies:

    cd api
    pip install --upgrade -r requirements.txt
  4. Then, let's run the migration script:

    flask db upgrade
  5. Finally, run API server, Worker and Web frontend Server again.

What's Changed

New Contributors

Full Changelog: 0.6.1...0.6.2