@secustor/backstage-plugin-renovate 0.20.0 → 0.20.2

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 CHANGED
@@ -1,5 +1,17 @@
1
1
  # @secustor/backstage-plugin-renovate
2
2
 
3
+ ## 0.20.2
4
+
5
+ ### Patch Changes
6
+
7
+ - [`ffdecc5`](https://github.com/secustor/backstage-plugins/commit/ffdecc59f62a39aa82da74249413c893d5c11120) Thanks [@secustor](https://github.com/secustor)! - Bump Backstage to 1.48.3
8
+
9
+ ## 0.20.1
10
+
11
+ ### Patch Changes
12
+
13
+ - [#962](https://github.com/secustor/backstage-plugins/pull/962) [`97465c9`](https://github.com/secustor/backstage-plugins/commit/97465c9a90610544d5e2332764f3e7240c655322) Thanks [@renovate](https://github.com/apps/renovate)! - Bump Backstage to 1.47.1
14
+
3
15
  ## 0.20.0
4
16
 
5
17
  ### Minor Changes
package/dist/alpha.d.ts CHANGED
@@ -1,5 +1,5 @@
1
1
  import * as _backstage_catalog_model from '@backstage/catalog-model';
2
- import * as _backstage_plugin_catalog_react_alpha from '@backstage/plugin-catalog-react/alpha';
2
+ import * as _backstage_filter_predicates from '@backstage/filter-predicates';
3
3
  import * as react from 'react';
4
4
  import * as _backstage_frontend_plugin_api from '@backstage/frontend-plugin-api';
5
5
 
@@ -24,22 +24,43 @@ declare const renovatePage: _backstage_frontend_plugin_api.OverridableExtensionD
24
24
  config: {
25
25
  showStarter: boolean;
26
26
  path: string | undefined;
27
+ title: string | undefined;
27
28
  };
28
29
  configInput: {
29
30
  showStarter?: boolean | undefined;
31
+ title?: string | undefined | undefined;
30
32
  path?: string | undefined | undefined;
31
33
  };
32
34
  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", {
33
35
  optional: true;
36
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {
37
+ optional: true;
38
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
39
+ optional: true;
34
40
  }>;
35
- inputs: {};
41
+ inputs: {
42
+ pages: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
43
+ optional: true;
44
+ }> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.title", {
45
+ optional: true;
46
+ }> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
47
+ optional: true;
48
+ }>, {
49
+ singleton: false;
50
+ optional: false;
51
+ internal: false;
52
+ }>;
53
+ };
36
54
  kind: "page";
37
55
  name: undefined;
38
56
  params: {
39
57
  defaultPath?: [Error: `Use the 'path' param instead`];
40
58
  path: string;
41
- loader: () => Promise<JSX.Element>;
59
+ title?: string;
60
+ icon?: _backstage_frontend_plugin_api.IconElement;
61
+ loader?: () => Promise<react.JSX.Element>;
42
62
  routeRef?: _backstage_frontend_plugin_api.RouteRef;
63
+ noHeader?: boolean;
43
64
  };
44
65
  }>;
45
66
  declare const EntityRenovateContent: _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
@@ -48,14 +69,16 @@ declare const EntityRenovateContent: _backstage_frontend_plugin_api.OverridableE
48
69
  config: {
49
70
  path: string | undefined;
50
71
  title: string | undefined;
51
- filter: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
72
+ filter: _backstage_filter_predicates.FilterPredicate | undefined;
52
73
  group: string | false | undefined;
74
+ icon: string | undefined;
53
75
  };
54
76
  configInput: {
55
- filter?: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
77
+ filter?: _backstage_filter_predicates.FilterPredicate | undefined;
56
78
  title?: string | undefined;
57
79
  path?: string | undefined;
58
80
  group?: string | false | undefined;
81
+ icon?: string | undefined;
59
82
  };
60
83
  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", {
61
84
  optional: true;
@@ -65,6 +88,8 @@ declare const EntityRenovateContent: _backstage_frontend_plugin_api.OverridableE
65
88
  optional: true;
66
89
  }> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
67
90
  optional: true;
91
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
92
+ optional: true;
68
93
  }>;
69
94
  inputs: {};
70
95
  params: {
@@ -74,9 +99,10 @@ declare const EntityRenovateContent: _backstage_frontend_plugin_api.OverridableE
74
99
  title: string;
75
100
  defaultGroup?: [Error: `Use the 'group' param instead`];
76
101
  group?: ("overview" | "documentation" | "development" | "deployment" | "operation" | "observability") | (string & {});
102
+ icon?: string | react.ReactElement;
77
103
  loader: () => Promise<JSX.Element>;
78
104
  routeRef?: _backstage_frontend_plugin_api.RouteRef;
79
- filter?: string | _backstage_plugin_catalog_react_alpha.EntityPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
105
+ filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
80
106
  };
