Skip to content

Commit 02944c6

Browse files
authored
chore(deps): bump topology plugin version (#3493)
* chore(deps): bump topology plugin version Signed-off-by: Yi Cai <yicai@redhat.com> * updated topology version for a bug fix Signed-off-by: Yi Cai <yicai@redhat.com> * resolved rebase conflicts Signed-off-by: Yi Cai <yicai@redhat.com> * resolved rebase conflicts Signed-off-by: Yi Cai <yicai@redhat.com> * resolved rebase conflicts Signed-off-by: Yi Cai <yicai@redhat.com> * updated topology version Signed-off-by: Yi Cai <yicai@redhat.com> * updated scalprum Signed-off-by: Yi Cai <yicai@redhat.com> * updated topology package.json Signed-off-by: Yi Cai <yicai@redhat.com> * added alpha.ts Signed-off-by: Yi Cai <yicai@redhat.com> * updated topology config Signed-off-by: Yi Cai <yicai@redhat.com> * rebase and resolve conflicts Signed-off-by: Yi Cai <yicai@redhat.com> --------- Signed-off-by: Yi Cai <yicai@redhat.com>
1 parent 4c505a9 commit 02944c6

File tree

6 files changed

+239
-404
lines changed

6 files changed

+239
-404
lines changed

catalog-entities/marketplace/packages/backstage-community-plugin-topology.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ metadata:
1818
spec:
1919
packageName: "@backstage-community/plugin-topology"
2020
dynamicArtifact: ./dynamic-plugins/dist/backstage-community-plugin-topology
21-
version: 2.2.2
21+
version: 2.7.0
2222
backstage:
2323
role: frontend-plugin
2424
supportedVersions: 1.42.5

catalog-entities/marketplace/plugins/topology.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,4 +60,5 @@ spec:
6060

6161
packages:
6262
- backstage-community-plugin-topology
63+
- backstage-plugin-kubernetes
6364
- backstage-plugin-kubernetes-backend

dynamic-plugins.default.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -222,6 +222,10 @@ plugins:
222222
dynamicPlugins:
223223
frontend:
224224
backstage-community.plugin-topology:
225+
translationResources:
226+
- importName: topologyTranslations
227+
ref: topologyTranslationRef
228+
module: Alpha
225229
mountPoints:
226230
- mountPoint: entity.page.topology/cards
227231
importName: TopologyPage

dynamic-plugins/wrappers/backstage-community-plugin-topology/package.json

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "backstage-community-plugin-topology",
3-
"version": "2.2.2",
3+
"version": "2.7.0",
44
"main": "src/index.ts",
55
"types": "src/index.ts",
66
"license": "Apache-2.0",
@@ -18,10 +18,14 @@
1818
},
1919
"exports": {
2020
".": "./src/index.ts",
21+
"./alpha": "./src/alpha.ts",
2122
"./package.json": "./package.json"
2223
},
2324
"typesVersions": {
2425
"*": {
26+
"alpha": [
27+
"src/alpha.ts"
28+
],
2529
"package.json": [
2630
"package.json"
2731
]
@@ -39,7 +43,7 @@
3943
"export-dynamic:clean": "run export-dynamic --clean"
4044
},
4145
"dependencies": {
42-
"@backstage-community/plugin-topology": "2.2.2",
46+
"@backstage-community/plugin-topology": "2.7.0",
4347
"@mui/material": "5.18.0"
4448
},
4549
"devDependencies": {
@@ -54,7 +58,8 @@
5458
"scalprum": {
5559
"name": "backstage-community.plugin-topology",
5660
"exposedModules": {
57-
"PluginRoot": "./src/index.ts"
61+
"PluginRoot": "./src/index.ts",
62+
"Alpha": "./src/alpha.ts"
5863
}
5964
},
6065
"repository": {
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
export * from "@backstage-community/plugin-topology/alpha";

0 commit comments

Comments
 (0)