-
Notifications
You must be signed in to change notification settings - Fork 14k
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(explore): retain chart ownership on query context update #16419
Conversation
Codecov Report
@@ Coverage Diff @@
## master #16419 +/- ##
==========================================
- Coverage 76.55% 76.55% -0.01%
==========================================
Files 1000 1000
Lines 53487 53486 -1
Branches 6818 6818
==========================================
- Hits 40948 40947 -1
Misses 12301 12301
Partials 238 238
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report at Codecov.
|
Fixies issues that will reappear after merging #16408 |
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, BTW, the detailed test case saves lots of review time.
* upstream/master: (25 commits) chore(ci): bump pylint to 2.10.2 (apache#16463) fix: prevent page crash when chart can't render (apache#16464) chore: fixed slack invite link (apache#16466) fix(native-filters): handle null values in value filter (apache#16460) feat: add function list to auto-complete to Clickhouse datasource (apache#16234) refactor(explore): improve typing for Dnd controls (apache#16362) fix(explore): update overwrite button on perm change (apache#16437) feat: Draggable and Resizable Modal (apache#16394) refactor: sql_json view endpoint (apache#16441) fix(dashboard): undo and redo buttons weird alignment (apache#16417) fix: setupPlugin in chart list page (apache#16413) fix: Disable Slack notification method if no api token (apache#16367) feat: add Shillelagh DB engine spec (apache#16416) fix: copy to Clipboard order (apache#16299) docs: make FEATURE_FLAGS.md reference a link (apache#16415) chore(viz): bump superset-ui to 0.17.87 (apache#16420) feat: add activate command (apache#16404) Revert "fix(explore): let admin overwrite slice (apache#16290)" (apache#16408) fix(explore): retain chart ownership on query context update (apache#16419) chore: Removes the TODOs and uses the default page size (apache#16422) ...
🏷 2021.31 |
SUMMARY
A feature was recently introduced to automatically populate
query_context
in the chart metadata if it was missing. This was necessary to be able to render V1 chart reports, which require the frontend-rendered query request (not possible by the backend). However, if a non-owner triggered the chart update command, the original ownership data was lost due to the update payload not containing theowners
property. This was due to theself.populate_owners
method setting the owners to whichever value was passed in the request, which in this case was alwaysNone
.This PR changes the chart update command to not modify the
owners
property when calling the chart update command withquery_context_generation
. In addition, an integration test is added to ensure that a non-owner can update the query context payload without changing theowners
property (test fails on master).TESTING INSTRUCTIONS
ADDITIONAL INFORMATION