github langgenius/dify 0.6.13
v0.6.13

latest releases: 0.10.0-beta2, 0.10.0-beta1, 0.9.1...
3 months ago

✨ What’s New in v0.6.13? ✨

Hey everyone, we’ve just dropped version v0.6.13, and it’s packed with some routine updates and minor fixes. Let’s dive in:

🚀 New Features

  • Forgot Password Feature by @xielong in #5534
    Finally, you can reset your password by sending an email if you forget it.

  • Nominatim OpenStreetMap Search Tool by @chazzhou in #5789

  • Firecrawl Tools: Scrape and Search by @ahasasjeb in #6016

  • Oracle OCI Object Storage Support by @hymvp in #5616

  • Llama 3 and Mixtral Model Options in ddgo_ai.yaml by @k8scat in #5979

  • Moonshot and GLM Base Models for Volcengine Provider by @sinomoe in #6029

⚙️ Enhancements

  • Correctly Delete Applications Using Celery Workers by @chazzhou in #5787
    More completely remove App associated database records using celery queue.

  • WeCom Bot Markdown Message Support by @quicksandznzn in #5791

  • Claude3 Function Calling by @longzhihun in #5889

  • Request Params Field in Jina Reader Tool by XiaoLey in #5610

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.12-fix1...0.6.13

Don't miss a new dify release

NewReleases is sending notifications on new releases.