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
Hey everyone, we’re excited to bring you version 0.7.2 of our platform. This release is packed with new features, enhancements, and bug fixes to make your experience even better. Here’s a quick rundown:
That’s all for this release! As always, thank you for your contributions and feedback. Keep them coming, and happy coding! 🚀
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.
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 main branch:
git checkout main
git pull origin main
Update Python dependencies:
cd api
poetry install
Then, let's run the migration script:
poetry shell
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.7.2? ✨
Hey everyone, we’re excited to bring you version 0.7.2 of our platform. This release is packed with new features, enhancements, and bug fixes to make your experience even better. Here’s a quick rundown:
🚀 New Features
⚙️ Enhancements
UI/UX Improvements:
Backend Improvements:
🛠️ Bug Fixes
📝 Documentation
That’s all for this release! As always, thank you for your contributions and feedback. Keep them coming, and happy coding! 🚀
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.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 main 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
workflow__conversation_variables
toworkflow_conversation_variables
. by @laipz8200 in chore(database): Rename table name fromworkflow__conversation_variables
toworkflow_conversation_variables
. #7432__init__
to Workflow by @laipz8200 in refactor(api/models/workflow.py): Add__init__
to Workflow #7443<AppIcon />
by @xuzuodong in fix: add missed modifications of<AppIcon />
#7512api/core
by @totsukash in refactor: Add @staticmethod decorator inapi/core
#7652New Contributors
Full Changelog: 0.7.1...0.7.2
This discussion was created from the release v0.7.2.
Beta Was this translation helpful? Give feedback.
All reactions