You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by aa...@apache.org on 2022/09/02 13:37:22 UTC

[superset] branch arash.afghahi/sc-56572/database-connect-db-page-show-error-if-user updated (3a84ad5974 -> df47f96db7)

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

aafghahi pushed a change to branch arash.afghahi/sc-56572/database-connect-db-page-show-error-if-user
in repository https://gitbox.apache.org/repos/asf/superset.git


    omit 3a84ad5974 added testing
    omit 05d51ed871 new design
    omit f22e694200 fix connect issue
     add 076af6003a fix(explore): Incorrect conversion from simple bool filter to custom sql (#21293)
     add c4b6fc5a6a chore: migrate available_domains to api/v1 (#21173)
     add 742dbdd0a5 fix: Fix console errors about feature flags when running tests (#21275)
     add c3a00d43d0 fix(explore): Time column label not formatted when GENERIC_X_AXES enabled (#21294)
     add 1aeb8fd6b7 fix(plugin-chart-echarts): show zero value in tooltip (#21296)
     add 65a11b6f45 refactor: introduce react-query on api resource hook (#21240)
     add 222f1e7ea8 fix(sqllab): invalid table metadata request (#21304)
     add 2aa3bb6c00 fix(utils): use getaddrinfo for hostname check to support ipv6 (#21042)
     add 38782bb98a fix(utils): use getaddrinfo response to support dual-stack port checks (#21043)
     add 2d70ef670e feat(sqllab): Make LeftBar width resizable (#21300)
     add f71ee2e7bc fix: flaky test when sync metadata (#21306)
     add 60db0bb47e chore: Bump pandas to 1.4.4 (#21285)
     add fbe980779e feat: Adds a helper text option to the Select component (#21269)
     add e74b906bcf Merge branch 'master' of https://github.com/apache/superset
     add ad649c5b99 fix connect issue
     add 192f52d960 new design
     add df47f96db7 added testing

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   (3a84ad5974)
            \
             N -- N -- N   refs/heads/arash.afghahi/sc-56572/database-connect-db-page-show-error-if-user (df47f96db7)

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:
 requirements/base.txt                              |   2 +-
 setup.py                                           |   2 +-
 superset-frontend/package-lock.json                |  96 +++++++++
 superset-frontend/package.json                     |   1 +
 .../test/utils/featureFlag.test.ts                 |  48 ++++-
 .../src/MixedTimeseries/transformProps.ts          |   2 +-
 .../plugin-chart-echarts/src/utils/forecast.ts     |   5 +-
 .../test/utils/forecast.test.ts                    | 223 +++++++++++++--------
 superset-frontend/spec/helpers/shim.ts             |   1 +
 superset-frontend/spec/helpers/testing-library.tsx |   7 +
 superset-frontend/src/SqlLab/App.jsx               |  15 +-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   5 +-
 .../src/SqlLab/actions/sqlLab.test.js              |  74 +++++--
 .../SqlLab/components/SqlEditor/SqlEditor.test.jsx |   9 +-
 .../src/SqlLab/components/SqlEditor/index.jsx      |  54 +++--
 .../SqlEditorLeftBar/SqlEditorLeftBar.test.jsx     | 124 ++++++------
 .../SqlLab/components/SqlEditorLeftBar/index.tsx   |  14 +-
 .../TabbedSqlEditors/TabbedSqlEditors.test.jsx     |   9 +-
 .../SqlLab/components/TabbedSqlEditors/index.jsx   |   4 +-
 .../src/SqlLab/components/TableElement/index.tsx   |   1 +
 superset-frontend/src/SqlLab/constants.ts          |   1 +
 superset-frontend/src/SqlLab/main.less             |   4 +-
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |  20 +-
 .../src/SqlLab/reducers/sqlLab.test.js             |  22 ++
 .../components/Datasource/DatasourceModal.test.jsx |   9 +-
 .../src/components/ResizableSidebar/index.tsx      |  82 ++++++++
 .../useStoredSidebarWidth.test.ts}                 |  41 ++--
 .../ResizableSidebar/useStoredSidebarWidth.ts}     |  28 +--
 .../src/components/Select/AsyncSelect.test.tsx     |  74 +++----
 .../src/components/Select/AsyncSelect.tsx          |  30 ++-
 .../src/components/Select/Select.test.tsx          |  14 ++
 superset-frontend/src/components/Select/Select.tsx |  28 ++-
 .../src/components/TableSelector/index.tsx         | 132 +++++-------
 .../DashboardBuilder/DashboardBuilder.test.tsx     |  12 +-
 .../DashboardBuilder/DashboardBuilder.tsx          |  88 +++-----
 superset-frontend/src/hooks/apiResources/index.ts  |   1 +
 .../src/hooks/apiResources/tables.test.ts          | 221 ++++++++++++++++++++
 superset-frontend/src/hooks/apiResources/tables.ts |  97 +++++++++
 superset-frontend/src/utils/common.js              |   4 +-
 superset-frontend/src/utils/common.test.jsx        |   9 +-
 superset-frontend/src/utils/localStorageHelpers.ts |   2 +
 superset-frontend/src/views/App.tsx                |  43 ++--
 .../Item.tsx => views/QueryProvider.tsx}           |  43 ++--
 .../__init__.py                                    |   0
 superset/available_domains/api.py                  |  75 +++++++
 .../available_domains/schemas.py                   |  11 +-
 superset/initialization/__init__.py                |   2 +
 superset/utils/network.py                          |  25 ++-
 .../utils/pandas_postprocessing/contribution.py    |   3 -
 superset/views/core.py                             |   5 +
 .../available_domains}/__init__.py                 |   0
 .../client.py => available_domains/api_tests.py}   |  16 +-
 tests/integration_tests/security_tests.py          |   1 +
 tests/integration_tests/sqla_models_tests.py       |   7 +-
 54 files changed, 1331 insertions(+), 515 deletions(-)
 create mode 100644 superset-frontend/src/components/ResizableSidebar/index.tsx
 rename superset-frontend/src/{dashboard/components/DashboardBuilder/useStoredFilterBarWidth.test.ts => components/ResizableSidebar/useStoredSidebarWidth.test.ts} (68%)
 rename superset-frontend/src/{dashboard/components/DashboardBuilder/useStoredFilterBarWidth.ts => components/ResizableSidebar/useStoredSidebarWidth.ts} (62%)
 create mode 100644 superset-frontend/src/hooks/apiResources/tables.test.ts
 create mode 100644 superset-frontend/src/hooks/apiResources/tables.ts
 copy superset-frontend/src/{components/Pagination/Item.tsx => views/QueryProvider.tsx} (62%)
 copy superset/{advanced_data_type => available_domains}/__init__.py (100%)
 create mode 100644 superset/available_domains/api.py
 copy docs/static/.asf.yaml => superset/available_domains/schemas.py (73%)
 copy {superset/advanced_data_type => tests/integration_tests/available_domains}/__init__.py (100%)
 copy tests/integration_tests/{fixtures/client.py => available_domains/api_tests.py} (64%)