This is an automated email from the ASF dual-hosted git repository.
hugh pushed a change to branch pexdax/db-connection-ui
in repository https://gitbox.apache.org/repos/asf/superset.git.
omit 2d2dd39 feat(db-connection-ui): Allow users to pick engine (#14884)
omit 5a785d7 Merge branch 'master' of https://github.com/apache/superset
into pexdax/db-connection-ui
omit 7cb4098 use new validation component
omit 95917e4 hook up available databases
omit e8cd4f4 split db modal file
add 8febd81 feat: validate database parameters (#14883)
add 2313e3e fix: show error on invalid import (#14851)
add acbbced fix: timerange in filter box error (#14890)
add b72e5e0 feat(native-filters): improve inverse selection indicators
(#14873)
add fce8ac2 Add style (#14839)
add 8519a09 chore: Improves the native filters UI/UX - iteration 5
(#14882)
add f82a085 feat(dashboard): Highlight tabs that contain a chart in scope
of focused native filter (#14865)
add 507d4d7 chore: Bump @superset-ui/legacy-preset-chart-deckgl to 0.4.7
(#14871)
add 8f81fc0 fix: Redshift parameters not rendering (#14888)
add 0eb34be leverage qs to create new tab (#14855)
add 1d78c43 Upgrade cryptography package (#14906)
add a85f5c1 feat(trino): add support for user impersonation (#14843)
add b041897 chore: upgrade bleach dependency (#14907)
add 51935dd fix: permission denied when starting docker with uid 1000
(#14903)
add d86880d Revert style (#14840)
add 50c5dcb test(native-filters): add test for Select filter (#14919)
add e43112c feat(native-filter): Hide native filters (#14784)
add 66282c3 chore: customize adhoc filter icon and fix creatable label
(#14896)
add e7f0dbb split db modal file
add b57d090 hook up available databases
add 271c6e9 use new validation component
add ef63e3c feat(db-connection-ui): Allow users to pick engine (#14884)
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 (2d2dd39)
\
N -- N -- N refs/heads/pexdax/db-connection-ui (ef63e3c)
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 | 4 +-
requirements/base.txt | 4 +-
setup.py | 2 +-
superset-frontend/package-lock.json | 19 +-
superset-frontend/package.json | 2 +-
superset-frontend/src/components/Form/FormItem.tsx | 2 +-
superset-frontend/src/components/Menu/Menu.tsx | 3 +-
.../src/components/Menu/MenuRight.tsx | 2 +-
superset-frontend/src/components/Tabs/Tabs.tsx | 5 -
superset-frontend/src/constants.ts | 16 +-
superset-frontend/src/dashboard/actions/hydrate.js | 9 +-
.../DashboardBuilder/DashboardBuilder.tsx | 6 +-
.../dashboard/components/FiltersBadge/selectors.ts | 10 +-
.../Header/HeaderActionsDropdown/index.jsx | 2 +-
.../dashboard/components/gridComponents/Tab.jsx | 21 +-
.../dashboard/components/gridComponents/Tabs.jsx | 55 +-
.../nativeFilters/FilterBar/FilterBar.test.tsx | 4 +-
.../FiltersConfigModal/FilterTabs.tsx | 63 +-
.../FiltersConfigForm/FiltersConfigForm.tsx | 740 +++++++++++----------
.../FiltersConfigModal/FiltersConfigModal.tsx | 2 +-
.../nativeFilters/FiltersConfigModal/utils.ts | 2 +-
.../dashboard/containers/DashboardComponent.jsx | 1 +
.../src/dashboard/util/getDashboardUrl.ts | 4 +-
.../explore/components/ControlPanelsContainer.tsx | 7 +
.../src/explore/components/EmbedCodeButton.jsx | 2 +-
.../explore/components/ExploreViewContainer.jsx | 2 +-
.../index.jsx | 6 +-
.../explore/components/controls/SelectControl.jsx | 4 -
.../src/explore/exploreUtils/index.js | 4 +-
.../components/Select/SelectFilterPlugin.test.tsx | 213 ++++++
.../components/Select/SelectFilterPlugin.tsx | 11 +-
superset-frontend/src/modules/utils.js | 10 -
superset-frontend/src/utils/urlUtils.ts | 20 +-
.../data/database/DatabaseModal/ExtraOptions.tsx | 4 +-
.../src/visualizations/FilterBox/FilterBox.jsx | 2 +
superset/charts/api.py | 17 +-
superset/commands/importers/exceptions.py | 5 +
superset/dashboards/api.py | 18 +-
superset/databases/api.py | 18 +-
superset/databases/schemas.py | 7 +-
superset/datasets/api.py | 18 +-
superset/db_engine_specs/redshift.py | 1 +
superset/db_engine_specs/trino.py | 38 +-
superset/queries/saved_queries/api.py | 17 +-
tests/charts/api_tests.py | 39 +-
tests/dashboards/api_tests.py | 86 ++-
tests/databases/api_tests.py | 107 ++-
tests/databases/schema_tests.py | 21 +
tests/datasets/api_tests.py | 57 +-
tests/model_tests.py | 27 +
50 files changed, 1216 insertions(+), 523 deletions(-)
create mode 100644
superset-frontend/src/filters/components/Select/SelectFilterPlugin.test.tsx