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

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


    from cc0fb8e  Merge branch 'master' of https://github.com/apache/superset 
into hugh/rbac-global
     add ac1d779  chore(ci): bump pylint to 2.10.2 (#16463)
     add 8ad495a  perf(dashboard): reduce number of rerenders of Charts (#16444)
     add f422f1e  perf(dashboard): decouple redux props from dashboard 
components (#16421)
     add fd64561  docs: make code snippet usable with required imports (#16473)
     add ee2eccd  fix: queryEditor bug (#16452)
     add a413f79  fix(explore): JS error for creating new metrics from columns 
(#16477)
     add 8adc31d  Revert "chore: Changes the DatabaseSelector to use the new 
Select component (#16334)" (#16478)
     add 147637a  fix(native-filters): add handle undefined control value 
gracefully (#16468)
     add 62d8ab7  fix: create example DB if needed (#16451)
     add 1ffd73d  chore: Docs/superset1.3 release notes (#16390)
     add 90e2f09  docs: update entries for v1.2 and v1.3 (#16496)
     add 9d23ffb  Merge branch 'master' of https://github.com/apache/superset 
into hugh/rbac-global

No new revisions were added by this update.

Summary of changes:
 .pylintrc                                          |   3 +
 CHANGELOG.md                                       | 742 ++++++++++++++++++++-
 RELEASING/README.md                                |   2 +
 RELEASING/release-notes-1-3/README.md              |  73 ++
 .../media/dashboard_native_filters_1.jpg           | Bin 0 -> 371135 bytes
 .../release-notes-1-3/media/export_full_csv.png    | Bin 0 -> 118424 bytes
 RELEASING/release-notes-1-3/media/funnel_chart.png | Bin 0 -> 232235 bytes
 .../release-notes-1-3/media/jinja_templating.png   | Bin 0 -> 33792 bytes
 .../media/native_filters_collapsed.png             | Bin 0 -> 333689 bytes
 .../media/view_query_dashboard.png                 | Bin 0 -> 290177 bytes
 UPDATING.md                                        |  23 +-
 docs/src/pages/docs/installation/configuring.mdx   |   6 +-
 requirements/testing.in                            |   2 +-
 requirements/testing.txt                           |   6 +-
 .../components/gridComponents/ChartHolder_spec.jsx |   4 +-
 .../components/gridComponents/Markdown_spec.jsx    |   4 +-
 .../javascripts/sqllab/SqlEditorLeftBar_spec.jsx   |  10 +-
 .../spec/javascripts/sqllab/actions/sqlLab_spec.js |  40 +-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |  17 +-
 .../src/components/CertifiedIcon/index.tsx         |   9 +-
 .../DatabaseSelector/DatabaseSelector.test.tsx     |  62 +-
 .../src/components/DatabaseSelector/index.tsx      | 310 ++++-----
 superset-frontend/src/components/Icons/Icon.tsx    |   8 +-
 superset-frontend/src/components/Select/Select.tsx |  76 +--
 .../TableSelector/TableSelector.test.jsx           | 291 ++++++++
 .../TableSelector/TableSelector.test.tsx           |  91 ---
 .../src/components/TableSelector/index.tsx         | 484 +++++++-------
 .../components/WarningIconWithTooltip/index.tsx    |   6 +-
 superset-frontend/src/dashboard/actions/hydrate.js |   4 +-
 .../dashboard/components/gridComponents/Chart.jsx  |   3 +-
 .../components/gridComponents/ChartHolder.jsx      |  10 +-
 .../components/gridComponents/Markdown.jsx         |  11 +-
 .../dashboard/components/gridComponents/Tabs.jsx   |   6 +-
 .../components/nativeFilters/FilterBar/utils.ts    |   2 +-
 .../src/dashboard/containers/Chart.jsx             |   6 +-
 .../dashboard/containers/DashboardComponent.jsx    |   8 -
 .../src/dashboard/util/activeDashboardFilters.js   |   4 +-
 .../util/charts/getFormDataWithExtraFilters.ts     |  19 +-
 .../src/datasource/DatasourceEditor.jsx            | 132 ++--
 .../controls/DatasourceControl/index.jsx           |   5 +-
 .../DndColumnSelectControl/DndMetricSelect.tsx     |   4 +-
 .../src/views/CRUD/data/dataset/DatasetList.tsx    |   2 -
 superset/annotation_layers/annotations/api.py      |   4 +-
 .../annotations/commands/create.py                 |   2 +-
 .../annotations/commands/update.py                 |   2 +-
 superset/annotation_layers/api.py                  |   4 +-
 superset/annotation_layers/commands/create.py      |   2 +-
 superset/annotation_layers/commands/update.py      |   2 +-
 superset/charts/commands/create.py                 |   2 +-
 superset/charts/commands/update.py                 |   2 +-
 superset/commands/importers/v1/examples.py         |   6 +-
 superset/commands/utils.py                         |   2 +-
 superset/connectors/sqla/models.py                 |   4 +-
 superset/dashboards/commands/create.py             |   2 +-
 superset/databases/commands/create.py              |   2 +-
 superset/databases/commands/update.py              |   2 +-
 superset/datasets/api.py                           |   2 +-
 superset/datasets/commands/create.py               |   2 +-
 superset/datasets/commands/update.py               |   2 +-
 superset/datasets/dao.py                           |   2 +-
 superset/models/dashboard.py                       |   4 +-
 superset/models/slice.py                           |   2 +-
 superset/reports/commands/create.py                |   2 +-
 superset/reports/commands/update.py                |   2 +-
 superset/tasks/async_queries.py                    |   8 +-
 superset/utils/dict_import_export.py               |   4 +-
 superset/utils/sqllab_execution_context.py         |   4 +-
 superset/views/base_schemas.py                     |   2 +-
 superset/views/core.py                             |  21 +-
 tests/integration_tests/datasets/api_tests.py      |  14 +-
 70 files changed, 1792 insertions(+), 802 deletions(-)
 create mode 100644 RELEASING/release-notes-1-3/README.md
 create mode 100644 
RELEASING/release-notes-1-3/media/dashboard_native_filters_1.jpg
 create mode 100644 RELEASING/release-notes-1-3/media/export_full_csv.png
 create mode 100644 RELEASING/release-notes-1-3/media/funnel_chart.png
 create mode 100644 RELEASING/release-notes-1-3/media/jinja_templating.png
 create mode 100644 
RELEASING/release-notes-1-3/media/native_filters_collapsed.png
 create mode 100644 RELEASING/release-notes-1-3/media/view_query_dashboard.png
 create mode 100644 
superset-frontend/src/components/TableSelector/TableSelector.test.jsx
 delete mode 100644 
superset-frontend/src/components/TableSelector/TableSelector.test.tsx

Reply via email to