@backstage/plugin-catalog-unprocessed-entities 0.2.31 → 0.2.32-next.0
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 +9 -0
- package/README.md +12 -13
- package/dist/package.json.esm.js +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-unprocessed-entities
|
|
2
2
|
|
|
3
|
+
## 0.2.32-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 80b4370: Updated instructions for enabling the `catalog-unprocessed-entities` page
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/core-components@0.18.11-next.0
|
|
10
|
+
- @backstage/core-compat-api@0.5.12-next.0
|
|
11
|
+
|
|
3
12
|
## 0.2.31
|
|
4
13
|
|
|
5
14
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -32,19 +32,18 @@ Requires the `@backstage/plugin-catalog-backend-module-unprocessed` module to be
|
|
|
32
32
|
yarn --cwd packages/app add @backstage/plugin-catalog-unprocessed-entities
|
|
33
33
|
```
|
|
34
34
|
|
|
35
|
-
|
|
35
|
+
The page is disabled by default. To enable it, add the following to your app configuration:
|
|
36
36
|
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
extensions:
|
|
42
|
-
# Enable the catalog-unprocessed-entities tab in devtools
|
|
43
|
-
- devtools-content:catalog-unprocessed-entities: true
|
|
44
|
-
# Disable the catalog-unprocessed-entities element outside devtools including the sidebar
|
|
45
|
-
- page:catalog-unprocessed-entities: false
|
|
37
|
+
```diff
|
|
38
|
+
app:
|
|
39
|
+
extensions:
|
|
40
|
+
+ - page:catalog-unprocessed-entities
|
|
46
41
|
```
|
|
47
42
|
|
|
43
|
+
Alternatively, unprocessed entities are available as a tab in [DevTools](https://github.com/backstage/backstage/tree/master/plugins/devtools) without any additional configuration if the DevTools plugin is installed.
|
|
44
|
+
|
|
45
|
+
For more details and alternative installation methods, see [installing plugins](https://backstage.io/docs/frontend-system/building-apps/installing-plugins).
|
|
46
|
+
|
|
48
47
|
## Old Frontend System
|
|
49
48
|
|
|
50
49
|
If your Backstage app uses the old frontend system, you need to manually wire the
|
|
@@ -63,7 +62,7 @@ import { CatalogUnprocessedEntitiesPage } from '@backstage/plugin-catalog-unproc
|
|
|
63
62
|
/>;
|
|
64
63
|
```
|
|
65
64
|
|
|
66
|
-
|
|
65
|
+
### Customization
|
|
67
66
|
|
|
68
67
|
If you want to use the provided endpoints in a different way, you can use the ApiRef doing the following:
|
|
69
68
|
|
|
@@ -96,11 +95,11 @@ const app = createApp({
|
|
|
96
95
|
});
|
|
97
96
|
```
|
|
98
97
|
|
|
99
|
-
##
|
|
98
|
+
## Development
|
|
100
99
|
|
|
101
100
|
Your plugin has been added to the example app in this repository,
|
|
102
101
|
meaning you'll be able to access it by running `yarn start` in the root directory,
|
|
103
|
-
and then navigating to [/
|
|
102
|
+
and then navigating to [/devtools/unprocessed-entities](http://localhost:3000/devtools/unprocessed-entities).
|
|
104
103
|
|
|
105
104
|
You can also serve the plugin in isolation by running `yarn start` in the plugin directory.
|
|
106
105
|
This method of serving the plugin provides quicker iteration speed and a faster startup and hot reloads.
|
package/dist/package.json.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-unprocessed-entities",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.32-next.0",
|
|
4
4
|
"backstage": {
|
|
5
5
|
"role": "frontend-plugin",
|
|
6
6
|
"pluginId": "catalog-unprocessed-entities",
|
|
@@ -62,13 +62,13 @@
|
|
|
62
62
|
"test": "backstage-cli package test"
|
|
63
63
|
},
|
|
64
64
|
"dependencies": {
|
|
65
|
-
"@backstage/core-compat-api": "
|
|
66
|
-
"@backstage/core-components": "
|
|
67
|
-
"@backstage/core-plugin-api": "
|
|
68
|
-
"@backstage/errors": "
|
|
69
|
-
"@backstage/frontend-plugin-api": "
|
|
70
|
-
"@backstage/plugin-catalog-unprocessed-entities-common": "
|
|
71
|
-
"@backstage/ui": "
|
|
65
|
+
"@backstage/core-compat-api": "0.5.12-next.0",
|
|
66
|
+
"@backstage/core-components": "0.18.11-next.0",
|
|
67
|
+
"@backstage/core-plugin-api": "1.12.6",
|
|
68
|
+
"@backstage/errors": "1.3.1",
|
|
69
|
+
"@backstage/frontend-plugin-api": "0.17.0",
|
|
70
|
+
"@backstage/plugin-catalog-unprocessed-entities-common": "0.0.16",
|
|
71
|
+
"@backstage/ui": "0.15.0",
|
|
72
72
|
"@material-ui/core": "^4.9.13",
|
|
73
73
|
"@material-ui/icons": "^4.9.1",
|
|
74
74
|
"@material-ui/lab": "^4.0.0-alpha.60",
|
|
@@ -76,8 +76,8 @@
|
|
|
76
76
|
"react-use": "^17.2.4"
|
|
77
77
|
},
|
|
78
78
|
"devDependencies": {
|
|
79
|
-
"@backstage/cli": "
|
|
80
|
-
"@backstage/dev-utils": "
|
|
79
|
+
"@backstage/cli": "0.36.3-next.0",
|
|
80
|
+
"@backstage/dev-utils": "1.1.24-next.0",
|
|
81
81
|
"@testing-library/jest-dom": "^6.0.0",
|
|
82
82
|
"@testing-library/react": "^16.0.0",
|
|
83
83
|
"@types/react": "^18.0.0",
|