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/02/18 09:39:50 UTC

(superset) branch supersetbot updated (1ad5edf007 -> ba809dbda4)

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

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


    omit 1ad5edf007 version bump
    omit 43d00660ca add a version subcommand
    omit e729155688 more progress
    omit 8e41ab7cad more progress
    omit 6dbb8079ab more progress
    omit 520880db2b tweaks
    omit 05bc1af439 debug
    omit 40a5e3435b debug
    omit fc18478ade docker action
    omit a7f5388fb3 docker action
    omit 5ec332dea2 progress
    omit 27bb6bc8bc YUP
    omit 7ad3cfc4db format JSON
    omit 3fcb3b5bbc fix
    omit 4dcc9c1681 feat(supersetbot): re-implement labeling bot as a GitHub action
     add acb2d1d6b4 fix: Plain error message when visiting a dashboard via permalink without permissions (#27132)
     add 1ff4f79d5b docs: add Geotab to users list (#27134)
     add cf33a6213d fix: Duplicated toast messages (#27135)
     add dab44c0b6f fix(plugins): Apply dashboard filters to comparison query in BigNumber with Time Comparison chart (#27138)
     add 8749d9f386 chore(tests): Remove unnecessary explicit Flask-SQLAlchemy session expunges (#27136)
     add bc7ececdc1 feat(supersetbot): re-implement labeling bot as a GitHub action
     add 2f9bccfef5 fix
     add 45e143ea3a format JSON
     add c51d68a931 YUP
     add ef9097e745 progress
     add 98e846cdc8 docker action
     add 6de49f85a9 docker action
     add 139dccad74 debug
     add 5c0a3e9c7c debug
     add 5f1ad679d4 tweaks
     add 6800fbf35c more progress
     add c4ad7517a3 more progress
     add 4eba0a9af3 more progress
     add 3ff9195585 add a version subcommand
     add 435b7b2abd version bump
     add ba809dbda4 working on first release command

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   (1ad5edf007)
            \
             N -- N -- N   refs/heads/supersetbot (ba809dbda4)

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/.babelrc                       |    5 -
 .github/supersetbot/.eslintrc.json                 |    4 +-
 .github/supersetbot/jest.config.js                 |    1 -
 .github/supersetbot/package-lock.json              | 9816 ++++++++------------
 .github/supersetbot/package.json                   |    9 +-
 .github/supersetbot/src/cli.js                     |   65 +-
 .github/supersetbot/src/commands.js                |  105 -
 .github/supersetbot/src/context.js                 |   66 +-
 .github/supersetbot/src/git.js                     |  112 +
 .github/supersetbot/src/git_release.js             |   52 +
 .github/supersetbot/src/github.js                  |  173 +
 .github/supersetbot/src/index.js                   |   12 +-
 .github/supersetbot/src/index.test.js              |   51 +
 .github/supersetbot/src/metadata.js                |    1 +
 .github/supersetbot/src/utils.index.js             |   42 -
 RESOURCES/INTHEWILD.md                             |    1 +
 .../src/plugin/buildQuery.ts                       |   10 +-
 .../src/SqlLab/reducers/getInitialState.ts         |    4 -
 .../MessageToasts/getToastsFromPyFlashMessages.js  |   40 -
 .../getToastsFromPyFlashMessages.test.js           |   48 -
 .../src/dashboard/components/Dashboard.jsx         |    2 -
 .../src/dashboard/components/Dashboard.test.jsx    |    1 -
 .../FilterBarSettings/FilterBarSettings.test.tsx   |    1 -
 .../src/dashboard/containers/Dashboard.ts          |    1 -
 superset-frontend/src/dashboard/types.ts           |    1 -
 superset/views/core.py                             |    4 +
 tests/integration_tests/base_tests.py              |    7 +-
 tests/integration_tests/core_tests.py              |    7 +-
 .../security/guest_token_security_tests.py         |    4 +-
 tests/integration_tests/security_tests.py          |    6 +-
 30 files changed, 4200 insertions(+), 6451 deletions(-)
 delete mode 100644 .github/supersetbot/.babelrc
 delete mode 100644 .github/supersetbot/src/commands.js
 create mode 100644 .github/supersetbot/src/git.js
 create mode 100644 .github/supersetbot/src/git_release.js
 create mode 100644 .github/supersetbot/src/github.js
 create mode 100644 .github/supersetbot/src/index.test.js
 delete mode 100644 .github/supersetbot/src/utils.index.js
 delete mode 100644 superset-frontend/src/components/MessageToasts/getToastsFromPyFlashMessages.js
 delete mode 100644 superset-frontend/src/components/MessageToasts/getToastsFromPyFlashMessages.test.js