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/eslint-8.50.0
in repository https://gitbox.apache.org/repos/asf/superset.git
omit 9bd6d96e16 build(deps-dev): bump eslint in /superset-websocket
add dbe0838f8f fix: Unable to sync columns when database or dataset name
contains `+` (#25390)
add 3e63c82ecc feat: generic marshmallow error component (#25303)
add 53013395d7 fix: Tags Polish II (#25496)
add ff95d0face feat: Implement using Playwright for taking screenshots in
reports (#25247)
add dab18250d7 build(deps): bump ws and @types/ws in /superset-websocket
(#25508)
new 6322131838 build(deps-dev): bump eslint 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 (9bd6d96e16)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/superset-websocket/eslint-8.50.0 (6322131838)
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.
The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails. The revisions
listed as "add" were already present in the repository and have only
been added to this reference.
Summary of changes:
RESOURCES/FEATURE_FLAGS.md | 1 +
docker/docker-bootstrap.sh | 8 +
requirements/testing.in | 2 +-
requirements/testing.txt | 4 +-
setup.py | 1 +
.../src/components/Datasource/DatasourceEditor.jsx | 6 +-
.../Datasource/DatasourceEditor.test.jsx | 2 +-
.../components/Datasource/DatasourceModal.test.jsx | 2 +-
.../src/components/Datasource/DatasourceModal.tsx | 19 +-
.../src/components/ErrorMessage/ErrorAlert.tsx | 1 +
.../ErrorMessage/MarshmallowErrorMessage.test.tsx | 86 ++++++
.../ErrorMessage/MarshmallowErrorMessage.tsx | 109 ++++++++
.../src/components/ErrorMessage/types.ts | 12 +-
.../src/components/FilterableTable/index.tsx | 31 +--
.../src/features/tags/BulkTagModal.tsx | 19 +-
superset-frontend/src/features/tags/TagModal.tsx | 36 ++-
.../useJsonTreeTheme.ts} | 46 ++--
superset-frontend/src/pages/AllEntities/index.tsx | 17 +-
superset-frontend/src/setup/setupErrorMessages.ts | 5 +
superset-websocket/package-lock.json | 28 +-
superset-websocket/package.json | 4 +-
superset/config.py | 10 +-
superset/datasets/api.py | 1 -
superset/datasets/schemas.py | 12 +
superset/errors.py | 3 +
superset/exceptions.py | 17 ++
superset/utils/machine_auth.py | 68 ++++-
superset/utils/screenshots.py | 11 +-
superset/utils/webdriver.py | 288 +++++++++++++++++----
tests/integration_tests/thumbnails_tests.py | 24 +-
tests/unit_tests/datasets/api_tests.py | 73 ++++++
31 files changed, 762 insertions(+), 184 deletions(-)
create mode 100644
superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.test.tsx
create mode 100644
superset-frontend/src/components/ErrorMessage/MarshmallowErrorMessage.tsx
copy
superset-frontend/src/{components/IndeterminateCheckbox/IndeterminateCheckbox.stories.tsx
=> hooks/useJsonTreeTheme.ts} (53%)
create mode 100644 tests/unit_tests/datasets/api_tests.py