You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by gi...@apache.org on 2023/04/20 18:30:11 UTC

[superset] branch dependabot/npm_and_yarn/superset-frontend/eslint-8.38.0 updated (c8ce23338e -> 811a9fed6b)

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

github-bot pushed a change to branch dependabot/npm_and_yarn/superset-frontend/eslint-8.38.0
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard c8ce23338e build(deps-dev): bump eslint from 7.32.0 to 8.38.0 in /superset-frontend
     add 37a78b14be feat(sqllab): add headers when copying results to clipboard (#23720)
     add e9b4022787 fix: is_select check for lowercase select with "WITH" clauses (#22370)
     add 0ad6c879b3 feat: add enforce URI query params with a specific for MySQL (#23723)
     add 70f3cc0b27 chore(helm): Reformat helm chart templates (#23681)
     add 2a01aa66d5 feat: Add loading state to sqllab save/overwrite dataset modal (#23697)
     add 8bd432274a chore(api v1): Deprecate superset/override_role_permissions endpoint (#23714)
     add 0c0d2b38a6 fix(sqllab): infinite running state on disconnect (#23669)
     add d6b6d9eae6 feat: Makes "Add to dashboard" in Save chart modal paginated (#23634)
     add 818a1d482b feat: Drill by error management (#23724)
     add 44557f5a23 chore(api v1): Deprecate datasource/save and datasource/get endpoints (#23678)
     add 306fb22021 chore(chart-data): add post processing error message to response (#23734)
     add f80e738196 fix: get or create db with an existing invalid URL (#23737)
     add b2b8c3e05b fix(ace-editor): use monospace fonts by default (#23747)
     add 60c9d68403 feat(adhoc-column): add resize option (#23748)
     add 171d93cee0 build(deps-dev): bump @typescript-eslint/parser from 5.58.0 to 5.59.0 in /superset-websocket (#23718)
     add 811a9fed6b build(deps-dev): bump eslint from 7.32.0 to 8.38.0 in /superset-frontend

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   (c8ce23338e)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-frontend/eslint-8.38.0 (811a9fed6b)

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:
 helm/superset/templates/NOTES.txt                  |   4 +-
 helm/superset/templates/_helpers.tpl               |  45 +--
 helm/superset/templates/configmap-superset.yaml    |   8 +-
 helm/superset/templates/deployment-beat.yaml       |  75 ++---
 helm/superset/templates/deployment-flower.yaml     |  76 ++---
 helm/superset/templates/deployment-worker.yaml     |  95 +++---
 helm/superset/templates/deployment-ws.yaml         |  68 ++--
 helm/superset/templates/deployment.yaml            |  96 +++---
 helm/superset/templates/ingress.yaml               |  21 +-
 helm/superset/templates/init-job.yaml              |  48 ++-
 helm/superset/templates/secret-env.yaml            |   2 +-
 .../superset/templates/secret-superset-config.yaml |  18 +-
 helm/superset/templates/secret-ws.yaml             |   6 +-
 helm/superset/templates/service-account.yaml       |   2 +-
 helm/superset/templates/service.yaml               |  19 +-
 helm/superset/values.yaml                          |  51 +--
 .../cypress/integration/dashboard/utils.ts         |   4 -
 .../cypress/integration/explore/utils.ts           |   7 +-
 .../superset-ui-chart-controls/src/fixtures.ts     |   2 +-
 .../superset-ui-chart-controls/src/types.ts        |   2 +-
 .../test/utils/columnChoices.test.tsx              |   2 +-
 .../test/utils/defineSavedMetrics.test.tsx         |   2 +-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   5 +
 .../SqlLab/components/AceEditorWrapper/index.tsx   |   3 -
 .../src/SqlLab/components/App/index.jsx            |   3 +-
 .../QueryAutoRefresh/QueryAutoRefresh.test.tsx     | 127 ++++++--
 .../SqlLab/components/QueryAutoRefresh/index.tsx   |  46 +--
 .../SqlLab/components/SaveDatasetModal/index.tsx   |   8 +
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |  15 +
 .../src/components/AsyncAceEditor/index.tsx        |   3 +
 .../components/Chart/DrillBy/DrillByMenuItems.tsx  |   5 +-
 .../components/Chart/DrillBy/DrillByModal.test.tsx |  20 +-
 .../src/components/Chart/DrillBy/DrillByModal.tsx  |  48 ++-
 .../Datasource/ChangeDatasourceModal.test.jsx      |   4 +-
 .../Datasource/ChangeDatasourceModal.tsx           |   6 +-
 .../components/Datasource/DatasourceModal.test.jsx |  12 +-
 .../src/components/Datasource/DatasourceModal.tsx  |  98 ++++--
 superset-frontend/src/dashboard/constants.ts       |   2 +-
 .../src/explore/actions/datasourcesActions.test.ts |   4 +-
 .../src/explore/actions/saveModalActions.js        |  37 ---
 .../src/explore/actions/saveModalActions.test.js   |  68 ----
 .../DataTablesPane/test/DataTablesPane.test.tsx    |   2 +-
 .../src/explore/components/SaveModal.test.jsx      |  24 +-
 .../src/explore/components/SaveModal.tsx           | 294 +++++++++--------
 .../DatasourceControl/DatasourceControl.test.tsx   |  23 +-
 .../DndColumnSelectControl/ColumnSelectPopover.tsx |  15 +-
 .../DndColumnSelectControl/useResizeButton.tsx     | 139 ++++++++
 .../FilterControl/AdhocFilterEditPopover/index.jsx |   2 +-
 .../MetricControl/AdhocMetricEditPopover/index.jsx |   2 +-
 superset-frontend/src/explore/constants.ts         |   2 -
 .../src/explore/controlUtils/controlUtils.test.tsx |   2 +-
 ...etControlValuesCompatibleWithDatasource.test.ts |   2 +-
 superset-frontend/src/explore/fixtures.tsx         |   4 +-
 superset-frontend/src/utils/common.js              |  10 +-
 superset-frontend/src/utils/common.test.jsx        |  24 +-
 .../src/utils/getDatasourceUid.test.ts             |   2 +-
 superset-websocket/package-lock.json               | 356 +++------------------
 superset-websocket/package.json                    |   2 +-
 superset/common/query_context_processor.py         |   2 +-
 superset/connectors/base/models.py                 |  40 ++-
 superset/connectors/sqla/models.py                 |  14 +-
 superset/datasets/api.py                           |   8 +
 superset/datasets/commands/exceptions.py           |  17 +
 superset/datasets/commands/update.py               |  11 +
 superset/datasets/schemas.py                       |   2 +-
 superset/db_engine_specs/base.py                   |  11 +-
 superset/db_engine_specs/mysql.py                  |   6 +-
 superset/models/core.py                            |   5 +-
 superset/security/manager.py                       |   1 -
 superset/sql_parse.py                              |   4 +-
 superset/views/core.py                             |   1 +
 superset/views/datasource/views.py                 |   3 +
 tests/integration_tests/charts/data/api_tests.py   |  27 ++
 tests/integration_tests/datasets/api_tests.py      |  50 ++-
 tests/integration_tests/model_tests.py             |  15 +
 tests/integration_tests/utils_tests.py             |   7 +
 tests/unit_tests/db_engine_specs/test_mysql.py     |  34 +-
 tests/unit_tests/sql_parse_tests.py                |  22 ++
 78 files changed, 1257 insertions(+), 1095 deletions(-)
 create mode 100644 superset-frontend/src/explore/components/controls/DndColumnSelectControl/useResizeButton.tsx