mirror of
https://github.com/langgenius/dify-official-plugins.git
synced 2026-07-21 17:45:23 -04:00
After upgrading DIFY to version 1.11.0, the Tongyi Qianwen plugin can only use version 0.0.46. Upgrading it causes errors. #904
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Originally created by @jackleehui on GitHub (Dec 26, 2025).
Self Checks
Dify version
1.11.0
Plugin version
0.1.16
Cloud or Self Hosted
Self Hosted (Docker)
Steps to reproduce
Only version 0.0.46 works; any upgrade results in errors.
✔️ Error log
@dosubot[bot] commented on GitHub (Dec 26, 2025):
This is a known issue with plugin upgrades in Dify: 500 Internal Server Errors often happen when the backend expects certain fields in the plugin response, but newer plugin versions (like Tongyi Qianwen >0.0.46) return data in a way that Dify 1.11.0 doesn't handle defensively. This can also be triggered by runtime panics (such as nil pointer dereference) in the plugin daemon, especially around endpoints like
parameter-rulesfor newer models. The root cause is usually in the plugin or upstream API response, not Dify core itself.Immediate workarounds include:
/plugin/[uuid]/dispatch/model/schemaand return a default JSON response to prevent backend errors:After editing your Nginx config, restart the service for changes to take effect.
If the error persists, check the plugin daemon logs for more details—often the stack trace will point to a missing key or a nil pointer in the plugin code.
There is no explicit version lock in the Tongyi Qianwen plugin code, so the issue is likely due to changes in API usage or plugin dependencies that Dify 1.11.0 doesn't fully support yet. For now, staying on 0.0.46 or using the Nginx workaround is the most reliable path until a compatibility fix is released.
References: issue 1706, issue 1729.
To reply, just mention @dosu.
How did I do? Good | Irrelevant | Incorrect | Verbose | Hallucination | Report 🐛 | Other