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/04/06 14:42:34 UTC

[superset] branch dependabot/npm_and_yarn/superset-websocket/minimist-1.2.6 updated (5a18c6c876 -> 0ebae4396c)

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


 discard 5a18c6c876 chore(deps): bump minimist from 1.2.5 to 1.2.6 in /superset-websocket
     add 2d81c4c79f fix(sqllab): null database with backend persistence (#19548)
     add 6fa99d6b07 refactor: Removes the CSS files from the Sankey Loop plugin (#19494)
     add 356a03833b chore: Removes hard-coded opacity and spacing from BigNumber (#19536)
     add c4baa826d5 refactor: Removes the CSS files from the Country Map plugin (#19538)
     add 2daa071633 fix: big number with trendline can't calculate cumsum (#19542)
     add 0e29871493 fix(explore): clean data when hidding control (#19039)
     add 1cd8b41061 Remove too many "to"s (#19559)
     add c6c9188a24 fix(sql lab): increase the size of the action icons in the history tab (#19313)
     add f29d92867c chore(deps): bump minimist in /superset-frontend/cypress-base (#19549)
     add f9534b25c7 chore(deps): bump minimist from 1.2.5 to 1.2.6 in /docs (#19552)
     add 0ebae4396c chore(deps): bump minimist from 1.2.5 to 1.2.6 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   (5a18c6c876)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-websocket/minimist-1.2.6 (0ebae4396c)

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:
 docs/docs/installation/sql-templating.mdx          |  2 +-
 docs/yarn.lock                                     |  6 +-
 superset-frontend/cypress-base/package-lock.json   | 12 +--
 .../src/shared-controls/index.tsx                  |  4 +-
 .../legacy-plugin-chart-country-map/package.json   |  6 +-
 .../src/CountryMap.js                              |  1 -
 .../src/ReactCountryMap.js                         | 22 -----
 .../src/ReactCountryMap.jsx}                       | 60 ++++++++------
 .../legacy-plugin-chart-sankey-loop/package.json   | 36 ++++-----
 .../src/ReactSankeyLoop.js                         | 22 -----
 .../src/ReactSankeyLoop.jsx}                       | 47 ++++++++---
 .../src/SankeyLoop.css                             | 57 -------------
 .../src/SankeyLoop.js                              |  2 -
 .../src/BigNumber/BigNumberViz.tsx                 | 83 +++++++++----------
 .../BigNumber/BigNumberWithTrendline/buildQuery.ts | 56 +++----------
 .../BigNumberWithTrendline/controlPanel.tsx        | 46 +++++++++++
 superset-frontend/src/SqlLab/actions/sqlLab.js     | 21 +++--
 .../src/SqlLab/components/QueryTable/index.tsx     |  6 +-
 .../src/explore/components/Control.test.tsx        | 94 ++++++++++++++++++++++
 .../src/explore/components/Control.tsx             | 29 ++++++-
 .../explore/components/ControlPanelsContainer.tsx  |  9 ++-
 .../src/explore/components/ControlRow.test.tsx     | 45 +++++++++--
 .../src/explore/components/ControlRow.tsx          | 18 +++--
 superset/models/sql_lab.py                         |  2 +-
 24 files changed, 396 insertions(+), 290 deletions(-)
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-country-map/src/ReactCountryMap.js
 copy superset-frontend/plugins/{legacy-plugin-chart-sunburst/src/ReactSunburst.jsx => legacy-plugin-chart-country-map/src/ReactCountryMap.jsx} (53%)
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/ReactSankeyLoop.js
 copy superset-frontend/plugins/{legacy-plugin-chart-treemap/src/ReactTreemap.jsx => legacy-plugin-chart-sankey-loop/src/ReactSankeyLoop.jsx} (53%)
 delete mode 100644 superset-frontend/plugins/legacy-plugin-chart-sankey-loop/src/SankeyLoop.css
 create mode 100644 superset-frontend/src/explore/components/Control.test.tsx