You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by hu...@apache.org on 2021/03/03 23:28:51 UTC

[superset] branch hugh/event-logger-refactor updated (9e2f527 -> 80cd5bd)

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

hugh pushed a change to branch hugh/event-logger-refactor
in repository https://gitbox.apache.org/repos/asf/superset.git.


    from 9e2f527  leverage enter and exit magic functions for with statements
     add dc17039  feat(dashboard_rbac): manage roles for dashboard (#13145)
     add 8b38d63  changes added (#13431)
     add 26b75fa  chore: Added rockset and firebird (#13418)
     add 9c9862f  feat: Added Rows Returned (#13190)
     add 66a7318  refactor: Query search into functional component (#13102)
     add 26e36ae  fix: annotation layer modal err handling (#12341)
     add 026782e  use semver for badge sort (#13424)
     add 6730835  Merge branch 'master' of https://github.com/apache/incubator-superset into hugh/event-logger-refactor
     add 80cd5bd  setup new logger pattern

No new revisions were added by this update.

Summary of changes:
 README.md                                          |   2 +-
 docs/gatsby-node.js                                |   5 +
 docs/src/components/MainMenu.tsx                   |   2 +-
 docs/src/images/databases/rockset.png              | Bin 0 -> 6151 bytes
 docs/src/images/databases/trino.png                | Bin 0 -> 37493 bytes
 docs/src/images/databases/trino2.jpg               | Bin 0 -> 36149 bytes
 .../docs/Connecting to Databases/firebird.mdx      |  24 ++
 .../Connecting to Databases/google-bigquery.mdx    |   2 +-
 .../pages/docs/Connecting to Databases/rockset.mdx |  17 ++
 .../docs/Connecting to Databases/sql-server.mdx    |   4 +-
 docs/src/pages/index.tsx                           |   2 +-
 docs/src/resources/data.js                         |  10 +
 .../dashboard/components/PropertiesModal_spec.jsx  |  24 ++
 .../spec/javascripts/sqllab/QuerySearch_spec.jsx   | 116 +++++---
 .../views/CRUD/dashboard/DashboardList_spec.jsx    |   1 +
 .../src/SqlLab/components/QuerySearch.jsx          | 330 ---------------------
 .../src/SqlLab/components/QuerySearch.tsx          | 288 ++++++++++++++++++
 .../src/SqlLab/components/ResultSet.tsx            |  39 ++-
 .../src/SqlLab/components/SouthPane.jsx            |   2 +-
 .../src/SqlLab/components/SqlEditor.jsx            |  22 --
 superset-frontend/src/SqlLab/main.less             |   3 +-
 superset-frontend/src/SqlLab/types.ts              |   3 +
 .../components/FilterableTable/FilterableTable.tsx |   2 +-
 .../src/dashboard/components/PropertiesModal.jsx   | 163 ++++++++--
 .../explore/components/controls/VizTypeControl.jsx |   2 +-
 superset-frontend/src/featureFlags.ts              |   1 +
 .../src/views/CRUD/annotation/AnnotationModal.tsx  |  78 +++--
 .../CRUD/annotationlayers/AnnotationLayerModal.tsx |  70 +++--
 .../CRUD/annotationlayers/AnnotationLayersList.tsx |   7 +-
 superset/examples/energy.py                        |  16 +-
 superset/utils/log.py                              | 101 ++++---
 superset/viz.py                                    |  25 --
 tests/event_logger_tests.py                        |  33 ++-
 tests/fixtures/energy_dashboard.py                 |  13 +-
 34 files changed, 844 insertions(+), 563 deletions(-)
 create mode 100644 docs/src/images/databases/rockset.png
 create mode 100644 docs/src/images/databases/trino.png
 create mode 100644 docs/src/images/databases/trino2.jpg
 create mode 100644 docs/src/pages/docs/Connecting to Databases/firebird.mdx
 create mode 100644 docs/src/pages/docs/Connecting to Databases/rockset.mdx
 delete mode 100644 superset-frontend/src/SqlLab/components/QuerySearch.jsx
 create mode 100644 superset-frontend/src/SqlLab/components/QuerySearch.tsx