This is an automated email from the ASF dual-hosted git repository.

diegopucci pushed a change to branch feat/d2d-charts-crud-filter-col
in repository https://gitbox.apache.org/repos/asf/superset.git


    from 723011d295 Add tests
     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 35d9cb38a8 fix(explore): chart link is broken without localStorage 
(#21707)
     add ca3abffb81 docs: wording in template (#21491)
     add 1372b0dff5 docs(snowflake): Remove wrong version info for snowflake 
(#21024)
     add f42516887d chore: Slovenian translation update (#20435)
     add a5ff0949a6 feat(api): Add option to enable sync on import (#20312)
     add 0c461497ff chore(sqllab): refactor addQueryEditor for new tab (#21711)
     add aef6217a80 fix: Gsheets takes 2 clicks to save (#21740)
     add f58227a912 feat: add denylist for db engines (#21486)
     add d1a6f0ebc4 fix: allow adhoc columns in non-aggregate query (#21729)
     new f71565275c Merge branch 'master' of https://github.com/apache/superset 
into feat/d2d-charts-crud-filter-col
     new 19cf1bf605 Add feature flag
     new 515018e807 Enhance E2E tests

The 3 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 Dockerfile                                         |    64 +-
 RESOURCES/FEATURE_FLAGS.md                         |    64 +-
 docs/docs/databases/snowflake.mdx                  |     2 +-
 docs/static/resources/openapi.json                 |   325 +-
 .../cypress/integration/chart_list/filter.test.ts  |    14 +
 .../cypress/integration/chart_list/list.test.ts    |     9 +-
 .../explore/visualizations/download_chart.test.js  |     2 +-
 .../plugin-chart/templates/src/MyChart.erb         |     2 +-
 .../superset-ui-core/src/utils/featureFlags.ts     |    62 +-
 .../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/actions/sqlLab.js     |    66 +-
 .../src/SqlLab/actions/sqlLab.test.js              |    52 +-
 .../src/SqlLab/components/SaveQuery/index.tsx      |    30 +-
 .../src/SqlLab/components/SqlEditor/index.jsx      |    21 +-
 .../SqlLab/components/SqlEditorTabHeader/index.tsx |     2 +-
 .../TabbedSqlEditors/TabbedSqlEditors.test.jsx     |    47 +-
 .../SqlLab/components/TabbedSqlEditors/index.jsx   |     6 +-
 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 +
 superset-frontend/src/explore/ExplorePage.tsx      |    12 +-
 .../components/ExploreChartHeader/index.jsx        |    10 +
 .../DashboardsSubMenu.test.tsx                     |    78 +
 .../DashboardsSubMenu.tsx                          |   146 +
 .../useExploreAdditionalActionsMenu/index.jsx      |    25 +-
 superset-frontend/src/types/Database.ts            |     1 +
 .../src/views/CRUD/chart/ChartList.tsx             |    70 +-
 .../data/database/DatabaseModal/index.test.jsx     |    91 +
 .../CRUD/data/database/DatabaseModal/index.tsx     |    24 +-
 superset-frontend/src/views/CRUD/hooks.ts          |    17 +-
 superset/config.py                                 |     8 +
 superset/connectors/sqla/models.py                 |    18 +-
 superset/databases/schemas.py                      |     5 +
 superset/datasets/api.py                           |    14 +-
 superset/db_engine_specs/__init__.py               |    13 +-
 superset/db_engine_specs/gsheets.py                |    14 +-
 superset/explore/commands/get.py                   |     4 +-
 ...34_deb4c9d4a4ef_parameters_in_saved_queries.py} |    28 +-
 superset/models/sql_lab.py                         |     1 +
 superset/queries/saved_queries/api.py              |    10 +-
 superset/superset_typing.py                        |     4 +-
 superset/translations/sl/LC_MESSAGES/messages.json |  6582 ++---
 superset/translations/sl/LC_MESSAGES/messages.po   | 26142 ++++++++++---------
 superset/utils/core.py                             |     4 +-
 tests/integration_tests/charts/data/api_tests.py   |    41 +
 tests/integration_tests/datasets/api_tests.py      |     4 +
 .../queries/saved_queries/api_tests.py             |     1 +
 tests/integration_tests/superset_test_config.py    |     1 +
 tests/unit_tests/conftest.py                       |     8 +-
 tests/unit_tests/db_engine_specs/test_gsheets.py   |    54 +-
 tests/unit_tests/db_engine_specs/test_init.py      |    80 +
 55 files changed, 18277 insertions(+), 16084 deletions(-)
 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%)
 create mode 100644 tests/unit_tests/db_engine_specs/test_init.py

Reply via email to