This is an automated email from the ASF dual-hosted git repository.
hugh pushed a change to branch hugh/SO-1117-modal
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.
from eaf7590 cleanup unused code
add 92cb044 fix npm lnit
add 6fd598c fix initial problems
add 327a281 feat: add event and interval annotation support to chart data
ep (#11665)
add 77d362d fix: Remove expensive logs table migration (#11920)
add 60122a2 feat: filters for alerts and reports list view (#11900)
add 98dc657 Added check if SQL query is empty and disable shortcut for
run query (#11877)
add 8adc8b8 Quick fix for branch names in tags (#11930)
add fa68288 fix: make sure we log the logs (#11939)
add 64d6fb9 refactor: Extract copy functionality to utils (#11928)
add 2c32342 refactor: Move Badge to Antdesign (#11899)
add 66cd565 feat: add Postgres SQL validator (#11538)
add 41738df feat: Results table on Explore view (#11854)
add f98ae01 feat(releasing): support changelog csv export (#11893)
add 14ea444 fix(charts): screenshot API declaring an unnecessary rison
arg (#11931)
add 31ef47a Merge branch 'master' of
https://github.com/apache/incubator-superset into hugh/SO-1117-modal
add 2a0d045 add props to test
add b07b5e5 remove unneeded files
No new revisions were added by this update.
Summary of changes:
.github/workflows/bashlib.sh | 2 +
.github/workflows/docker_build_push.sh | 4 +-
Dockerfile | 1 +
RELEASING/changelog.py | 106 ++++++---
UPDATING.md | 1 +
requirements/base.txt | 37 +--
requirements/development.txt | 10 +-
requirements/docker.txt | 2 +-
requirements/integration.txt | 12 +-
requirements/testing.txt | 8 +-
setup.cfg | 2 +-
setup.py | 1 +
.../explore/visualizations/big_number.test.js | 6 +-
superset-frontend/package-lock.json | 8 +-
superset-frontend/package.json | 2 +-
.../explore/components/DisplayQueryButton_spec.jsx | 4 +-
.../javascripts/sqllab/SaveDatasetModal_spec.jsx | 2 +
.../views/CRUD/alert/AlertList_spec.jsx | 6 +-
.../src/SqlLab/components/ResultSet.tsx | 6 +-
.../src/SqlLab/components/SaveDatasetModal.tsx | 4 +-
.../src/SqlLab/components/SqlEditor.jsx | 12 +-
.../src/SqlLab/components/TemplateParamsEditor.jsx | 4 +-
superset-frontend/src/chart/Chart.jsx | 2 +
superset-frontend/src/chart/chartAction.js | 5 +-
.../Loading.tsx => common/components/Badge.tsx} | 43 ++--
.../src/common/components/common.stories.tsx | 10 +
superset-frontend/src/common/components/index.tsx | 2 +-
.../src/components/CopyToClipboard.jsx | 49 ++--
.../src/datasource/DatasourceEditor.jsx | 5 +-
.../src/explore/components/DataTableControl.tsx | 105 +++++++++
.../src/explore/components/DataTablesPane.tsx | 245 ++++++++++++++++++++
.../src/explore/components/DisplayQueryButton.jsx | 158 +------------
.../src/explore/components/ExploreChartPanel.jsx | 253 ++++++++++++++++-----
.../src/explore/components/SaveModal.jsx | 4 +-
.../src/profile/components/Security.tsx | 11 +-
superset-frontend/src/utils/copy.ts | 56 +++++
.../src/views/CRUD/alert/AlertList.tsx | 87 +++++--
.../components/SyntaxHighlighterCopy/index.tsx | 41 +---
.../views/CRUD/data/savedquery/SavedQueryList.tsx | 41 +---
superset-frontend/src/views/CRUD/hooks.ts | 40 +---
superset/charts/api.py | 1 -
superset/charts/schemas.py | 5 +-
superset/common/query_context.py | 100 +++++++-
superset/common/query_object.py | 30 ++-
superset/config.py | 5 +-
.../utils.py} | 40 ++--
...6_.py => 811494c0cc23_remove_path_from_logs.py} | 26 ++-
.../versions/a8173232b786_add_path_to_logs.py | 20 +-
superset/models/core.py | 3 -
superset/reports/api.py | 2 +-
superset/sql_validators/__init__.py | 7 +-
superset/sql_validators/postgres.py | 54 +++++
superset/utils/core.py | 7 +
superset/utils/log.py | 19 +-
superset/views/core.py | 1 +
superset/viz.py | 17 +-
tests/annotation_layers/api_tests.py | 79 +------
tests/annotation_layers/fixtures.py | 101 ++++++++
tests/charts/api_tests.py | 52 ++++-
tests/event_logger_tests.py | 5 +-
tests/fixtures/query_context.py | 73 ++++++
tests/sql_validator_tests.py | 31 ++-
62 files changed, 1436 insertions(+), 639 deletions(-)
copy superset-frontend/src/{components/Loading.tsx =>
common/components/Badge.tsx} (59%)
create mode 100644
superset-frontend/src/explore/components/DataTableControl.tsx
create mode 100644 superset-frontend/src/explore/components/DataTablesPane.tsx
create mode 100644 superset-frontend/src/utils/copy.ts
copy
superset/migrations/{versions/72428d1ea401_add_tmp_schema_name_to_the_query_object.py
=> shared/utils.py} (54%)
copy superset/migrations/versions/{30bb17c0dc76_.py =>
811494c0cc23_remove_path_from_logs.py} (64%)
create mode 100644 superset/sql_validators/postgres.py
create mode 100644 tests/annotation_layers/fixtures.py