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’ve got a fresh update for you! Version 0.6.15 is here, and it’s packed with new features, model support, tools, and enhancements. Let’s dive in:
Environment variables can be used to store private information and credentials. They are read-only and can be separated from the DSL file during export.
The secret variable type is used to define sensitive information or data, with DSL settings configured for leak prevention.
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.15? ✨
Hey everyone, we’ve got a fresh update for you! Version 0.6.15 is here, and it’s packed with new features, model support, tools, and enhancements. Let’s dive in:
🚀 New Features
Environment Variables in Workflow: Now you can use environment variables directly in your chatflows/workflows, by @laipz8200 and @JzoNgKVO in Feat/environment variables in workflow #6515.
Environment variables can be used to store private information and credentials. They are read-only and can be separated from the DSL file during export.
The
secret
variable type is used to define sensitive information or data, with DSL settings configured for leak prevention.New Prompt Generator: We’ve introduced a new prompt generator, by @iamjoel in chore: improve prompt auto generator #6514, chore: use node specify llm to auto generate prompt #6525, chore: enchance auto generate prompt #6564, and @ZhouhaoJiang in feat: update prompt generate #6516.
🧠 Models
🛠️ Tools
⚙️ Enhancements
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
mask_authorization_header
because its alwary true. by @laipz8200 in refactor(api/core/workflow/nodes/http_request): Removemask_authorization_header
because its always true. #6379difyChatbotConfig
by @yoyocircle in feat: passing the inputs values usingdifyChatbotConfig
#6376get_any
in some nodes that use object or array. by @laipz8200 in fix(api/nodes): Fallback toget_any
in some nodes that use object or array. #6566to_object
. by @laipz8200 in feat(variables): Supportto_object
. #6572like
feedback to caculate User Satisfaction by @hjlarry in fix: extract onlylike
feedback to caculate User Satisfaction #6553New Contributors
difyChatbotConfig
#6376Full Changelog: 0.6.14...0.6.15
This discussion was created from the release v0.6.15.
Beta Was this translation helpful? Give feedback.
All reactions