@backstage/plugin-catalog-unprocessed-entities 0.1.1-next.2 → 0.1.1
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 +26 -0
- package/package.json +13 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-unprocessed-entities
|
|
2
2
|
|
|
3
|
+
## 0.1.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2c4869473155: The Catalog Unprocessed Entities plugin can now be integrated as a tab within the DevTools plugin
|
|
8
|
+
|
|
9
|
+
- Added an export for `UnprocessedEntitiesContent`
|
|
10
|
+
- Updated the `README` with images of the features
|
|
11
|
+
- Adjusted the styles to fill in the available space
|
|
12
|
+
- Set the table page size to 20 as 40 was causing errors in the browser console
|
|
13
|
+
|
|
14
|
+
- 57585d89f926: Export some types and API items. This allows people to call the API from different places with the ApiRef, as well
|
|
15
|
+
as completely customize the client if required. Check the [README.md](https://github.com/backstage/backstage/blob/master/plugins/catalog-unprocessed-entities/README.md) to
|
|
16
|
+
note what needs to be added in order to use the new `catalogUnprocessedEntitiesApiRef` exported function.
|
|
17
|
+
- a8fa79ccc105: Fix and improve documentation for the unprocessed entities modules.
|
|
18
|
+
- 267396f45bd0: Corrected the installation instructions.
|
|
19
|
+
- 7a9c8a9cd0ce: Fixed spacing for success message
|
|
20
|
+
- e6f50426333b: update some peer dependencies to silence yarn install
|
|
21
|
+
- 77b408fad872: install command points to correct package name
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/theme@0.4.1
|
|
24
|
+
- @backstage/errors@1.2.1
|
|
25
|
+
- @backstage/core-components@0.13.3
|
|
26
|
+
- @backstage/core-plugin-api@1.5.3
|
|
27
|
+
- @backstage/catalog-model@1.4.1
|
|
28
|
+
|
|
3
29
|
## 0.1.1-next.2
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-unprocessed-entities",
|
|
3
|
-
"version": "0.1.1
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"main": "dist/index.esm.js",
|
|
5
5
|
"types": "dist/index.d.ts",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -28,24 +28,26 @@
|
|
|
28
28
|
"postpack": "backstage-cli package postpack"
|
|
29
29
|
},
|
|
30
30
|
"dependencies": {
|
|
31
|
-
"@backstage/catalog-model": "^1.4.1
|
|
32
|
-
"@backstage/core-components": "^0.13.3
|
|
33
|
-
"@backstage/core-plugin-api": "^1.5.3
|
|
34
|
-
"@backstage/errors": "^1.2.1
|
|
35
|
-
"@backstage/theme": "^0.4.1
|
|
31
|
+
"@backstage/catalog-model": "^1.4.1",
|
|
32
|
+
"@backstage/core-components": "^0.13.3",
|
|
33
|
+
"@backstage/core-plugin-api": "^1.5.3",
|
|
34
|
+
"@backstage/errors": "^1.2.1",
|
|
35
|
+
"@backstage/theme": "^0.4.1",
|
|
36
36
|
"@material-ui/core": "^4.9.13",
|
|
37
37
|
"@material-ui/icons": "^4.9.1",
|
|
38
38
|
"@material-ui/lab": "^4.0.0-alpha.60",
|
|
39
39
|
"react-use": "^17.2.4"
|
|
40
40
|
},
|
|
41
41
|
"peerDependencies": {
|
|
42
|
-
"react": "^16.13.1 || ^17.0.0"
|
|
42
|
+
"react": "^16.13.1 || ^17.0.0",
|
|
43
|
+
"react-dom": "^16.13.1 || ^17.0.0",
|
|
44
|
+
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
43
45
|
},
|
|
44
46
|
"devDependencies": {
|
|
45
|
-
"@backstage/cli": "^0.22.9
|
|
46
|
-
"@backstage/core-app-api": "^1.
|
|
47
|
-
"@backstage/dev-utils": "^1.0.17
|
|
48
|
-
"@backstage/test-utils": "^1.4.1
|
|
47
|
+
"@backstage/cli": "^0.22.9",
|
|
48
|
+
"@backstage/core-app-api": "^1.9.0",
|
|
49
|
+
"@backstage/dev-utils": "^1.0.17",
|
|
50
|
+
"@backstage/test-utils": "^1.4.1",
|
|
49
51
|
"@testing-library/jest-dom": "^5.10.1",
|
|
50
52
|
"@testing-library/react": "^12.1.3",
|
|
51
53
|
"@testing-library/user-event": "^14.0.0",
|