You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by yj...@apache.org on 2020/11/30 05:12:40 UTC

[incubator-superset] branch perf-recent-activity updated (b2fc5f5 -> 6b88fa9)

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

yjc pushed a change to branch perf-recent-activity
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


 discard b2fc5f5  perf: improve loading speed of recent activities
     add bac84a3  fix: delete chart, dashboards, dbs with assoc reports (#11801)
     add 1591d75  fix(setup): disallow python 3.6 for pip install (#11825)
     add 3578410  docs(release): small fixes and deprecate apache docs (#11827)
     add f121107  ci(docker): build image on release (#11828)
     add 43c69d5  fix: Adding and removing annotations (#11811)
     add ec01691  fix: wrong key used  FEATURE_FLAGS[LISTVIEW_DEFAULT_CARD_VIEW]  (#11824)
     add 671ff6c  fix: improve Avatar text size consistency (#11837)
     add e974b0b  Change subtabs order for Data tab (#11834)
     add 926f436  perf: improve loading speed of recent activities
     add 6b88fa9  fix pylint

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (b2fc5f5)
            \
             N -- N -- N   refs/heads/perf-recent-activity (6b88fa9)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

No new revisions were added by this update.

Summary of changes:
 .github/workflows/docker.yml                       |  9 ++-
 .github/workflows/docker_build_push.sh             |  3 +
 RELEASING/README.md                                | 42 +++--------
 RELEASING/make_docs.sh                             | 55 --------------
 RELEASING/make_docs_entrypoint.sh                  | 26 -------
 UPDATING.md                                        |  2 +-
 setup.py                                           |  5 +-
 .../src/components/FacePile/index.tsx              | 23 +++---
 .../components/controls/AnnotationLayer.jsx        | 87 ++++++++++++----------
 .../components/controls/AnnotationLayerControl.jsx | 53 +++++++------
 superset-frontend/src/views/CRUD/data/common.ts    | 12 +--
 superset/charts/commands/bulk_delete.py            | 10 +++
 superset/charts/commands/delete.py                 | 10 +++
 superset/charts/commands/exceptions.py             | 10 ++-
 superset/config.py                                 |  4 +-
 superset/dashboards/commands/bulk_delete.py        | 10 +++
 superset/dashboards/commands/delete.py             | 10 +++
 superset/dashboards/commands/exceptions.py         |  8 ++
 superset/databases/commands/delete.py              | 11 +++
 superset/databases/commands/exceptions.py          |  4 +
 superset/reports/dao.py                            | 48 ++++++++++++
 superset/reports/schemas.py                        |  2 +-
 superset/views/core.py                             | 40 +++++-----
 tests/charts/api_tests.py                          | 69 ++++++++++++++++-
 tests/dashboards/api_tests.py                      | 71 ++++++++++++++++++
 tests/databases/api_tests.py                       | 45 +++++++++++
 26 files changed, 448 insertions(+), 221 deletions(-)
 delete mode 100755 RELEASING/make_docs.sh
 delete mode 100755 RELEASING/make_docs_entrypoint.sh