github langgenius/dify 0.6.14
v0.6.14

latest releases: 0.8.2, 0.8.1, 0.8.0...
2 months ago

✨ What’s New in v0.6.14? ✨

Hey everyone, we’ve got some exciting updates in version 0.6.14. Here’s a quick look at what’s new and improved:

🚀 New Features

  • TTS Streaming Config: Text-to-Speech support automatic voice playback and streaming by @ic-xu in #5492.

    image
  • Workflow Enhancements:

    • Added elif support to the if-else workflow node, and expanded condition values from only supporting static values to accepting variables by @zxhlyh in #6072 and @ZhouhaoJiang in #6094.

      image
  • New Integrations:

  • Support for importing DSL from a URL by @takatost in #6287 and @zxhlyh in #6286.

    image
  • Implemented rate limiting for apps to manage the number of concurrent calls to the App Service API by setting the environment variable APP_MAX_ACTIVE_REQUESTS by @liuzhenghua in #5844.

For additional enhancements and updates, refer to the What's Changed section below.


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

    git checkout main
    git pull origin main
  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.6.13...0.6.14

Don't miss a new dify release

NewReleases is sending notifications on new releases.