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

villebro pushed a change to branch 0.37
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


    from 791d787  fix: Bump FAB to 3.0.1 fix superset init (#10310)
     new 2631b38  chore: add typing to profile (#10282)
     new 9f0d456  chore: add typing to more sqllab components (#10278)
     new 2f2fb47  chore: type welcome (#10317)
     new c57df31  fix: humanised changed on UTC on dashboards and charts 
(#10321)
     new 08d43b1  fix(table-viz): value "undefined" for column.name (#10325)
     new 3f284ea  fix: make __time an ok column name in SQL Lab (#10336)

The 6 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:
 superset-frontend/package-lock.json                | 138 +++++++++++++--------
 superset-frontend/package.json                     |  13 +-
 .../profile/{App_spec.jsx => App_spec.tsx}         |   0
 ...tedContent_spec.jsx => CreatedContent_spec.tsx} |   0
 ...itableTitle_spec.jsx => EditableTitle_spec.tsx} |   0
 .../{Favorites_spec.jsx => Favorites_spec.tsx}     |   0
 ...ntActivity_spec.jsx => RecentActivity_spec.tsx} |   0
 .../{Security_spec.jsx => Security_spec.tsx}       |   0
 .../{UserInfo_spec.jsx => UserInfo_spec.tsx}       |   0
 .../profile/{fixtures.jsx => fixtures.tsx}         |   0
 ...lumnElement_spec.jsx => ColumnElement_spec.tsx} |   0
 .../sqllab/{fixtures.js => fixtures.ts}            |  14 ++-
 .../javascripts/views/chartList/ChartList_spec.jsx |   2 +-
 .../views/dashboardList/DashboardList_spec.jsx     |   5 +-
 ...boardTable_spec.jsx => DashboardTable_spec.tsx} |   2 +-
 .../welcome/{Welcome_spec.jsx => Welcome_spec.tsx} |  14 ++-
 .../{ColumnElement.jsx => ColumnElement.tsx}       |  23 ++--
 .../src/SqlLab/components/ExploreResultsButton.jsx |   9 +-
 .../src/SqlLab/components/ResultSet.tsx            |   2 +
 .../SqlLab/components/{ShowSQL.jsx => ShowSQL.tsx} |  74 +++++------
 .../src/SqlLab/{constants.js => constants.ts}      |   0
 .../src/{welcome/index.jsx => SqlLab/index.tsx}    |   0
 .../src/messageToasts/enhancers/withToasts.tsx     |   4 +-
 superset-frontend/src/profile/{App.jsx => App.tsx} |   2 +-
 .../src/profile/components/{App.jsx => App.tsx}    |  21 ++--
 .../{CreatedContent.jsx => CreatedContent.tsx}     |  25 ++--
 .../components/{Favorites.jsx => Favorites.tsx}    |  25 ++--
 .../{RecentActivity.jsx => RecentActivity.tsx}     |  57 ++++-----
 .../components/{Security.jsx => Security.tsx}      |  12 +-
 .../src/profile/components/UserInfo.jsx            |  75 -----------
 .../src/profile/components/UserInfo.tsx            |  76 ++++++++++++
 .../src/profile/{index.jsx => index.tsx}           |   0
 .../src/{types/Chart.ts => profile/types.ts}       |  25 ++--
 .../src/types/{Chart.ts => bootstrapTypes.ts}      |  33 +++--
 .../src/views/chartList/ChartList.tsx              |   9 +-
 .../src/views/dashboardList/DashboardList.tsx      |  11 +-
 superset-frontend/src/welcome/{App.jsx => App.tsx} |   2 +-
 .../{DashboardTable.jsx => DashboardTable.tsx}     |  57 ++++++---
 .../src/welcome/{Welcome.jsx => Welcome.tsx}       |  27 ++--
 .../src/{SqlLab/index.jsx => welcome/index.tsx}    |   0
 superset-frontend/webpack.config.js                |   6 +-
 superset/charts/api.py                             |   8 +-
 superset/dashboards/api.py                         |  12 +-
 superset/models/helpers.py                         |  10 ++
 tests/charts/api_tests.py                          |  30 +++++
 tests/dashboards/api_tests.py                      |  41 +++++-
 46 files changed, 514 insertions(+), 350 deletions(-)
 rename superset-frontend/spec/javascripts/profile/{App_spec.jsx => 
App_spec.tsx} (100%)
 rename superset-frontend/spec/javascripts/profile/{CreatedContent_spec.jsx => 
CreatedContent_spec.tsx} (100%)
 rename superset-frontend/spec/javascripts/profile/{EditableTitle_spec.jsx => 
EditableTitle_spec.tsx} (100%)
 rename superset-frontend/spec/javascripts/profile/{Favorites_spec.jsx => 
Favorites_spec.tsx} (100%)
 rename superset-frontend/spec/javascripts/profile/{RecentActivity_spec.jsx => 
RecentActivity_spec.tsx} (100%)
 rename superset-frontend/spec/javascripts/profile/{Security_spec.jsx => 
Security_spec.tsx} (100%)
 rename superset-frontend/spec/javascripts/profile/{UserInfo_spec.jsx => 
UserInfo_spec.tsx} (100%)
 rename superset-frontend/spec/javascripts/profile/{fixtures.jsx => 
fixtures.tsx} (100%)
 rename superset-frontend/spec/javascripts/sqllab/{ColumnElement_spec.jsx => 
ColumnElement_spec.tsx} (100%)
 rename superset-frontend/spec/javascripts/sqllab/{fixtures.js => fixtures.ts} 
(96%)
 rename superset-frontend/spec/javascripts/welcome/{DashboardTable_spec.jsx => 
DashboardTable_spec.tsx} (97%)
 rename superset-frontend/spec/javascripts/welcome/{Welcome_spec.jsx => 
Welcome_spec.tsx} (81%)
 rename superset-frontend/src/SqlLab/components/{ColumnElement.jsx => 
ColumnElement.tsx} (80%)
 rename superset-frontend/src/SqlLab/components/{ShowSQL.jsx => ShowSQL.tsx} 
(56%)
 rename superset-frontend/src/SqlLab/{constants.js => constants.ts} (100%)
 rename superset-frontend/src/{welcome/index.jsx => SqlLab/index.tsx} (100%)
 rename superset-frontend/src/profile/{App.jsx => App.tsx} (96%)
 rename superset-frontend/src/profile/components/{App.jsx => App.tsx} (86%)
 rename superset-frontend/src/profile/components/{CreatedContent.jsx => 
CreatedContent.tsx} (84%)
 rename superset-frontend/src/profile/components/{Favorites.jsx => 
Favorites.tsx} (85%)
 rename superset-frontend/src/profile/components/{RecentActivity.jsx => 
RecentActivity.tsx} (52%)
 rename superset-frontend/src/profile/components/{Security.jsx => Security.tsx} 
(91%)
 delete mode 100644 superset-frontend/src/profile/components/UserInfo.jsx
 create mode 100644 superset-frontend/src/profile/components/UserInfo.tsx
 rename superset-frontend/src/profile/{index.jsx => index.tsx} (100%)
 copy superset-frontend/src/{types/Chart.ts => profile/types.ts} (80%)
 copy superset-frontend/src/types/{Chart.ts => bootstrapTypes.ts} (65%)
 rename superset-frontend/src/welcome/{App.jsx => App.tsx} (97%)
 rename superset-frontend/src/welcome/{DashboardTable.jsx => 
DashboardTable.tsx} (75%)
 rename superset-frontend/src/welcome/{Welcome.jsx => Welcome.tsx} (83%)
 rename superset-frontend/src/{SqlLab/index.jsx => welcome/index.tsx} (100%)

Reply via email to