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
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.
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.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 feat: implement forgot password feature #5534
Finally, you can reset your password by sending an email if you forget it.
Nominatim OpenStreetMap Search Tool by @chazzhou in feat: Nominatim OpenStreetMap search tool #5789
Firecrawl Tools: Scrape and Search by @ahasasjeb in Add 2 firecrawl tools : Scrape and Search #6016
Oracle OCI Object Storage Support by @hymvp in add support oracle oci object storage #5616
Llama 3 and Mixtral Model Options in
ddgo_ai.yaml
by @k8scat in feat: add Llama 3 and Mixtral model options to ddgo_ai.yaml #5979Moonshot and GLM Base Models for Volcengine Provider by @sinomoe in feat: support moonshot and glm base models for volcengine provider #6029
⚙️ Enhancements
Correctly Delete Applications Using Celery Workers by @chazzhou in feat: correctly delete applications using Celery workers #5787
More completely remove App associated database records using celery queue.
WeCom Bot Markdown Message Support by @quicksandznzn in Enhance: tools wecom bot support markdown message #5791
Claude3 Function Calling by @longzhihun in feat: add claude3 function calling #5889
Request Params Field in Jina Reader Tool by XiaoLey in feat: add request_params field to jina_reader tool #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.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
docker-entrypoint.sh
for nginx and ssrf-proxy services causing startup failures by @takatost in fix: can’t change exec permissions after mountingdocker-entrypoint.sh
for nginx and ssrf-proxy services causing startup failures #5776dify_config
with Pydantic. by @laipz8200 in refactor: Create adify_config
with Pydantic. #5938New Contributors
Full Changelog: 0.6.12-fix1...0.6.13
This discussion was created from the release v0.6.13.
Beta Was this translation helpful? Give feedback.
All reactions