This is an automated email from the ASF dual-hosted git repository.
lyndsi pushed a change to branch lyndsi-fix-refetch-async-queries
in repository https://gitbox.apache.org/repos/asf/superset.git
omit 22177da48e Fix unintentional merge changes (missed one)
omit 2f4bb0e3a1 Fix unintentional merge changes
omit f7641456db Remove query.prevQuery check and write tests for bug fix
omit c72108d58d Merge branch 'master' of https://github.com/apache/superset
omit a78c62f06f Merge branch 'master' of https://github.com/apache/superset
omit c37e7d153c Merge branch 'fix-edits-gsheet' of
https://github.com/apache/superset
omit 33e9630511 change reference of where to pull parameters
add f3f9f3b1f2 other: Improve health check for docker-compose. (#17320)
add 50cb396bf2 fix(sqllab): async query broken due to #21320 (#21667)
add ebd75366c0 feat(chart): add feature flag that displays the data pane
closes by default (#21649)
add de444d4de6 fix: Race conditions with setupExtensions (#21647)
add b6891aaa9f chore(key-value): remove redundant exception logging
(#21702)
add 7b66e0bb34 chore: E2E tests for Drill to Detail supported Charts
(#21681)
add 51c54b3c9b fix: add `get_column` function for Query obj (#21691)
add 05648eb489 feat: support None operand in EQUAL operator (#21713)
add d6a82187a7 docs(cache): update datasource -> dataset (#21670)
add 770f68f5b1 fix: Right-click on misconfigured World Map (#21697)
add 1cbf066415 feat: Adds the CROSS_REFERENCE feature flag (#21708)
add f1fbaf8244 fix: Pass slice_id in Explore get (#21696)
add 041c54e656 build: optimize docker build by better utilizing build
cache (#21583)
add eb2a1345a8 fix: Drill to detail formatted val on TableChart (#21719)
add 97273f59f8 fix(database): Handle String errors in DatabaseModal
(#21709)
add 882bfb67ae fix: gsheets editing with dynamic forms (#21710)
add 61319fd759 feat(sqllab): save query parameters in database (#21682)
add 0ff1e49e3c fix: Null values on Treemap right-click (#21722)
add 200bed6f7e feat: Shows related dashboards in Explore (#21685)
add 86a03851cf change reference of where to pull parameters
add b458fb2120 Remove query.prevQuery check and write tests for bug fix
add 02b7e0aa06 Fix unintentional merge changes
add 2ee28bdcd0 Fix unintentional merge changes (missed one)
This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version. This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:
* -- * -- B -- O -- O -- O (22177da48e)
\
N -- N -- N refs/heads/lyndsi-fix-refetch-async-queries
(2ee28bdcd0)
You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.
Any revisions marked "omit" are not gone; other references still
refer to them. Any revisions marked "discard" are gone forever.
No new revisions were added by this update.
Summary of changes:
Dockerfile | 64 ++--
RESOURCES/FEATURE_FLAGS.md | 64 ++--
docker-compose-non-dev.yml | 6 +
docker-compose.yml | 8 +
docs/docs/installation/cache.mdx | 4 +-
.../new-chart-2022-09-09T14-22-31.728Z.jpg | Bin 16879 -> 0 bytes
.../integration/dashboard/drilltodetail.test.ts | 410 ++++++++++++++++++---
.../integration/dashboard/nativeFilters.test.ts | 3 +-
.../explore/visualizations/area.test.js | 12 +-
.../explore/visualizations/big_number.test.js | 10 +-
.../visualizations/big_number_total.test.js | 10 +-
.../explore/visualizations/box_plot.test.js | 12 +-
.../explore/visualizations/bubble.test.js | 34 +-
.../explore/visualizations/compare.test.js | 12 +-
.../explore/visualizations/dist_bar.test.js | 21 +-
.../explore/visualizations/download_chart.test.js | 2 +-
.../explore/visualizations/dual_line.test.js | 12 +-
.../explore/visualizations/gauge.test.js | 19 +-
.../explore/visualizations/graph.test.ts | 12 +-
.../explore/visualizations/histogram.test.ts | 12 +-
.../explore/visualizations/line.test.ts | 6 +-
.../integration/explore/visualizations/pie.test.js | 12 +-
.../explore/visualizations/pivot_table.test.js | 10 +-
.../explore/visualizations/sankey.test.js | 12 +-
.../explore/visualizations/sunburst.test.js | 12 +-
.../explore/visualizations/table.test.ts | 10 +-
.../explore/visualizations/time_table.js | 6 +-
.../explore/visualizations/treemap.test.js | 12 +-
.../explore/visualizations/world_map.test.js | 12 +-
.../superset-ui-core/src/utils/featureFlags.ts | 61 +--
.../legacy-plugin-chart-world-map/src/WorldMap.js | 32 +-
.../src/Treemap/EchartsTreemap.tsx | 3 +-
.../plugins/plugin-chart-table/src/TableChart.tsx | 5 +-
superset-frontend/src/SqlLab/App.jsx | 2 +
superset-frontend/src/SqlLab/actions/sqlLab.js | 49 ++-
.../src/SqlLab/actions/sqlLab.test.js | 30 +-
.../components/RunQueryActionButton/index.tsx | 1 +
.../src/SqlLab/components/SaveQuery/index.tsx | 30 +-
.../SqlLab/components/SqlEditor/SqlEditor.test.jsx | 55 ++-
.../src/SqlLab/components/SqlEditor/index.jsx | 20 +-
.../SqlLab/components/SqlEditorTabHeader/index.tsx | 2 +-
superset-frontend/src/SqlLab/fixtures.ts | 12 +-
superset-frontend/src/SqlLab/reducers/sqlLab.js | 4 +-
superset-frontend/src/constants.ts | 4 +
superset-frontend/src/dashboard/actions/hydrate.js | 20 +-
.../src/dashboard/containers/DashboardPage.tsx | 3 +
.../components/DataTablesPane/DataTablesPane.tsx | 8 +-
.../DataTablesPane/test/DataTablesPane.test.tsx | 17 +
.../components/ExploreChartHeader/index.jsx | 10 +
.../src/explore/components/ExploreChartPanel.jsx | 9 +-
.../DashboardsSubMenu.test.tsx | 78 ++++
.../DashboardsSubMenu.tsx | 146 ++++++++
.../useExploreAdditionalActionsMenu/index.jsx | 25 +-
superset-frontend/src/preamble.ts | 3 -
superset-frontend/src/profile/App.tsx | 2 +
superset-frontend/src/views/App.tsx | 2 +
.../data/database/DatabaseModal/index.test.jsx | 91 +++++
.../CRUD/data/database/DatabaseModal/index.tsx | 24 +-
superset/charts/schemas.py | 3 +-
superset/common/query_context_processor.py | 3 +-
superset/config.py | 2 +
superset/connectors/sqla/models.py | 9 +-
superset/databases/schemas.py | 5 +
superset/db_engine_specs/gsheets.py | 14 +-
superset/examples/supported_charts_dashboard.py | 14 +-
superset/explore/commands/get.py | 4 +-
superset/key_value/commands/create.py | 1 -
superset/key_value/commands/delete.py | 1 -
superset/key_value/commands/delete_expired.py | 1 -
superset/key_value/commands/get.py | 1 -
superset/key_value/commands/update.py | 1 -
superset/key_value/commands/upsert.py | 11 +-
superset/key_value/exceptions.py | 4 +
...34_deb4c9d4a4ef_parameters_in_saved_queries.py} | 28 +-
superset/models/sql_lab.py | 16 +-
superset/queries/saved_queries/api.py | 10 +-
.../queries/saved_queries/api_tests.py | 1 +
tests/integration_tests/sqla_models_tests.py | 120 ++++--
tests/integration_tests/superset_test_config.py | 1 +
tests/unit_tests/db_engine_specs/test_gsheets.py | 54 ++-
80 files changed, 1386 insertions(+), 485 deletions(-)
delete mode 100644
superset-frontend/cypress-base/cypress/downloads/new-chart-2022-09-09T14-22-31.728Z.jpg
create mode 100644
superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.test.tsx
create mode 100644
superset-frontend/src/explore/components/useExploreAdditionalActionsMenu/DashboardsSubMenu.tsx
copy
superset/migrations/versions/{2018-03-06_12-24_e68c4473c581_allow_multi_schema_metadata_fetch.py
=> 2022-10-03_17-34_deb4c9d4a4ef_parameters_in_saved_queries.py} (73%)