You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by vi...@apache.org on 2020/10/28 21:49:38 UTC

[incubator-superset] branch feature/filter-p0 updated (4d8aeca -> 79ff611)

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

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


    from 4d8aeca  support all time fields
     add 4bebf51  chore: Cypress chart selectors refactor (#11312)
     add a99d795  chore: cypress selectors refactor in explore module (#11309)
     add 155b5ed  refactor: Use Antd Modals instead of react-bootstrap Modals (#11366)
     add 6841167  fix: Fixing broken Cypress test (#11453)
     add eecabf9  fix: a space adds the space. (#11401)
     add 88e5e98  fix: add init.py to the annotations module (#11437)
     add b2636f0  fix: Explore popovers issues (#11428)
     add 894b94a  enabled skipped tests in AdhocMetrics Cypress (#11455)
     add 81a0526  docs: improve docs and update apache release scripts (#11457)
     add d4d547c  Disabled chaning caret (#11459)
     add e5e3563  feat: annotations list CRUD view (#11446)
     add e230865  chore(chart-data): add annotations and url params to chart data schema (#11393)
     add 52294c8  refactor: Replace react-bootstrap Modals with Antd in Datasource (#11390)
     add 79ff611  Merge branch 'master' into feature/filter-p0

No new revisions were added by this update.

Summary of changes:
 RELEASING/Dockerfile.from_local_tarball            |    4 +-
 RELEASING/Dockerfile.from_svn_tarball              |    2 +-
 RELEASING/Dockerfile.make_docs                     |    2 +-
 RELEASING/Dockerfile.make_tarball                  |    2 +-
 RELEASING/README.md                                |   16 +-
 .../integration/chart_list/card_view.test.ts       |   79 +-
 .../cypress/integration/chart_list/filter.test.ts  |   54 +-
 .../integration/chart_list/list_view.test.ts       |   31 +-
 .../integration/dashboard/edit_properties.test.ts  |    6 +-
 .../cypress/integration/dashboard/save.test.js     |   10 +-
 .../integration/dashboard_list/card_view.test.ts   |   20 +-
 .../integration/explore/AdhocFilters.test.ts       |   44 +-
 .../integration/explore/AdhocMetrics.test.ts       |   41 +-
 .../cypress/integration/explore/control.test.ts    |   22 +-
 .../cypress/integration/explore/link.test.js       |   58 +-
 superset-frontend/package-lock.json                | 2632 ++++----------------
 superset-frontend/package.json                     |   52 +-
 .../components/ConfirmStatusChange_spec.jsx        |    2 +-
 .../datasource/ChangeDatasourceModal_spec.jsx      |    3 +-
 .../datasource/DatasourceModal_spec.jsx            |    4 +-
 .../explore/components/AdhocFilterOption_spec.jsx  |    4 +-
 .../explore/components/AdhocMetricOption_spec.jsx  |   12 +-
 .../views/CRUD/annotation/AnnotationList_spec.jsx  |  113 +
 superset-frontend/src/CRUD/CollectionTable.tsx     |    3 +-
 superset-frontend/src/CRUD/Field.jsx               |    2 +-
 .../src/common/components/{ => Modal}/Modal.tsx    |   10 +-
 .../TableView => common/components/Modal}/index.ts |    3 +-
 .../src/common/components/Popover.tsx              |    3 +-
 superset-frontend/src/components/DeleteModal.tsx   |    2 +-
 .../src/components/ErrorMessage/ErrorAlert.tsx     |   68 +-
 superset-frontend/src/components/Modal.tsx         |  103 -
 superset-frontend/src/components/OmniContainer.jsx |   16 +-
 .../components/dataViewCommon/TableCollection.tsx  |    2 +-
 .../src/dashboard/components/PropertiesModal.jsx   |  271 +-
 .../src/datasource/ChangeDatasourceModal.tsx       |  131 +-
 .../src/datasource/DatasourceEditor.jsx            |    1 +
 .../src/datasource/DatasourceModal.tsx             |   53 +-
 .../src/explore/components/AdhocFilterOption.jsx   |   85 +-
 .../src/explore/components/AdhocMetricOption.jsx   |   72 +-
 .../src/explore/components/SaveModal.jsx           |    2 +-
 .../components/controls/AdhocFilterControl.jsx     |    6 +-
 superset-frontend/src/views/App.tsx                |    6 +
 .../src/views/CRUD/annotation/AnnotationList.tsx   |  195 ++
 .../CRUD/{csstemplates => annotation}/types.ts     |   18 +-
 .../views/CRUD/data/dataset/AddDatasetModal.tsx    |    2 +-
 superset-frontend/src/views/CRUD/hooks.ts          |    4 +-
 .../annotation_layers/annotations}/__init__.py     |    0
 superset/annotation_layers/annotations/api.py      |   42 +-
 .../annotations/commands/update.py                 |   12 +-
 superset/annotation_layers/annotations/dao.py      |    2 +-
 superset/annotation_layers/annotations/schemas.py  |    1 -
 superset/charts/schemas.py                         |  109 +
 superset/common/query_context.py                   |    2 +
 superset/common/query_object.py                    |    4 +
 superset/config.py                                 |    1 +
 superset/views/annotations.py                      |   18 +-
 56 files changed, 1621 insertions(+), 2841 deletions(-)
 create mode 100644 superset-frontend/spec/javascripts/views/CRUD/annotation/AnnotationList_spec.jsx
 rename superset-frontend/src/common/components/{ => Modal}/Modal.tsx (91%)
 copy superset-frontend/src/{components/TableView => common/components/Modal}/index.ts (93%)
 delete mode 100644 superset-frontend/src/components/Modal.tsx
 create mode 100644 superset-frontend/src/views/CRUD/annotation/AnnotationList.tsx
 copy superset-frontend/src/views/CRUD/{csstemplates => annotation}/types.ts (80%)
 copy {tests/security => superset/annotation_layers/annotations}/__init__.py (100%)