You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dubbo.apache.org by gi...@apache.org on 2023/07/31 02:30:26 UTC

[dubbo-admin] branch dependabot/npm_and_yarn/dubbo-admin-ui/tough-cookie-4.1.3 updated (30069540 -> 6af6bb7a)

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

github-bot pushed a change to branch dependabot/npm_and_yarn/dubbo-admin-ui/tough-cookie-4.1.3
in repository https://gitbox.apache.org/repos/asf/dubbo-admin.git


 discard 30069540 Bump tough-cookie from 4.1.2 to 4.1.3 in /dubbo-admin-ui
     add f4b37199 Implement dubboctl dashboard subcmd (#1197)
     add 0d0ec467 modify default profile and provide demo profile (#1198)
     add 0d2f3e59 Modify some descriptions to fit in dubboctl user doc (#1200)
     add 938c96e0 Add stateful applications for controller switching (#1194)
     add 97dd6103 feat:add  Cluster overview pages (#1206)
     add 6af6bb7a Bump tough-cookie from 4.1.2 to 4.1.3 in /dubbo-admin-ui

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   (30069540)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/dubbo-admin-ui/tough-cookie-4.1.3 (6af6bb7a)

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:
 .../charts/dubbo-admin/templates/deployment.yaml   |     2 +
 .../{deployment.yaml => statefulset.yaml}          |   103 +-
 deploy/charts/dubbo-admin/values.yaml              |     5 +
 deploy/profiles/default.yaml                       |    22 +-
 deploy/profiles/{default.yaml => demo.yaml}        |     4 +-
 dubbo-admin-ui/package-lock.json                   | 19296 ++++++++-----------
 dubbo-admin-ui/src/api/menu.js                     |     2 +-
 dubbo-admin-ui/src/components/Home.vue             |   174 +-
 dubbo-admin-ui/src/components/http-common.js       |     2 +-
 dubbo-admin-ui/src/main.js                         |     2 +
 .../src/mock/{mockServer.js => mockCluster.js}     |    18 +-
 dubbo-admin-ui/src/mock/mockServer.js              |    18 +-
 .../src/mock/{mockServer.js => mockVersion.js}     |    19 +-
 dubbo-admin-ui/src/router/index.js                 |    24 +-
 dubbo-admin-ui/vue.config.js                       |     2 +-
 dubbo-admin-ui/yarn.lock                           |     2 +-
 pkg/dubboctl/cmd/{profile.go => dashboard.go}      |    20 +-
 pkg/dubboctl/cmd/profile.go                        |     4 +-
 pkg/dubboctl/cmd/profile_test.go                   |     5 +-
 pkg/dubboctl/cmd/root.go                           |     1 +
 pkg/dubboctl/cmd/subcmd/dashboard_all_cmds.go      |   229 +
 pkg/dubboctl/cmd/subcmd/manifest_generate.go       |    12 +-
 pkg/dubboctl/cmd/subcmd/manifest_install.go        |     2 +-
 pkg/dubboctl/cmd/subcmd/manifest_uninstall.go      |     2 +-
 pkg/dubboctl/cmd/subcmd/profile_diff.go            |     4 +-
 pkg/dubboctl/cmd/subcmd/profile_list.go            |     4 +-
 pkg/dubboctl/cmd/testdata/customization/user.yaml  |     2 +-
 pkg/dubboctl/cmd/testdata/diff/profileA.yaml       |     2 +-
 pkg/dubboctl/cmd/testdata/diff/profileB.yaml       |     2 +-
 pkg/dubboctl/cmd/testdata/profile/test0.yaml       |     2 +-
 pkg/dubboctl/cmd/testdata/profile/test1.yaml       |     2 +-
 .../cmd/testdata/profile/test2_wrong_format.yaml   |     2 +-
 pkg/dubboctl/internal/kube/client.go               |     2 +-
 pkg/dubboctl/internal/kube/common.go               |    33 +-
 pkg/dubboctl/internal/kube/port_foward.go          |   152 +
 35 files changed, 8323 insertions(+), 11854 deletions(-)
 copy deploy/charts/dubbo-admin/templates/{deployment.yaml => statefulset.yaml} (59%)
 copy deploy/profiles/{default.yaml => demo.yaml} (96%)
 copy dubbo-admin-ui/src/mock/{mockServer.js => mockCluster.js} (71%)
 copy dubbo-admin-ui/src/mock/{mockServer.js => mockVersion.js} (74%)
 copy pkg/dubboctl/cmd/{profile.go => dashboard.go} (58%)
 create mode 100644 pkg/dubboctl/cmd/subcmd/dashboard_all_cmds.go
 create mode 100644 pkg/dubboctl/internal/kube/port_foward.go