You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2024/03/28 00:21:32 UTC

(superset) branch supersetbot-bump-flask-session==0.8.0 updated (58114aaaa0 -> fb134dba36)

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

maximebeauchemin pushed a change to branch supersetbot-bump-flask-session==0.8.0
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 58114aaaa0 deprecating SESSION_USE_SIGNER
 discard cdfc67847a chore(🦾): bump python flask-session==0.8.0
     add 6db94e98b5 other: Add TechAuditBI to supersetbot metadata.js (#27634)
     add 47adcd7f32 chore(🦾): bump python "wtforms==3.1.2" (#27688)
     add 86bd7a93b5 chore(🦾): bump python "msgpack==1.0.8" (#27696)
     add a48f770195 chore: bump pylint (#27711)
     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 bccd654b01 chore(🦾): bump python thrift 0.16.0 -> 0.20.0 (#27730)
     add 40a4806857 chore(🦾): bump python pydruid 0.6.5 -> 0.6.6 (#27731)
     add 5dbee13b3e chore(🦾): bump python playwright 1.41.2 -> 1.42.0 (#27726)
     add 0c192232ca chore(🦾): bump python typing-extensions 4.4.0 -> 4.10.0 (#27742)
     add 0710242f22 chore(🦾): bump python click-option-group 0.5.5 -> 0.5.6 (#27741)
     add c9d98a5679 chore(🦾): bump python pyjwt 2.4.0 -> 2.8.0 (#27737)
     add 1e3393cfa0 chore(🦾): bump python python-dateutil 2.8.2 -> 2.9.0.post0 (#27736)
     add 2ed5a346c4 chore(🦾): bump python mako 1.2.4 -> 1.3.2 (#27735)
     add bc62a80b8c chore(🦾): bump python tabulate 0.8.9 -> 0.8.10 (#27733)
     add fa76262b01 chore(🦾): bump python tableschema 1.20.2 -> 1.20.10 (#27732)
     add e5ebfd5c50 chore(🦾): bump python sqlalchemy-bigquery 1.6.1 -> 1.10.0 (#27727)
     add 34dca0eb31 chore(🦾): bump python mysqlclient 2.1.0 -> 2.2.4 (#27729)
     add a4c5446d2f chore(🦾): bump python flask-compress 1.13 -> 1.14 (#27740)
     add 174c89927d chore(🦾): bump python flask-session==0.8.0
     add 649feda138 deprecating SESSION_USE_SIGNER
     add fb134dba36 try noqa

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   (58114aaaa0)
            \
             N -- N -- N   refs/heads/supersetbot-bump-flask-session==0.8.0 (fb134dba36)

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/supersetbot/src/metadata.js                |   1 +
 requirements/base.txt                              |  28 ++-
 requirements/development.txt                       |  53 ++---
 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/config.py                                 |   2 +-
 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 +-
 25 files changed, 733 insertions(+), 301 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