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/babel/preset-react-7.28.5
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 6ec8285afb chore(deps-dev): bump @babel/preset-react in
/superset-frontend
add 4f5789abfe fix(reports): Use authenticated user as recipient for
chart/dashboard reports (#36981)
add d914b35cc0 fix(translations): post merge fix for new translations
addded (#37041)
add 459b4cb23d perf(date_parser): bound regex quantifiers for
deterministic parsing performance (#36983)
add 4f444ae1d2 feat(ag-grid): Server Side Filtering for Column Level
Filters (#35683)
add 62c7b48b5c fix(extensions-cli): fix dev mode error (#37024)
add 169d27c9e9 fix(extensions): gracefully handle dist directory
rebuilding (#37025)
add 911d72c957 fix(models): prevent SQLAlchemy and_() deprecation warning
(#37020)
add d8f7ae83ee fix(sqlglot): use Athena dialect for awsathena parsing
(#36747)
add dcdcf88969 chore(chart): rollback legend top alignment to the right
(#36994)
add f4772a9383 chore(deps-dev): bump webpack-bundle-analyzer from 5.1.0 to
5.1.1 in /superset-frontend (#37006)
add 2a38ce001e fix(deckgl): remove visibility condition in deckgl stroke
color (#37029)
add 005b2af985 chore(deps-dev): bump @types/lodash from 4.17.21 to 4.17.23
in /superset-websocket (#37045)
add 03dd75db3b chore(deps-dev): bump @babel/preset-react 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 (6ec8285afb)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-frontend/babel/preset-react-7.28.5
(03dd75db3b)
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:
.../src/superset_extensions_cli/cli.py | 5 -
superset-extensions-cli/tests/test_cli_dev.py | 24 +-
superset-frontend/package-lock.json | 8 +-
superset-frontend/package.json | 2 +-
.../src/layers/Polygon/controlPanel.ts | 2 +-
.../src/utilities/Shared_DeckGL.tsx | 2 -
.../src/AgGridTable/components/CustomHeader.tsx | 80 +-
.../src/AgGridTable/index.tsx | 92 ++-
.../src/AgGridTableChart.tsx | 91 +++
.../plugin-chart-ag-grid-table/src/buildQuery.ts | 158 +++-
.../plugin-chart-ag-grid-table/src/consts.ts | 15 +
.../src/renderers/NumericCellRenderer.tsx | 14 +-
.../src/stateConversion.ts | 185 ++++-
.../plugin-chart-ag-grid-table/src/types.ts | 23 +-
.../src/utils/agGridFilterConverter.ts | 726 +++++++++++++++++
.../src/utils/filterStateManager.ts | 164 ++++
.../src/utils/getInitialFilterModel.ts} | 37 +-
.../src/utils/useColDefs.ts | 89 ++-
.../test/buildQuery.test.ts | 591 ++++++++++++++
.../test/utils/agGridFilterConverter.test.ts | 863 +++++++++++++++++++++
.../test/utils/filterStateManager.test.ts | 658 ++++++++++++++++
.../test/utils/getInitialFilterModel.test.ts | 412 ++++++++++
.../plugin-chart-echarts/src/utils/series.ts | 3 -
.../src/components/Chart/ChartRenderer.jsx | 12 +-
.../src/components/LastQueriedLabel/index.tsx | 2 +-
.../useExploreAdditionalActionsMenu/index.jsx | 9 +-
superset-websocket/package-lock.json | 14 +-
superset-websocket/package.json | 2 +-
superset/commands/report/create.py | 35 +
superset/commands/report/exceptions.py | 15 +
superset/extensions/local_extensions_watcher.py | 33 +-
superset/models/helpers.py | 20 +-
superset/reports/schemas.py | 2 +-
superset/sql/parse.py | 2 +-
superset/utils/core.py | 1 +
superset/utils/date_parser.py | 10 +-
.../commands/report/test_create_recipients.py | 179 +++++
tests/unit_tests/sql/parse_tests.py | 14 +
tests/unit_tests/utils/date_parser_tests.py | 47 ++
39 files changed, 4473 insertions(+), 168 deletions(-)
create mode 100644
superset-frontend/plugins/plugin-chart-ag-grid-table/src/utils/agGridFilterConverter.ts
create mode 100644
superset-frontend/plugins/plugin-chart-ag-grid-table/src/utils/filterStateManager.ts
copy superset-frontend/{src/dashboard/types/chartState.ts =>
plugins/plugin-chart-ag-grid-table/src/utils/getInitialFilterModel.ts} (53%)
create mode 100644
superset-frontend/plugins/plugin-chart-ag-grid-table/test/utils/agGridFilterConverter.test.ts
create mode 100644
superset-frontend/plugins/plugin-chart-ag-grid-table/test/utils/filterStateManager.test.ts
create mode 100644
superset-frontend/plugins/plugin-chart-ag-grid-table/test/utils/getInitialFilterModel.test.ts
create mode 100644 tests/unit_tests/commands/report/test_create_recipients.py