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/24 18:17:25 UTC

[superset] branch dependabot/npm_and_yarn/superset-websocket/ioredis-and-types/ioredis-5.3.2 updated (8d60790da5 -> b559d63dde)

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

github-bot pushed a change to branch dependabot/npm_and_yarn/superset-websocket/ioredis-and-types/ioredis-5.3.2
in repository https://gitbox.apache.org/repos/asf/superset.git


    omit 8d60790da5 build(deps): bump ioredis and @types/ioredis in /superset-websocket
     add 4b3e507e8b fix(native-filters): Fix encoding of non-temporal default values (#23779)
     add 669e1802a6 fix: [chart power query] error show when user input column with x-axis (#23776)
     add adde66785c feat: Add Ocient support (#22812)
     add 6ae5388dcf fix: allow db driver distinction on enforced URI params (#23769)
     add d4c0ae34f4 fix: Context menu crashing when there is no dimension in Echarts Series charts (#23797)
     add c536d92ade fix: Docker ephemeral env (#23786)
     add f7810b6020 feat(revert): Re-introduces the RLS page (#23777)
     add 90e2b839a3 chore: Deprecates FilterBox (#23784)
     add 039740cdd4 chore: Add DRILL_BY to FEATURE_FLAGS.md (#23798)
     add be5c1b0696 build(deps-dev): bump prettier from 2.8.7 to 2.8.8 in /superset-websocket (#23789)
     add a9d0d70977 build(deps-dev): bump eslint from 8.38.0 to 8.39.0 in /superset-websocket (#23790)
     add baec9ddba7 build(deps-dev): bump @types/node from 18.15.13 to 18.16.0 in /superset-websocket (#23791)
     add b559d63dde build(deps): bump ioredis and @types/ioredis in /superset-websocket

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   (8d60790da5)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-websocket/ioredis-and-types/ioredis-5.3.2 (b559d63dde)

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/workflows/docker-ephemeral-env.yml         | 124 +++---
 RESOURCES/FEATURE_FLAGS.md                         |   3 +-
 UPDATING.md                                        |   1 +
 docs/docs/databases/ocient.mdx                     |  37 ++
 setup.py                                           |   4 +
 .../src/Timeseries/EchartsTimeseries.tsx           |   2 +-
 .../src/features/alerts/AlertReportModal.test.tsx  |   2 +-
 .../features/rls/RowLevelSecurityModal.test.tsx    | 295 +++++++++++++
 .../src/features/rls/RowLevelSecurityModal.tsx     | 479 +++++++++++++++++++++
 .../Pie/data.ts => src/features/rls/constants.ts}  |  15 +-
 .../ColorScheme.ts => src/features/rls/types.ts}   |  59 ++-
 .../RowLevelSecurityList.test.tsx                  | 259 +++++++++++
 .../src/pages/RowLevelSecurityList/index.tsx       | 350 +++++++++++++++
 superset-frontend/src/views/routes.tsx             |  11 +
 .../src/visualizations/FilterBox/FilterBox.jsx     |   3 +
 .../FilterBox/FilterBoxChartPlugin.js              |   6 +-
 superset-websocket/package-lock.json               |  77 ++--
 superset-websocket/package.json                    |   6 +-
 superset/config.py                                 |  14 +-
 superset/connectors/sqla/views.py                  | 117 +----
 superset/dao/base.py                               |  11 +
 superset/db_engine_specs/base.py                   |  18 +-
 superset/db_engine_specs/mysql.py                  |  10 +-
 superset/db_engine_specs/ocient.py                 | 342 +++++++++++++++
 superset/initialization/__init__.py                |  22 +-
 superset/models/sql_lab.py                         |  26 +-
 .../api.py                                         | 298 ++++++-------
 .../commands}/__init__.py                          |   0
 .../commands/bulk_delete.py                        |  28 +-
 .../commands/create.py                             |  50 ++-
 .../commands/exceptions.py                         |  10 +-
 .../commands/update.py                             |  56 +--
 .../utils.py => row_level_security/dao.py}         |   8 +-
 superset/row_level_security/schemas.py             | 154 +++++++
 superset/templates/superset/models/rls/list.html   |  96 -----
 .../utils/dashboard_filter_scopes_converter.py     |  10 +-
 superset/viz.py                                    |   2 +
 tests/integration_tests/model_tests.py             |  12 +-
 .../security/row_level_security_tests.py           | 419 ++++++++++++++++--
 tests/unit_tests/db_engine_specs/test_mysql.py     |  28 ++
 tests/unit_tests/db_engine_specs/test_ocient.py    | 215 +++++++++
 41 files changed, 3032 insertions(+), 647 deletions(-)
 create mode 100644 docs/docs/databases/ocient.mdx
 create mode 100644 superset-frontend/src/features/rls/RowLevelSecurityModal.test.tsx
 create mode 100644 superset-frontend/src/features/rls/RowLevelSecurityModal.tsx
 copy superset-frontend/{packages/superset-ui-demo/storybook/stories/plugins/legacy-preset-chart-nvd3/Pie/data.ts => src/features/rls/constants.ts} (83%)
 copy superset-frontend/{packages/superset-ui-core/src/color/ColorScheme.ts => src/features/rls/types.ts} (63%)
 create mode 100644 superset-frontend/src/pages/RowLevelSecurityList/RowLevelSecurityList.test.tsx
 create mode 100644 superset-frontend/src/pages/RowLevelSecurityList/index.tsx
 create mode 100644 superset/db_engine_specs/ocient.py
 copy superset/{annotation_layers => row_level_security}/api.py (55%)
 copy superset/{advanced_data_type => row_level_security/commands}/__init__.py (100%)
 copy superset/{css_templates => row_level_security}/commands/bulk_delete.py (69%)
 copy superset/{annotation_layers => row_level_security}/commands/create.py (54%)
 copy superset/{css_templates => row_level_security}/commands/exceptions.py (81%)
 copy superset/{databases/ssh_tunnel => row_level_security}/commands/update.py (50%)
 copy superset/{temporary_cache/utils.py => row_level_security/dao.py} (82%)
 create mode 100644 superset/row_level_security/schemas.py
 delete mode 100644 superset/templates/superset/models/rls/list.html
 create mode 100644 tests/unit_tests/db_engine_specs/test_ocient.py