github langgenius/dify 1.1.1
v1.1.1

latest releases: 0.15.6-alpha.1, 1.1.3, 0.15.5...
12 days ago

✨ What’s New in v1.1.1? ✨

We've got some cool updates and fixes in v1.1.1 to keep things running smoother and shinier. Let's dive in:

⚙️ Enhancements

  • Addressed a metadata service API issue so everything stays in sync, thanks to @JohnJyong in #16211.
  • Solved metadata and retrieval bugs with Weaviate by @JohnJyong in #16230.
  • Fixed weight rerank mode information not showing up when creating datasets by @JohnJyong in #16190.
  • Ensured retrieval configurations with empty embedding models still play nice, thanks to another assist from @JohnJyong in #16181.
  • Sorted out some code linting issues, courtesy of @jiangbo721 in #16164.
  • Solved the MAX_TOOLS_NUM environment value issue in dify-web docker by @0fv in #16241.
  • Fixed conversation reset inputs so they function as expected by @ModyQyW in #16233.

Big thanks to all contributors for making v1.1.1 even better! Keep diving into those projects and creating cool things!


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 the API server, Worker, and Web frontend Server.

  2. Get the latest code from the release branch:

    git checkout 1.1.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 the API server, Worker, and Web frontend Server again.


What's Changed

New Contributors

Full Changelog: 1.1.0...1.1.1

Don't miss a new dify release

NewReleases is sending notifications on new releases.