Bug Fixes in v0.12.1
-
Webapp Custom Icons: Fixed display issues for custom icons in the webapp. #11094
-
Start Form File Handling: Addressed the inability to use files in the Start form. #11112
-
LLM Memory Processing: Corrected errors in LLM memory handling. #11103 and #11106
-
Conversation Deletion: Fixed conversation removal issues. #11076
-
App Creation and Template Import: Resolved errors during app creation and template import. #11091, #11092 and #11108
These fixes ensure improved functionality and reliability across the platform.
Upgrade Guide
Docker compose deployments
-
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.12.1
-
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.
What's Changed
- fix: drop useless and wrong code for zhipu embedding by @yihong0618 in #11069
- fix: chart tool chinese font display and raise error by @hjlarry in #11058
- Add grok-vision-beta to xAI + Update grok-beta Features by @taowang1993 in #11004
- fix: timezone not imported in conversation service. by @laipz8200 in #11076
- fix: int None will cause error for context size by @yihong0618 in #11055
- fix: update the max tokens configuration for Azure GPT-4o (2024-08-06) to 16384 by @fengjiajie in #11074
- fix: import Explore Apps raise error by @hjlarry in #11091
- Add query_prefix + Return TED Transcript URL for Downstream Scraping Tasks by @taowang1993 in #11090
- SearchApi - Return error message instead of raising a ValueError by @SebastjanPrachovskij in #11083
- fix: site icon not showing by @xuzuodong in #11094
- fix #11091 raise redirect issue by @hjlarry in #11092
- fix: ops_trace_manager
from_end_user_id
by @horochx in #11077 - Fix regenerate themes by @douxc in #11101
- fix: user query be ignored if query_prompt_template is an empty string by @laipz8200 in #11103
- fix(llm_node): Ignore user query when memory is disabled. by @laipz8200 in #11106
- fix(anthropic_llm): Ignore non-text parts in the system prompt. by @laipz8200 in #11107
- fix: app copy raise error by @hjlarry in #11108
- fix: Cannot use files in the user inputs. by @laipz8200 in #11112
- feat: Allow to contains files in the system prompt even model not support. by @laipz8200 in #11111
- fix(llm_node): Ignore file if not supported. by @laipz8200 in #11114
- Add TTS to OpenAI_API_Compatible by @taowang1993 in #11071
- chore: bump to 0.12.1 by @laipz8200 in #11122
New Contributors
- @fengjiajie made their first contribution in #11074
Full Changelog: 0.12.0...0.12.1