-
Notifications
You must be signed in to change notification settings - Fork 113
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix strawberry-graphql union error. #1441
Conversation
Did we introduce this with a recent version bump or is it another issue stemming from the |
@tynandebold - yeah we upgraded mypy 1.0 and so unpinned the strawberry-version which was previously pinned to only 0.180 and lower. Also updated to the latest recommended way of doing strawberry.union in the previous PR due to strawberry-graphql deprecation warnings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM!
It's a patch release to fix Kedro-viz backward compatibility issue with Kedro and also fix compatibility with strawberry-graphql. Below are release notes : Bump strawberry-graphql to at least version 0.192 to support the new strawberry.union syntax. (Fix strawberry-graphql union error. #1441) Resolve the incompatibility between Kedro-Viz and Kedro versions prior to 0.18.11. (Make Kedro-Viz compatible with previous Kedro with 'DataSet' #1445)
Description
Strawberry-graphql made a recent change to the way it handles strawberry.union. This change is considered breaking because users who have the latest kedro-viz but haven't updated their strawberry-graphql package will encounter the following error:
To fix this we have bumped strawberry-graphql dependency package to be at least version 0.192.
Development notes
QA notes
Checklist
RELEASE.md
file