@secustor/backstage-plugin-renovate 0.20.1 → 0.20.3

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.3
4
+
5
+ ### Patch Changes
6
+
7
+ - [#1025](https://github.com/secustor/backstage-plugins/pull/1025) [`9ef48fe`](https://github.com/secustor/backstage-plugins/commit/9ef48fed683c57b14279e68d2d868b43aa799fda) Thanks [@secustors-renovate](https://github.com/apps/secustors-renovate)! - Bump Backstage to 1.49.4
8
+
9
+ ## 0.20.2
10
+
11
+ ### Patch Changes
12
+
13
+ - [`ffdecc5`](https://github.com/secustor/backstage-plugins/commit/ffdecc59f62a39aa82da74249413c893d5c11120) Thanks [@secustor](https://github.com/secustor)! - Bump Backstage to 1.48.3
14
+
3
15
  ## 0.20.1
4
16
 
5
17
  ### Patch 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,42 @@ 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
- defaultPath?: [Error: `Use the 'path' param instead`];
40
57
  path: string;
41
- loader: () => Promise<JSX.Element>;
58
+ title?: string;
59
+ icon?: _backstage_frontend_plugin_api.IconElement;
60
+ loader?: () => Promise<react.JSX.Element>;
42
61
  routeRef?: _backstage_frontend_plugin_api.RouteRef;
62
+ noHeader?: boolean;
43
63
  };
44
64
  }>;
45
65
  declare const EntityRenovateContent: _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
@@ -48,14 +68,16 @@ declare const EntityRenovateContent: _backstage_frontend_plugin_api.OverridableE
48
68
  config: {
49
69
  path: string | undefined;
50
70
  title: string | undefined;
51
- filter: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
71
+ filter: _backstage_filter_predicates.FilterPredicate | undefined;
52
72
  group: string | false | undefined;
73
+ icon: string | undefined;
53
74
  };
54
75
  configInput: {
55
- filter?: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
76
+ filter?: _backstage_filter_predicates.FilterPredicate | undefined;
56
77
  title?: string | undefined;
57
78
  path?: string | undefined;
58
79
  group?: string | false | undefined;
80
+ icon?: string | undefined;
59
81
  };
60
82
  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
83
  optional: true;
@@ -65,6 +87,8 @@ declare const EntityRenovateContent: _backstage_frontend_plugin_api.OverridableE
65
87
  optional: true;
66
88
  }> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
67
89
  optional: true;
90
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
91
+ optional: true;
68
92
  }>;
69
93
  inputs: {};
70
94
  params: {
@@ -74,9 +98,10 @@ declare const EntityRenovateContent: _backstage_frontend_plugin_api.OverridableE
74
98
  title: string;
75
99
  defaultGroup?: [Error: `Use the 'group' param instead`];
76
100
  group?: ("overview" | "documentation" | "development" | "deployment" | "operation" | "observability") | (string & {});
101
+ icon?: string | react.ReactElement;
77
102
  loader: () => Promise<JSX.Element>;
78
103
  routeRef?: _backstage_frontend_plugin_api.RouteRef;
79
- filter?: string | _backstage_plugin_catalog_react_alpha.EntityPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
104
+ filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
80
105
  };
81
106
  }>;
82
107
  declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin<{}, {}, {
@@ -95,14 +120,16 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
95
120
  config: {
96
121
  path: string | undefined;
97
122
  title: string | undefined;
98
- filter: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
123
+ filter: _backstage_filter_predicates.FilterPredicate | undefined;
99
124
  group: string | false | undefined;
125
+ icon: string | undefined;
100
126
  };
101
127
  configInput: {
102
- filter?: _backstage_plugin_catalog_react_alpha.EntityPredicate | undefined;
128
+ filter?: _backstage_filter_predicates.FilterPredicate | undefined;
103
129
  title?: string | undefined;
104
130
  path?: string | undefined;
105
131
  group?: string | false | undefined;
132
+ icon?: string | undefined;
106
133
  };
107
134
  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
135
  optional: true;
@@ -112,6 +139,8 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
112
139
  optional: true;
113
140
  }> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-title", {}> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "catalog.entity-content-group", {
114
141
  optional: true;
142
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<string | react.ReactElement<any, string | react.JSXElementConstructor<any>>, "catalog.entity-content-icon", {
143
+ optional: true;
115
144
  }>;
