You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by gi...@apache.org on 2022/04/15 06:40:32 UTC

[skywalking-booster-ui] branch dependabot/npm_and_yarn/node-sass-7.0.0 updated (64872ef -> 3fdf926)

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

github-bot pushed a change to branch dependabot/npm_and_yarn/node-sass-7.0.0
in repository https://gitbox.apache.org/repos/asf/skywalking-booster-ui.git


 discard 64872ef  build(deps-dev): bump node-sass from 6.0.1 to 7.0.0
     add 2dd9df1  fix: refresh dashboards with current selectors (#64)
     add 69a9c6d  feat: add an avg calculation for metrics of list graphs (#65)
     add 26db1ec  feat: add Avg calculations (#66)
     add f222083  fix metrics index (#67)
     add 3c68a4a  build: remove compression plugin and config (#68)
     add 3fdf926  build(deps-dev): bump node-sass from 6.0.1 to 7.0.0

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   (64872ef)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/node-sass-7.0.0 (3fdf926)

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:
 package-lock.json                                  | 458 ---------------------
 package.json                                       |   1 -
 src/assets/icons/timeline.svg                      |   1 -
 src/hooks/data.ts                                  |   3 +
 src/{constants/data.ts => hooks/useListConfig.ts}  |  46 +--
 src/hooks/useProcessor.ts                          |  66 ++-
 src/store/modules/topology.ts                      |   6 +-
 src/types/dashboard.ts                             |   1 +
 src/views/Settings.vue                             |   4 +-
 .../configuration/widget/metric/Index.vue          |  13 +-
 src/views/dashboard/controls/Text.vue              |   1 +
 src/views/dashboard/data.ts                        |   7 +-
 src/views/dashboard/graphs/Card.vue                |  28 +-
 src/views/dashboard/graphs/EndpointList.vue        |  56 +--
 src/views/dashboard/graphs/InstanceList.vue        |  59 +--
 src/views/dashboard/graphs/Line.vue                |   5 +-
 src/views/dashboard/graphs/ServiceList.vue         |  61 +--
 .../dashboard/graphs/components/ColumnGraph.vue    | 161 ++++++++
 src/views/dashboard/panel/Layout.vue               |   5 +-
 src/views/dashboard/panel/Tool.vue                 | 109 +++--
 vue.config.js                                      |  12 -
 21 files changed, 377 insertions(+), 726 deletions(-)
 copy src/{constants/data.ts => hooks/useListConfig.ts} (55%)
 create mode 100644 src/views/dashboard/graphs/components/ColumnGraph.vue