You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The v0.15.2 release is all about squashing bugs, unlocking new capabilities, and generally making things run smoother. Here's a peek at what's changed:
Poetry Upgrade Alert: Heads up, devs! We've upgraded to Poetry 2.x from 1.x. This upgrade is aimed at making your package management smoother and more efficient, so make sure to update your local setup and check out what's new in Poetry 2.x by @bowenliang123 in #12369.
So, what's next? Get this version in your dev arsenal and explore these cool upgrades in Dify! As always, dive in, have fun, and let us know your thoughts.
Upgrade Guide
Docker compose deployments
Warning
The files in the docker-legacy directory will soon stop being maintained and will be removed from the repository. If you are still using them, please switch to the new version as soon as possible.
Back up your customized docker-compose YAML file (optional)
cd docker
cp docker-compose.yaml docker-compose.yaml.$(date +%s).bak
Get the latest code from the main branch
git checkout main
git pull origin main
Stop the service,Command, please execute in the docker directory
docker compose down
Back up data
tar -cvf volumes-$(date +%s).tgz volumes
Upgrade services
docker compose up -d
Source Code deployments
Stop API server, Worker and Web frontend Server.
Get the latest code from the release branch:
git checkout 0.15.2
Update Python dependencies:
cd api
poetry install
Then, let's run the migration script:
poetry run flask db upgrade
Finally, run API server, Worker and Web frontend Server again.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
✨ What’s New in v0.15.2? ✨
The v0.15.2 release is all about squashing bugs, unlocking new capabilities, and generally making things run smoother. Here's a peek at what's changed:
🚀 New Features
🛠️ Enhancements
🐞 Bug Fixes
🧑💻 Developer Note
Note
Poetry Upgrade Alert: Heads up, devs! We've upgraded to Poetry 2.x from 1.x. This upgrade is aimed at making your package management smoother and more efficient, so make sure to update your local setup and check out what's new in Poetry 2.x by @bowenliang123 in #12369.
So, what's next? Get this version in your dev arsenal and explore these cool upgrades in Dify! As always, dive in, have fun, and let us know your thoughts.
Upgrade Guide
Docker compose deployments
Warning
The files in the docker-legacy directory will soon stop being maintained and will be removed from the repository. If you are still using them, please switch to the new version as soon as possible.
Back up your customized docker-compose YAML file (optional)
Get the latest code from the main branch
Stop the service,Command, please execute in the docker directory
Back up data
tar -cvf volumes-$(date +%s).tgz volumes
Upgrade services
Source Code deployments
Stop API server, Worker and Web frontend Server.
Get the latest code from the release branch:
Update Python dependencies:
cd api poetry install
Then, let's run the migration script:
Finally, run API server, Worker and Web frontend Server again.
What's Changed
New Contributors
Full Changelog: 0.15.1...0.15.2
This discussion was created from the release v0.15.2.
Beta Was this translation helpful? Give feedback.
All reactions