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.
discard d05814c feat(db-connection-ui): Show Preferred DBs (#14951)
omit b8e6687 feat: Dynamic Form for edit DB Modal (#14845)
omit d5c5167 feat(db-connection-ui): Allow users to pick engine (#14884)
omit cea7b6c fix test for db modal
omit 145b947 # This is a combination of 6 commits. # This is the 1st
commit message:
add f652908 fix: renamed sqllab filters to _filters (#14971)
add 004a6d9 refactor: Convert TableElement.jsx component from class to
functional with hooks (#14830)
add 20b86f8 fix(filter box): replace freeform where clause with ilike
(#14900)
add 61a438a fix(native-filters): update cascaded filter state on change
(#14980)
add 6955ed2 fix(native-filters): remove implied fetch predicate (#14982)
add 8c01c13 fix(native-filters): Fix "undefined" error after editing a
filter (#14984)
add 355223d feat(native-filters): add markers and number formatter +
simple tests (#14981)
add c8cf4b6 fix: toggle fullscreen on the dashboard (#14979)
add c0a8c74 # This is a combination of 6 commits. # This is the 1st
commit message:
add 907165f fix test for db modal
add e3a87b9 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 (d05814c)
\
N -- N -- N refs/heads/pexdax/db-connection-ui (e3a87b9)
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:
docs/installation.rst | 3 +-
.../cypress/integration/database/modal.test.ts | 6 +-
.../spec/javascripts/sqllab/TableElement_spec.jsx | 24 +-
.../src/SqlLab/components/ResultSet.tsx | 3 +-
.../src/SqlLab/components/TableElement.jsx | 202 +++++++--------
.../src/components/IconButton/index.tsx | 3 +-
.../src/dashboard/actions/nativeFilters.ts | 26 +-
.../Header/HeaderActionsDropdown/index.jsx | 2 +-
.../RangeFilterPlugin.stories.tsx} | 60 +++--
.../components/Range/RangeFilterPlugin.test.tsx | 121 +++++++++
.../filters/components/Range/RangeFilterPlugin.tsx | 60 ++++-
.../src/filters/components/Range/buildQuery.ts | 1 -
.../components/Select/SelectFilterPlugin.tsx | 1 +
.../filters/components/Select/buildQuery.test.ts | 1 -
.../src/filters/components/Select/buildQuery.ts | 1 -
.../DatabaseModal/DatabaseConnectionForm.tsx | 26 +-
.../data/database/DatabaseModal/index.test.jsx | 136 ++++++-----
.../CRUD/data/database/DatabaseModal/index.tsx | 271 +++++++--------------
.../CRUD/data/database/DatabaseModal/styles.ts | 43 +---
.../src/views/CRUD/data/database/types.ts | 9 +-
.../src/visualizations/FilterBox/FilterBox.jsx | 8 +-
superset/config.py | 8 +-
superset/databases/schemas.py | 17 +-
superset/models/core.py | 7 +-
superset/views/utils.py | 2 +-
tests/databases/api_tests.py | 5 +-
26 files changed, 544 insertions(+), 502 deletions(-)
copy
superset-frontend/src/filters/components/{Select/SelectFilterPlugin.stories.tsx
=> Range/RangeFilterPlugin.stories.tsx} (51%)
create mode 100644
superset-frontend/src/filters/components/Range/RangeFilterPlugin.test.tsx