You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by be...@apache.org on 2024/03/27 20:44:08 UTC

(superset) branch sip-85 updated (ff5342571d -> 4be844a201)

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

beto pushed a change to branch sip-85
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard ff5342571d Bump shillelagh
 discard ca939bc755 Use DAO, Marshmallow schema, and cascade deletes
 discard 4eac75428e Refactor JWT encode/decode
 discard 76ee437cf9 Make lock generic
 discard ca1c5a16fc Add KV lock for refreshing tokens
 discard 35fac9b504 Add more tests
 discard 7453ae7fc7 feat(SIP-85): OAuth2 for databases
     add 7369754192 fix(explore): drag and drop indicator UX (#27558)
     add 7b44b8b7e1 chore(🦾): bump python "isodate==0.6.1" (#27680)
     add c73b24ad08 chore(🦾): bump python "nh3==0.2.17" (#27687)
     add 38eecfc5d4 perf(explore): virtualized datasource field sections (#27625)
     add 585144578e chore(🦾): bump python "sqlalchemy==1.4.52" (#27695)
     add 528946d3cc fix: Revert "chore: bump pylint (#27711)" (#27714)
     add 883e455e12 fix: Pylint errors on master (#27710)
     add 794294882b feat(SIP-85): OAuth2 for databases
     add 487f5b0a5d Add more tests
     add d880260bc8 Add KV lock for refreshing tokens
     add 64707acd8a Make lock generic
     add 187928a3cd Refactor JWT encode/decode
     add 3f09ae0e4a Use DAO, Marshmallow schema, and cascade deletes
     add 4be844a201 Bump shillelagh

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   (ff5342571d)
            \
             N -- N -- N   refs/heads/sip-85 (4be844a201)

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:
 requirements/base.txt                              |   6 +-
 requirements/development.in                        |   2 +-
 requirements/development.txt                       |  10 +-
 superset-frontend/package-lock.json                |  19 ++
 superset-frontend/package.json                     |   1 +
 .../DatasourcePanel/DatasourcePanel.test.tsx       |  12 ++
 .../DatasourcePanel/DatasourcePanelItem.test.tsx   | 168 +++++++++++++++
 .../DatasourcePanel/DatasourcePanelItem.tsx        | 234 +++++++++++++++++++++
 .../explore/components/DatasourcePanel/index.tsx   | 219 +++++--------------
 .../ExploreContainer/ExploreContainer.test.tsx}    |  64 +++---
 .../explore/components/ExploreContainer/index.tsx  |  60 ++++++
 .../components/ExploreViewContainer/index.jsx      |  44 ++--
 .../DndColumnSelectControl/DndSelectLabel.tsx      |  10 +-
 .../components/controls/OptionControls/index.tsx   |  92 ++++++--
 superset-frontend/src/pages/Chart/Chart.test.tsx   |   3 +
 superset/connectors/sqla/models.py                 |   2 +-
 superset/connectors/sqla/views.py                  |   3 +-
 superset/models/helpers.py                         |   3 +-
 superset/models/sql_lab.py                         |   3 +-
 superset/tags/models.py                            |   4 +-
 superset/utils/core.py                             |   3 +-
 superset/utils/date_parser.py                      |   2 +-
 superset/views/chart/mixin.py                      |   2 +-
 superset/views/database/mixins.py                  |   2 +-
 24 files changed, 709 insertions(+), 259 deletions(-)
 create mode 100644 superset-frontend/src/explore/components/DatasourcePanel/DatasourcePanelItem.test.tsx
 create mode 100644 superset-frontend/src/explore/components/DatasourcePanel/DatasourcePanelItem.tsx
 copy superset-frontend/src/{dashboard/components/DashboardBuilder/DashboardWrapper.test.tsx => explore/components/ExploreContainer/ExploreContainer.test.tsx} (57%)
 create mode 100644 superset-frontend/src/explore/components/ExploreContainer/index.tsx