github langgenius/dify 0.11.2
v0.11.2

9 hours ago

✨ What’s New in v0.11.2? ✨

Important

Heads up! Starting with the next minor version, we'll no longer support Python 3.10. Make sure to upgrade to Python 3.11 or 3.12 to stay current with our updates.

Version 0.11.2 is here with new models, tools, improvements, and bug fixes for a smoother experience. Here’s what’s new:

🚀 New Features

⚙️ Enhancements

  • Added an inverted chat color theme toggle by @fujita-h (#10558).
  • Made CODE_EXECUTION_TIMEOUT configurable via .env by @lzzzzzzzzz (#10688).
  • Enabled up/down arrow key navigation for group questions, improving debugging by @dajianguo (#10793).

🛠️ Bug Fixes

Enjoy these updates and streamline your workflows with the new features and fixes. Happy coding!


Upgrade Guide

Docker compose deployments

  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 main branch

    git checkout main
    git pull origin main
  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 release branch:

    git checkout 0.11.2
  3. Update Python dependencies:

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

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


What's Changed

New Contributors

Full Changelog: 0.11.1...0.11.2

Don't miss a new dify release

NewReleases is sending notifications on new releases.