116
145
  inputs: {};
117
146
  params: {
@@ -121,9 +150,10 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
121
150
  title: string;
122
151
  defaultGroup?: [Error: `Use the 'group' param instead`];
123
152
  group?: ("overview" | "documentation" | "development" | "deployment" | "operation" | "observability") | (string & {});
153
+ icon?: string | react.ReactElement;
124
154
  loader: () => Promise<JSX.Element>;
125
155
  routeRef?: _backstage_frontend_plugin_api.RouteRef;
126
- filter?: string | _backstage_plugin_catalog_react_alpha.EntityPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
156
+ filter?: string | _backstage_filter_predicates.FilterPredicate | ((entity: _backstage_catalog_model.Entity) => boolean);
127
157
  };
128
158
  }>;
129
159
  "nav-item:renovate": _backstage_frontend_plugin_api.OverridableExtensionDefinition<{
@@ -147,22 +177,42 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
147
177
  config: {
148
178
  showStarter: boolean;
149
179
  path: string | undefined;
180
+ title: string | undefined;
150
181
  };
151
182
  configInput: {
152
183
  showStarter?: boolean | undefined;
184
+ title?: string | undefined | undefined;
153
185
  path?: string | undefined | undefined;
154
186
  };
155
187
  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
188
  optional: true;
189
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<string, "core.title", {
190
+ optional: true;
191
+ }> | _backstage_frontend_plugin_api.ExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
192
+ optional: true;
157
193
  }>;
158
- inputs: {};
194
+ inputs: {
195
+ 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", {
196
+ optional: true;
197
+ }> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<string, "core.title", {
198
+ optional: true;
199
+ }> | _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_frontend_plugin_api.IconElement, "core.icon", {
200
+ optional: true;
201
+ }>, {
202
+ singleton: false;
203
+ optional: false;
204
+ internal: false;
205
+ }>;
206
+ };
159
207
  kind: "page";
160
208
  name: undefined;
161
209
  params: {
162
- defaultPath?: [Error: `Use the 'path' param instead`];
163
210
  path: string;
164
- loader: () => Promise<JSX.Element>;
211
+ title?: string;
212
+ icon?: _backstage_frontend_plugin_api.IconElement;
213
+ loader?: () => Promise<react.JSX.Element>;
165
214
  routeRef?: _backstage_frontend_plugin_api.RouteRef;
215
+ noHeader?: boolean;
166
216
  };
167
217
  }>;
168
218
  }>;
@@ -1,2 +1,7 @@
1
- export { DependencyTable, EntityRenovateContent } from './EntityRenovateContent.esm.js';
1
+ import { EntityRenovateContent } from './EntityRenovateContent.esm.js';
2
+ export { DependencyTable } from './EntityRenovateContent.esm.js';
3
+
4
+
5
+
6
+ export { EntityRenovateContent };
2
7
  //# sourceMappingURL=index.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;;"}
@@ -1,2 +1,6 @@
1
- export { RenovateDefaultOverview } from './RenovateDefaultOverview.esm.js';
1
+ import { RenovateDefaultOverview } from './RenovateDefaultOverview.esm.js';
2
+
3
+
4
+
5
+ export { RenovateDefaultOverview };
2
6
  //# sourceMappingURL=index.esm.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":""}
1
+ {"version":3,"file":"index.esm.js","sources":[],"sourcesContent":[],"names":[],"mappings":";;;;"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@secustor/backstage-plugin-renovate",
3
- "version": "0.20.1",
3
+ "version": "0.20.3",
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.15.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.11.0",
81
+ "@backstage/ui": "^0.13.0",
82
82
  "@emotion/react": "^11.13.3",
83
83
  "@emotion/styled": "^11.13.0",
84
84
  "@mui/icons-material": "^7.0.0",
@@ -98,15 +98,14 @@
98
98
  "react-dom": "*"
99
99
  },
100
100
  "devDependencies": {
101
- "@backstage/cli": "^0.35.1",
101
+ "@backstage/cli": "^0.36.0",
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.5.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",
108
108
  "@testing-library/user-event": "^14.0.0",
109
- "@types/git-url-parse": "^9.0.3",
110
109
  "msw": "^2.0.0"
111
110
  },
112
111
  "files": [