github langgenius/dify 0.9.1-fix1
v0.9.1-fix1

12 hours ago

✨ What’s New in v0.9.1-fix1? ✨

Hey everyone, we’ve got some fresh updates with the release of version 0.9.1-fix1. Here’s a quick walkthrough of what’s changed:

Important

This version includes a migration that might update a large volume of messages. If you have a significant amount of message data, please review our changes in #9132 before upgrading.

🛠️ Fixes & Improvements

  • Resolved an issue with the chat API where the conversation/session history wasn't being loaded properly by @xuzuodong in #8965.

🚀 Models

  • Added missing models from the Voyage collection by @CXwudi in #8950.
  • Sorted Gemini models for better organization by @CXwudi in #8951.
  • Introduced qwen2.5-72b and llama3.2 models for OpenRouter by @hwzhuhao in #8956.

This release is all about laying solid groundwork and enhancing the features you already love. Dive in and let us know what you think!


Upgrade Guide

Docker compose deployments

Warning

The docker-compose.yaml has been refactored. If you've made any changes to the file, make sure to check out the "Upgrade to new docker compose deployment" section above for usage and migration tips.

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

    cd docker
    cp docker-compose.yaml docker-compose.yaml.$(date +%s).bak
  2. Get the latest code from the 0.9.1-fix1 branch

    git checkout 0.9.1-fix1
    git pull origin 0.9.1-fix1
  3. Stop the service,Command, please execute in the docker directory

    docker compose down
  4. Back up data

    tar -cvf volumes-$(date +%s).tgz volumes
  5. Upgrade services

    docker compose up -d

Source Code deployments

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

  2. Get the latest code from the 0.9.1-fix1 branch:

    git checkout 0.9.1-fix1
    git pull origin 0.9.1-fix1
  3. Update Python dependencies:

    cd api
    poetry install
  4. Then, let's run the migration script:

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


What's Changed

New Contributors

Full Changelog: 0.9.1...0.9.2

Don't miss a new dify release

NewReleases is sending notifications on new releases.