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/27 22:20:43 UTC

(superset) branch pyproject.toml updated (1880789aab -> afe0ce0399)

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

maximebeauchemin pushed a change to branch pyproject.toml
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 1880789aab checks:write
 discard 6e700cf57f actions:write
 discard e34766b65e improvements
 discard fd4f8aa368 shell bash
 discard ac50a9817b feat: make supersetbot do what dependabot should do
     add 6aee58fad6 chore: fix master builds + bump python library "cryptography" (#27641)
     add cf010b63e3 chore(🤖): bump python "sqlalchemy==1.4.52" (#27655)
     add ce210eebde fix(Chart Annotation modal): Table and Superset annotation options will paginate, exceeding previous max limit 100 (#27022)
     add fa3fea9dd8 fix(sqllab): unable to remove table (#27636)
     add ed9e542781 fix(AlertReports): disabling value when not null option is active (#27550)
     add 28cbedb82f fix: Leverage actual database for rendering Jinjarized SQL (#27646)
     add 12921e6ec3 chore(🤖): bump python "flask==2.3.3" (#27657)
     add 3ae74d1f2d fix: Provide more inclusive error handling for saved queries (#27644)
     add 46fcfd80d7 chore(🦾): bump python "pyarrow==14.0.2" (#27684)
     add 2c833b507c chore(🦾): bump python "polyline==2.0.2" (#27681)
     add 9960c78923 chore(🦾): bump python "click==8.1.7" (#27682)
     add a0cf91dad0 chore(🦾): bump python "croniter==2.0.3" (#27693)
     add c2183e47ec chore(🦾): bump python "pyparsing==3.1.2" (#27692)
     add 4b971ec7a9 chore(🦾): bump python "backoff==2.2.1" (#27698)
     add 349e496da5 chore(🦾): bump python "geopy==2.4.1" (#27699)
     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 dcffcee7b8 feat: make supersetbot do what dependabot should do
     add 14394e572b shell bash
     add e23b498de2 improvements
     add 9c49b4a3e2 actions:write
     add 73127e7d9d checks:write
     add abf8b63182 add from & to information as requested
     add afe0ce0399 adding optional-deps support

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   (1880789aab)
            \
             N -- N -- N   refs/heads/pyproject.toml (afe0ce0399)

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/cli.js                     |   7 +-
 .github/supersetbot/src/github.js                  |  88 ++++--
 .github/supersetbot/src/metadata.js                |   1 +
 .github/supersetbot/src/utils.js                   |   4 +-
 .github/workflows/bump-python-package.yml          |  19 +-
 requirements/base.txt                              |  31 +-
 requirements/development.in                        |   2 +-
 requirements/development.txt                       |  10 +-
 superset-frontend/package-lock.json                |  19 ++
 superset-frontend/package.json                     |   1 +
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   8 +-
 .../src/SqlLab/actions/sqlLab.test.js              |  24 +-
 .../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 ++-
 .../AnnotationLayerControl/AnnotationLayer.jsx     | 350 ++++++++++++++-------
 .../AnnotationLayer.test.tsx                       | 125 +++++---
 .../DndColumnSelectControl/DndSelectLabel.tsx      |  10 +-
 .../components/controls/OptionControls/index.tsx   |  92 +++++-
 .../src/features/alerts/AlertReportModal.test.tsx  |   5 +-
 .../src/features/alerts/AlertReportModal.tsx       |   5 +-
 superset-frontend/src/pages/Chart/Chart.test.tsx   |   3 +
 superset/models/sql_lab.py                         |   5 +-
 superset/security/manager.py                       |   4 +-
 superset/sql_parse.py                              |  16 +-
 tests/integration_tests/celery_tests.py            |  32 +-
 tests/unit_tests/models/sql_lab_test.py            |  59 ++++
 tests/unit_tests/sql_parse_tests.py                |   6 +-
 32 files changed, 1259 insertions(+), 468 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
 create mode 100644 tests/unit_tests/models/sql_lab_test.py