@secustor/backstage-plugin-renovate 0.20.3 → 0.20.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +6 -0
- package/dist/alpha.d.ts +20 -12
- package/package.json +3 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
# @secustor/backstage-plugin-renovate
|
|
2
2
|
|
|
3
|
+
## 0.20.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#1040](https://github.com/secustor/backstage-plugins/pull/1040) [`e40e77c`](https://github.com/secustor/backstage-plugins/commit/e40e77ca17be16da450ef78ca88bfb759a2b0092) Thanks [@secustors-renovate](https://github.com/apps/secustors-renovate)! - Bump Backstage to 1.50.0
|
|
8
|
+
|
|
3
9
|
## 0.20.3
|
|
4
10
|
|
|
5
11
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -6,8 +6,12 @@ import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api'
|
|
|
6
6
|
declare const renovateNavItem: _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
7
7
|
kind: "nav-item";
|
|
8
8
|
name: undefined;
|
|
9
|
-
config: {
|
|
10
|
-
|
|
9
|
+
config: {
|
|
10
|
+
title: string | undefined;
|
|
11
|
+
};
|
|
12
|
+
configInput: {
|
|
13
|
+
title?: string | undefined;
|
|
14
|
+
};
|
|
11
15
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
12
16
|
title: string;
|
|
13
17
|
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
@@ -28,8 +32,8 @@ declare const renovatePage: _backstage_frontend_plugin_api.OverridableExtensionD
|
|
|
28
32
|
};
|
|
29
33
|
configInput: {
|
|
30
34
|
showStarter?: boolean | undefined;
|
|
31
|
-
title?: string | undefined | undefined;
|
|
32
35
|
path?: string | undefined | undefined;
|
|
36
|
+
title?: string | undefined | undefined;
|
|
33
37
|
};
|
|
34
38
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
35
39
|
optional: true;
|
|
@@ -73,9 +77,9 @@ declare const EntityRenovateContent: _backstage_frontend_plugin_api.OverridableE
|
|
|
73
77
|
icon: string | undefined;
|
|
74
78
|
};
|
|
75
79
|
configInput: {
|
|
76
|
-
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
77
|
-
title?: string | undefined;
|
|
78
80
|
path?: string | undefined;
|
|
81
|
+
title?: string | undefined;
|
|
82
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
79
83
|
group?: string | false | undefined;
|
|
80
84
|
icon?: string | undefined;
|
|
81
85
|
};
|
|
@@ -97,7 +101,7 @@ declare const EntityRenovateContent: _backstage_frontend_plugin_api.OverridableE
|
|
|
97
101
|
defaultTitle?: [Error: `Use the 'title' param instead`];
|
|
98
102
|
title: string;
|
|
99
103
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
100
|
-
group?: ("
|
|
104
|
+
group?: ("development" | "deployment" | "overview" | "documentation" | "operation" | "observability") | (string & {});
|
|
101
105
|
icon?: string | react.ReactElement;
|
|
102
106
|
loader: () => Promise<JSX.Element>;
|
|
103
107
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
@@ -125,9 +129,9 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
125
129
|
icon: string | undefined;
|
|
126
130
|
};
|
|
127
131
|
configInput: {
|
|
128
|
-
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
129
|
-
title?: string | undefined;
|
|
130
132
|
path?: string | undefined;
|
|
133
|
+
title?: string | undefined;
|
|
134
|
+
filter?: _backstage_filter_predicates.FilterPredicate | undefined;
|
|
131
135
|
group?: string | false | undefined;
|
|
132
136
|
icon?: string | undefined;
|
|
133
137
|
};
|
|
@@ -149,7 +153,7 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
149
153
|
defaultTitle?: [Error: `Use the 'title' param instead`];
|
|
150
154
|
title: string;
|
|
151
155
|
defaultGroup?: [Error: `Use the 'group' param instead`];
|
|
152
|
-
group?: ("
|
|
156
|
+
group?: ("development" | "deployment" | "overview" | "documentation" | "operation" | "observability") | (string & {});
|
|
153
157
|
icon?: string | react.ReactElement;
|
|
154
158
|
loader: () => Promise<JSX.Element>;
|
|
155
159
|
routeRef?: _backstage_frontend_plugin_api.RouteRef;
|
|
@@ -159,8 +163,12 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
159
163
|
"nav-item:renovate": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
|
|
160
164
|
kind: "nav-item";
|
|
161
165
|
name: undefined;
|
|
162
|
-
config: {
|
|
163
|
-
|
|
166
|
+
config: {
|
|
167
|
+
title: string | undefined;
|
|
168
|
+
};
|
|
169
|
+
configInput: {
|
|
170
|
+
title?: string | undefined;
|
|
171
|
+
};
|
|
164
172
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<{
|
|
165
173
|
title: string;
|
|
166
174
|
icon: _backstage_frontend_plugin_api.IconComponent;
|
|
@@ -181,8 +189,8 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
181
189
|
};
|
|
182
190
|
configInput: {
|
|
183
191
|
showStarter?: boolean | undefined;
|
|
184
|
-
title?: string | undefined | undefined;
|
|
185
192
|
path?: string | undefined | undefined;
|
|
193
|
+
title?: string | undefined | undefined;
|
|
186
194
|
};
|
|
187
195
|
output: _backstage_frontend_plugin_api.ExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
|
|
188
196
|
optional: true;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@secustor/backstage-plugin-renovate",
|
|
3
|
-
"version": "0.20.
|
|
3
|
+
"version": "0.20.4",
|
|
4
4
|
"main": "./dist/index.esm.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"license": "LGPL-3.0-or-later",
|
|
@@ -74,11 +74,11 @@
|
|
|
74
74
|
"@backstage/core-components": "^0.18.4",
|
|
75
75
|
"@backstage/core-plugin-api": "^1.12.1",
|
|
76
76
|
"@backstage/errors": "^1.2.7",
|
|
77
|
-
"@backstage/frontend-plugin-api": "^0.
|
|
77
|
+
"@backstage/frontend-plugin-api": "^0.16.0",
|
|
78
78
|
"@backstage/integration-react": "^1.2.13",
|
|
79
79
|
"@backstage/plugin-catalog-react": "^2.0.0",
|
|
80
80
|
"@backstage/theme": "^0.7.1",
|
|
81
|
-
"@backstage/ui": "^0.
|
|
81
|
+
"@backstage/ui": "^0.14.0",
|
|
82
82
|
"@emotion/react": "^11.13.3",
|
|
83
83
|
"@emotion/styled": "^11.13.0",
|
|
84
84
|
"@mui/icons-material": "^7.0.0",
|