@secustor/backstage-plugin-renovate 0.17.1 → 0.17.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,15 @@
|
|
|
1
1
|
# @secustor/backstage-plugin-renovate
|
|
2
2
|
|
|
3
|
+
## 0.17.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#744](https://github.com/secustor/backstage-plugins/pull/744) [`8670607`](https://github.com/secustor/backstage-plugins/commit/8670607b4aa74c468a53523c6ef35b73487f0877) Thanks [@renovate](https://github.com/apps/renovate)! - Upgrade Backstage to 1.40.0
|
|
8
|
+
|
|
9
|
+
- Updated dependencies [[`8670607`](https://github.com/secustor/backstage-plugins/commit/8670607b4aa74c468a53523c6ef35b73487f0877)]:
|
|
10
|
+
- @secustor/backstage-plugin-renovate-client@0.10.6
|
|
11
|
+
- @secustor/backstage-plugin-renovate-common@0.9.2
|
|
12
|
+
|
|
3
13
|
## 0.17.1
|
|
4
14
|
|
|
5
15
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -17,14 +17,14 @@ Install the plugin:
|
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
19
|
# Install packages from the root directory
|
|
20
|
-
yarn --cwd packages/app add @
|
|
20
|
+
yarn --cwd packages/app add @secustor/backstage-plugin-renovate
|
|
21
21
|
```
|
|
22
22
|
|
|
23
23
|
Add the plugin to your Backstage instance:
|
|
24
24
|
|
|
25
25
|
```tsx
|
|
26
26
|
// Add the following to `packages/app/src/App.tsx`
|
|
27
|
-
import { RenovatePage } from '@
|
|
27
|
+
import { RenovatePage } from '@secustor/backstage-plugin-renovate';
|
|
28
28
|
|
|
29
29
|
const routes = (
|
|
30
30
|
<FlatRoutes>
|
|
@@ -4,7 +4,7 @@ import { getEntitySourceLocation } from '@backstage/catalog-model';
|
|
|
4
4
|
import { useApi } from '@backstage/core-plugin-api';
|
|
5
5
|
import useAsync from 'react-use/lib/useAsync';
|
|
6
6
|
import { getTargetURL } from '@secustor/backstage-plugin-renovate-common';
|
|
7
|
-
import {
|
|
7
|
+
import { Progress, ResponseErrorPanel, Table, Link } from '@backstage/core-components';
|
|
8
8
|
import is from '@sindresorhus/is';
|
|
9
9
|
import { scmIntegrationsApiRef } from '@backstage/integration-react';
|
|
10
10
|
import { isError } from '@backstage/errors';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@secustor/backstage-plugin-renovate",
|
|
3
|
-
"version": "0.17.
|
|
3
|
+
"version": "0.17.2",
|
|
4
4
|
"main": "./dist/index.esm.js",
|
|
5
5
|
"types": "./dist/index.d.ts",
|
|
6
6
|
"license": "LGPL-3.0-or-later",
|
|
@@ -84,8 +84,8 @@
|
|
|
84
84
|
"@mui/material": "^7.0.0",
|
|
85
85
|
"@mui/styles": "^6.1.0",
|
|
86
86
|
"@mui/x-data-grid": "^8.0.0",
|
|
87
|
-
"@secustor/backstage-plugin-renovate-client": "^0.10.
|
|
88
|
-
"@secustor/backstage-plugin-renovate-common": "^0.9.
|
|
87
|
+
"@secustor/backstage-plugin-renovate-client": "^0.10.6",
|
|
88
|
+
"@secustor/backstage-plugin-renovate-common": "^0.9.2",
|
|
89
89
|
"@sindresorhus/is": "^4.6.0",
|
|
90
90
|
"@textea/json-viewer": "^4.0.0",
|
|
91
91
|
"git-url-parse": "^16.0.0",
|
|
@@ -96,7 +96,7 @@
|
|
|
96
96
|
"react-dom": "*"
|
|
97
97
|
},
|
|
98
98
|
"devDependencies": {
|
|
99
|
-
"@backstage/cli": "^0.
|
|
99
|
+
"@backstage/cli": "^0.33.0",
|
|
100
100
|
"@backstage/core-app-api": "^1.17.0",
|
|
101
101
|
"@backstage/dev-utils": "^1.1.10",
|
|
102
102
|
"@backstage/frontend-defaults": "^0.2.2",
|