github langgenius/dify 0.12.1
v0.12.1

6 hours ago

Bug Fixes in v0.12.1

  1. Webapp Custom Icons: Fixed display issues for custom icons in the webapp. #11094

  2. Start Form File Handling: Addressed the inability to use files in the Start form. #11112

  3. LLM Memory Processing: Corrected errors in LLM memory handling. #11103 and #11106

  4. Conversation Deletion: Fixed conversation removal issues. #11076

  5. App Creation and Template Import: Resolved errors during app creation and template import. #11091, #11092 and #11108

These fixes ensure improved functionality and reliability across the platform.


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.12.1
  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.12.0...0.12.1

Don't miss a new dify release

NewReleases is sending notifications on new releases.