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/03/20 20:08:04 UTC

[superset] branch dependabot/npm_and_yarn/superset-frontend/eslint-8.36.0 updated (34eeb7e2f3 -> c3a5c3a80d)

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.36.0
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 34eeb7e2f3 build(deps-dev): bump eslint from 7.32.0 to 8.36.0 in /superset-frontend
     add 022213972b fix(dashboard): `show_native_filters` leftover (#23389)
     add 8fa77adf9a chore: Hugh/migrate estimate query cost to v1 (#23226)
     add f4035e096f chore: update releasing process for testing (#23331)
     add 2c6f581fa6 feat(postgresql): dynamic schema (#23401)
     add a5c31b2426 feat(chart): Added  SriLanka country map (#23338)
     add b0d83e8c50 feat(echarts): Implement stream graph for Echarts Timeseries (#23410)
     add 3277ea83ea feat(sqllab): log error_detail on fetch failed (#23377)
     add ffc0a81e85 chore(native-filters): Fetch only the required dataset fields (#23303)
     add b021f6e05d feat: add new cache_query_by_user key (#23415)
     add b511d2c624 docs(security): note the need to set TALISMAN_ENABLED = True (#23431)
     add 7160dcb054 build(deps-dev): bump eslint from 8.35.0 to 8.36.0 in /superset-websocket (#23342)
     add c3a5c3a80d build(deps-dev): bump eslint from 7.32.0 to 8.36.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   (34eeb7e2f3)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-frontend/eslint-8.36.0 (c3a5c3a80d)

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:
 RELEASING/Dockerfile.from_local_tarball            |    3 +-
 RELEASING/from_tarball_entrypoint.sh               |    1 +
 UPDATING.md                                        |    1 +
 docs/docs/security.mdx                             |   12 +-
 .../src/countries.ts                               |    2 +
 .../src/countries/srilanka.geojson                 | 9838 ++++++++++++++++++++
 .../src/Timeseries/Area/controlPanel.tsx           |    6 +-
 .../src/Timeseries/Regular/Bar/controlPanel.tsx    |   12 +-
 .../src/Timeseries/transformProps.ts               |   32 +-
 .../src/Timeseries/transformers.ts                 |   94 +-
 .../src/components/ExtraControls.tsx               |    4 +-
 .../plugins/plugin-chart-echarts/src/constants.ts  |   14 +-
 .../plugins/plugin-chart-echarts/src/controls.tsx  |   10 +-
 .../plugins/plugin-chart-echarts/src/types.ts      |    4 +-
 .../plugin-chart-echarts/src/utils/series.ts       |    4 +-
 .../test/Timeseries/transformProps.test.ts         |  106 +
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   42 +-
 .../src/SqlLab/actions/sqlLab.test.js              |   29 +-
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |    2 +-
 .../FiltersConfigForm/ColumnSelect.test.tsx        |    6 +-
 .../FiltersConfigForm/ColumnSelect.tsx             |    9 +-
 .../FiltersConfigForm/FiltersConfigForm.tsx        |   24 +-
 superset-frontend/src/logger/LogUtils.ts           |    3 +
 superset-websocket/package-lock.json               |  197 +-
 superset-websocket/package.json                    |    2 +-
 superset/common/query_object.py                    |   30 +-
 superset/config.py                                 |    2 +
 superset/dashboards/commands/importers/v1/utils.py |    5 +
 superset/dashboards/schemas.py                     |   19 +-
 superset/db_engine_specs/base.py                   |   41 +-
 superset/db_engine_specs/drill.py                  |   18 +-
 superset/db_engine_specs/hive.py                   |   16 +-
 superset/db_engine_specs/mysql.py                  |   14 +-
 superset/db_engine_specs/postgres.py               |   60 +-
 superset/db_engine_specs/presto.py                 |   20 +-
 superset/db_engine_specs/snowflake.py              |   22 +-
 ..._13-24_b5ea9d343307_bar_chart_stack_options.py} |   53 +-
 superset/models/core.py                            |   50 +-
 superset/security/manager.py                       |    1 +
 superset/sqllab/api.py                             |   56 +-
 superset/sqllab/commands/estimate.py               |  106 +
 superset/sqllab/schemas.py                         |    9 +
 superset/views/core.py                             |    1 +
 tests/integration_tests/sql_lab/api_tests.py       |   67 +
 tests/integration_tests/sql_lab/commands_tests.py  |   81 +-
 tests/unit_tests/db_engine_specs/test_postgres.py  |   24 +
 .../unit_tests/queries}/__init__.py                |    0
 tests/unit_tests/queries/query_object_test.py      |  345 +
 48 files changed, 11154 insertions(+), 343 deletions(-)
 create mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/srilanka.geojson
 copy superset/migrations/versions/{2021-02-10_12-32_41ce8799acc3_rename_pie_label_type.py => 2023-03-17_13-24_b5ea9d343307_bar_chart_stack_options.py} (64%)
 create mode 100644 superset/sqllab/commands/estimate.py
 copy {superset/advanced_data_type => tests/unit_tests/queries}/__init__.py (100%)
 create mode 100644 tests/unit_tests/queries/query_object_test.py