Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
✨ What’s New in v0.6.11? ✨
Hey everyone, we’ve got a fresh update for you! Version 0.6.11 is here, and it’s packed with new features, enhancements, and fixes. Let’s dive into what’s changed:
🚀 New Features
📜 Knowledge
🔥 Firecrawl Support: Use Firecrawl as a "Sync from website" solution in Knowledge by @iamjoel in feat: support firecrawl frontend code #5226 and @JohnJyong in Feat/firecrawl data source #5232.
🚀 Workflow
Note Support: Add notes directly into your workflows to enhance documentation and readability when editing or reviewing shared DSLs by @zxhlyh in feat: workflow add note node #5164.
🤖 Model Support
🛠️ Tools
🗄️ Vector DB
☁️ AWS
🏗️ API Service Infrastructures
Poetry Support: Initial support for the Poetry build tool by @MatriQ in build: initial support for poetry build tool #4513.
Poetry in CI: Use Poetry as the default build system for dependency installation in CI jobs by @bowenliang123 in build: use Poetry as default build system for dependency installation in CI jobs #5088.
Pydantic Migration: Modernized validation by migrating Pydantic from 1.x to 2.x by @bowenliang123 in improve: mordernizing validation by migrating pydantic from 1.x to 2.x #4592.
Other Enhancements
For additional enhancements and updates, refer to the What's Changed section below.
Upgrade Guide
Docker compose deployments
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:
If using pip
cd api pip install -r requirements.txt
If using poetry
cd api poetry install
Then, let's run the migration script:
If using pip
If using poetry
cd api poetry run python -m flask db upgrade
Finally, run API server, Worker and Web frontend Server again.