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 2022/09/27 17:40:58 UTC

[superset] branch dependabot/npm_and_yarn/superset-frontend/eslint-plugin-testing-library-5.7.0 updated (34271f61ef -> ba197a3f52)

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


 discard 34271f61ef chore(deps-dev): bump eslint-plugin-testing-library
     add bb1cf7f145 refactor: Organizes the Select files (#21589)
     add bb08c7e7f0 chore: Updates CHANGELOG.md and UPDATING.md with 1.5.2 changes (#21601)
     add eac74a1234 chore(deps): bump terser from 5.10.0 to 5.14.2 in /superset-embedded-sdk (#20785)
     add 9b058bc238 chore(deps): bump cookie from 0.4.1 to 0.5.0 in /superset-websocket (#20983)
     add c4edcbdb00 chore(deps): bump http-errors from 1.8.0 to 2.0.0 in /superset-websocket/utils/client-ws-app (#20978)
     add ba197a3f52 chore(deps-dev): bump eslint-plugin-testing-library

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   (34271f61ef)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-frontend/eslint-plugin-testing-library-5.7.0 (ba197a3f52)

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:
 CHANGELOG.md                                       |  37 ++-
 UPDATING.md                                        |   6 +
 superset-embedded-sdk/package-lock.json            | 148 +++++++--
 ...{Select.stories.tsx => AsyncSelect.stories.tsx} | 225 +------------
 .../src/components/Select/AsyncSelect.tsx          |  94 ++----
 .../src/components/Select/Select.stories.tsx       | 247 +-------------
 superset-frontend/src/components/Select/Select.tsx |  33 +-
 .../src/components/Select/constants.ts             |  52 +++
 superset-frontend/src/components/Select/styles.tsx |  90 ++++++
 superset-frontend/src/components/Select/types.ts   | 201 ++++++++++++
 superset-frontend/src/components/Select/utils.tsx  | 259 +--------------
 .../controls/SelectAsyncControl/index.tsx          |   3 +-
 superset-websocket/package-lock.json               |  14 +-
 superset-websocket/package.json                    |   2 +-
 .../utils/client-ws-app/package-lock.json          | 360 ++-------------------
 .../utils/client-ws-app/package.json               |   2 +-
 16 files changed, 599 insertions(+), 1174 deletions(-)
 copy superset-frontend/src/components/Select/{Select.stories.tsx => AsyncSelect.stories.tsx} (62%)
 create mode 100644 superset-frontend/src/components/Select/constants.ts
 create mode 100644 superset-frontend/src/components/Select/styles.tsx
 create mode 100644 superset-frontend/src/components/Select/types.ts