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/14 23:06:05 UTC

(superset) branch supersetbot updated (a2d8034f87 -> 84de22ab8f)

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 a2d8034f87 Update .github/workflows/supersetbot.yml
    omit f893e84a8e Update .github/workflows/supersetbot.yml
    omit a6d1b068d1 Update .github/workflows/supersetbot.yml
    omit 399191559e debugging remotely
    omit b7284ecfdc debugging remotely
    omit cacede689d debugging remotely
    omit ad4bbf59e7 debugging remotely
    omit a978cae972 debugging remotely
    omit efc2356339 debugging remotely
    omit f6e72563a4 debugging remotely
    omit c4bed5a15e debugging remotely
    omit dd02acca37 debugging remotely
    omit 0ea5f64b5e add trigger for debugging
    omit 6fea115756 add trigger for debugging
    omit d9aa7dfc62 fix js bug
    omit e83b6e14af fix js bug
    omit 101d3bec64 fix js bug
    omit 34e16be9a9 use workflow_dispatch to make things testable
    omit 2889ad6233 get it to trigger
    omit 41247b1424 get it to trigger
    omit 98c50e7a92 get it to trigger
    omit d12ac3445f get it to trigger
    omit 869411c2b3 get it to trigger
    omit 314f02f080 fix yaml
    omit af31502c17 feat(supersetbot): re-implement labeling bot as a GitHub action
     add 66b4670300 fix(actions): correcting malformed labeler configs (#27048)
     add c222464d05 chore(docs): bump version number in docs example (#27038)
     add fd06ff3745 fix(explore): allow free-form d3 format on custom column formatting (#27023)
     add 3700326c35 fix(ephemeral): fix ephemeral builds in PR (#27056)
     add 81301ee54e fix(ephemeral): fix tagging command for ECR (#27057)
     add cf84f36a6c chore: prevent prophet from logging non-errors as errors (#27053)
     add 6f402991e5 fix(plugins): missing currency on small number format in table chart (#27041)
     add ee69ac97c8 fix(ephemeral): point to the full tag name (#27058)
     add 5951f6ceb6 fix(ephemeral): last try fixing this GH action (#27060)
     add 13915bbb54 feat(docker): allow for docker release builds to be multi-platform (#27055)
     add 595c6ce3e6 chore: Add granular permissions for actions in Dashboard (#27029)
     add f59498fcb9 fix(helm): Include option to use Redis with SSL (#26663)
     add 005cee023b fix: Exclude header controls from dashboard PDF export (#27068)
     add 3f91bdb40d fix: Filters sidebar stretching dashboard height (#27069)
     add c010f99020 docs(installation): document multi-platform support in Docker builds (#27072)
     add faaf14bcc4 fix: Drill by with GLOBAL_ASYNC_QUERIES (#27066)
     add 435cd2705e feat(plugins): Update custom controls for BigNumber with Time Comparison chart (#27054)
     add 6c5e8fa175 chore(docs): adding meta db to Feature Flags page (#27071)
     add 16e49cb2f7 fix(ci): new PR comments cancel ongoing ephemeral builds (#27085)
     add 0950bb7b7d fix(drill): no rows returned (#27073)
     add 8bee6edc47 fix(ci): Docker master builds fail while checking version (#27087)
     add e8e208dd14 feat(plugins): Adding colors to BigNumber with Time Comparison chart (#27052)
     add 884ea03480 fix(deps): un-bumping dom-to-pdf ro resolve missing file warnings (#27091)
     add 875ac73abf feat(supersetbot): re-implement labeling bot as a GitHub action
     add 84de22ab8f fix

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   (a2d8034f87)
            \
             N -- N -- N   refs/heads/supersetbot (84de22ab8f)

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/labeler.yml                                |     8 +-
 .github/supersetbot/.babelrc                       |     5 +
 .github/supersetbot/.eslintrc.json                 |    16 +
 .github/supersetbot/jest.config.js                 |     9 +
 .github/supersetbot/package-lock.json              | 13292 +++++++++++++++++++
 .github/supersetbot/package.json                   |    35 +
 .github/supersetbot/src/cli.js                     |    63 +
 .github/supersetbot/src/commands.js                |   105 +
 .github/supersetbot/src/context.js                 |   132 +
 .../supersetbot/src}/index.js                      |     4 +-
 .../supersetbot/src/metadata.js                    |    18 +-
 .../supersetbot/src/supersetbot                    |    18 +-
 .../supersetbot/src/utils.js                       |    27 +-
 .github/supersetbot/src/utils.test.js              |    42 +
 .github/workflows/docker-release.yml               |    16 +-
 .github/workflows/ephemeral-env.yml                |    26 +-
 .github/workflows/supersetbot.yml                  |    71 +-
 RESOURCES/FEATURE_FLAGS.md                         |     1 +
 docs/docs/installation/alerts-reports.mdx          |    10 +-
 docs/docs/installation/docker.mdx                  |    28 +-
 helm/superset/Chart.yaml                           |     2 +-
 helm/superset/README.md                            |     7 +-
 helm/superset/templates/_helpers.tpl               |    39 +-
 helm/superset/templates/secret-env.yaml            |     7 +
 helm/superset/values.yaml                          |    10 +-
 scripts/build_docker.py                            |    51 +-
 setup.py                                           |     2 +-
 superset-frontend/package-lock.json                |     2 +-
 superset-frontend/package.json                     |     2 +-
 .../superset-ui-chart-controls/src/types.ts        |     1 +
 .../src/PopKPI.tsx                                 |   104 +-
 .../src/images/thumbnail.png                       |   Bin 23099 -> 10434 bytes
 .../src/plugin/buildQuery.ts                       |   208 +-
 .../src/plugin/controlPanel.ts                     |    67 +-
 .../src/plugin/transformProps.ts                   |     5 +-
 .../src/types.ts                                   |    19 +-
 .../src/{plugin/buildQuery.ts => utils.ts}         |   111 +-
 .../plugin-chart-table/src/utils/formatValue.ts    |     6 +
 .../plugin-chart-table/test/TableChart.test.tsx    |    42 +
 .../Chart/ChartContextMenu/ChartContextMenu.tsx    |    12 +-
 .../Chart/ChartContextMenu/useContextMenu.test.tsx |    38 +-
 .../components/Chart/DrillBy/DrillByModal.test.tsx |     2 +-
 .../src/components/Chart/DrillBy/DrillByModal.tsx  |    11 +-
 .../Chart/DrillDetail/DrillDetailModal.test.tsx    |     2 +-
 .../src/components/Chart/chartAction.js            |    52 +-
 .../src/components/Chart/chartActions.test.js      |    43 +-
 .../DashboardBuilder/DashboardWrapper.tsx          |     1 +
 .../SliceHeaderControls.test.tsx                   |    78 +-
 .../components/SliceHeaderControls/index.tsx       |    34 +-
 .../controls/ColumnConfigControl/constants.tsx     |     1 +
 superset-frontend/src/types/dom-to-pdf.d.ts        |     1 +
 superset-frontend/src/utils/downloadAsPdf.ts       |     1 +
 superset/db_engine_specs/drill.py                  |    37 +-
 ...83218_migrate_can_view_and_drill_permission.py} |    43 +-
 superset/security/manager.py                       |     3 +-
 superset/utils/decorators.py                       |    19 +
 superset/utils/pandas_postprocessing/prophet.py    |     7 +-
 ...migrate_can_view_and_drill_permission__tests.py |    61 +
 tests/integration_tests/security_tests.py          |     6 +-
 tests/unit_tests/scripts/docker_build.py           |    60 +-
 tests/unit_tests/utils/test_decorators.py          |    45 +
 61 files changed, 14571 insertions(+), 597 deletions(-)
 create mode 100644 .github/supersetbot/.babelrc
 create mode 100644 .github/supersetbot/.eslintrc.json
 create mode 100644 .github/supersetbot/jest.config.js
 create mode 100644 .github/supersetbot/package-lock.json
 create mode 100644 .github/supersetbot/package.json
 create mode 100755 .github/supersetbot/src/cli.js
 create mode 100644 .github/supersetbot/src/commands.js
 create mode 100644 .github/supersetbot/src/context.js
 copy {superset-frontend/plugins/plugin-chart-pivot-table/src/react-pivottable => .github/supersetbot/src}/index.js (89%)
 copy superset-frontend/src/components/MessageToasts/mockMessageToasts.js => .github/supersetbot/src/metadata.js (73%)
 copy superset-frontend/spec/helpers/ResizeObserver.ts => .github/supersetbot/src/supersetbot (82%)
 mode change 100644 => 100755
 copy superset-frontend/packages/superset-ui-core/src/validator/validateMapboxStylesUrl.ts => .github/supersetbot/src/utils.js (62%)
 create mode 100644 .github/supersetbot/src/utils.test.js
 copy superset-frontend/plugins/plugin-chart-period-over-period-kpi/src/{plugin/buildQuery.ts => utils.ts} (70%)
 copy superset/migrations/versions/{2020-12-16_12-15_e37912a26567_security_converge_queries.py => 2024-02-07_17-13_87d38ad83218_migrate_can_view_and_drill_permission.py} (73%)
 create mode 100644 tests/integration_tests/migrations/87d38ad83218_migrate_can_view_and_drill_permission__tests.py