81
107
  }>;
82
108
  declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{}, {}, {
@@ -95,14 +121,16 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
95
121
  config: {
96
122
  path: string | undefined;
97
123
  title: string | undefined;
98
- filter: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
124
+ filter: _backstage_filter_predicates.FilterPredicate | undefined;
99
125
  group: string | false | undefined;
126
+ icon: string | undefined;
100
127
  };
101
128
  configInput: {
102
- filter?: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
129
+ filter?: _backstage_filter_predicates.FilterPredicate | undefined;
103
130
  title?: string | undefined;
104
131
  path?: string | undefined;
105
132
  group?: string | false | undefined;
133
+ icon?: string | undefined;
106
134
  };
107
135
  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", {
108
136
  optional: true;
@@ -112,6 +140,8 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
112
140
  optional: true;
113
141
  }> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
114
142
  optional: true;
143
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
144
+ optional: true;
115
145
  }>;
116
146
  inputs: {};
117
147
  params: {
@@ -121,9 +151,10 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
121
151
  title: string;
122
152
  defaultGroup?: [Error: `Use the 'group' param instead`];
123
153
  group?: ("overview" | "documentation" | "development" | "deployment" | "operation" | "observability") | (string & {});
154
+ icon?: string | react.ReactElement;
124
155
  loader: () => Promise<JSX.Element>;
125
156
  routeRef?: _backstage_frontend_plugin_api.RouteRef;
126
- filter?: string | _backstage_plugin_catalog_react_alpha.EntityPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
157
+ filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
127
158
  };
128
159
  }>;
129
160
  "nav-item:renovate": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
@@ -147,22 +178,43 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
147
178
  config: {
148
179
  showStarter: boolean;
149
180
  path: string | undefined;
181
+ title: string | undefined;
150
182
  };
151
183
  configInput: {
152
184
  showStarter?: boolean | undefined;
185
+ title?: string | undefined | undefined;
153
186
  path?: string | undefined | undefined;
154
187
  };
155
188
  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", {
156
189
  optional: true;
190
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {
191
+ optional: true;
192
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
193
+ optional: true;
157
194
  }>;
158
- inputs: {};
195
+ inputs: {
196
+ pages: _backstage_frontend_plugin_api.ExtensionInput<_backstage_frontend_plugin_api.ConfigurableExtensionDataRef<react.JSX.Element, "core.reactElement", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.routing.path", {}> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams>, "core.routing.ref", {
197
+ optional: true;
198
+ }> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.title", {
199
+ optional: true;
200
+ }> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
201
+ optional: true;
202
+ }>, {
203
+ singleton: false;
204
+ optional: false;
205
+ internal: false;
206
+ }>;
207
+ };
159
208
  kind: "page";
160
209
  name: undefined;
161
210
  params: {
162
211
  defaultPath?: [Error: `Use the 'path' param instead`];
163
212
  path: string;
164
- loader: () => Promise<JSX.Element>;
213
+ title?: string;
214
+ icon?: _backstage_frontend_plugin_api.IconElement;
215
+ loader?: () => Promise<react.JSX.Element>;
165
216
  routeRef?: _backstage_frontend_plugin_api.RouteRef;
217
+ noHeader?: boolean;
166
218
  };
167
219
  }>;
168
220
  }>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secustor/backstage-plugin-renovate",
3
- "version": "0.20.0",
3
+ "version": "0.20.2",
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.13.2",
77
+ "@backstage/frontend-plugin-api": "^0.14.0",
78
78
  "@backstage/integration-react": "^1.2.13",
79
- "@backstage/plugin-catalog-react": "^1.21.4",
79
+ "@backstage/plugin-catalog-react": "^2.0.0",
80
80
  "@backstage/theme": "^0.7.1",
81
- "@backstage/ui": "^0.10.0",
81
+ "@backstage/ui": "^0.12.0",
82
82
  "@emotion/react": "^11.13.3",
83
83
  "@emotion/styled": "^11.13.0",
84
84
  "@mui/icons-material": "^7.0.0",
@@ -101,7 +101,7 @@
101
101
  "@backstage/cli": "^0.35.1",
102
102
  "@backstage/core-app-api": "^1.19.3",
103
103
  "@backstage/dev-utils": "^1.1.18",
104
- "@backstage/frontend-defaults": "^0.3.4",
104
+ "@backstage/frontend-defaults": "^0.4.0",
105
105
  "@backstage/test-utils": "^1.7.14",
106
106
  "@testing-library/jest-dom": "^6.0.0",
107
107
  "@testing-library/react": "^16.0.0",