@backstage/plugin-catalog-import 0.8.1-next.0 → 0.8.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 +43 -0
- package/package.json +26 -23
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,48 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-import
|
|
2
2
|
|
|
3
|
+
## 0.8.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 6e1cbc12a6: Updated according to the new `getEntityFacets` catalog API method
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/core-components@0.8.10
|
|
10
|
+
- @backstage/plugin-catalog-react@0.7.0
|
|
11
|
+
- @backstage/catalog-model@0.11.0
|
|
12
|
+
- @backstage/catalog-client@0.7.2
|
|
13
|
+
- @backstage/core-plugin-api@0.7.0
|
|
14
|
+
- @backstage/integration@0.7.5
|
|
15
|
+
- @backstage/integration-react@0.1.23
|
|
16
|
+
|
|
17
|
+
## 0.8.2
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 1ed305728b: Bump `node-fetch` to version 2.6.7 and `cross-fetch` to version 3.1.5
|
|
22
|
+
- c77c5c7eb6: Added `backstage.role` to `package.json`
|
|
23
|
+
- deaf6065db: Adapt to the new `CatalogApi.getLocationByRef`
|
|
24
|
+
- Updated dependencies
|
|
25
|
+
- @backstage/catalog-client@0.7.0
|
|
26
|
+
- @backstage/core-components@0.8.9
|
|
27
|
+
- @backstage/core-plugin-api@0.6.1
|
|
28
|
+
- @backstage/errors@0.2.1
|
|
29
|
+
- @backstage/integration@0.7.3
|
|
30
|
+
- @backstage/integration-react@0.1.22
|
|
31
|
+
- @backstage/plugin-catalog-react@0.6.15
|
|
32
|
+
- @backstage/catalog-model@0.10.0
|
|
33
|
+
- @backstage/config@0.1.14
|
|
34
|
+
|
|
35
|
+
## 0.8.1
|
|
36
|
+
|
|
37
|
+
### Patch Changes
|
|
38
|
+
|
|
39
|
+
- 7bb1bde7f6: Minor API cleanups
|
|
40
|
+
- Updated dependencies
|
|
41
|
+
- @backstage/catalog-client@0.6.0
|
|
42
|
+
- @backstage/core-components@0.8.8
|
|
43
|
+
- @backstage/plugin-catalog-react@0.6.14
|
|
44
|
+
- @backstage/integration-react@0.1.21
|
|
45
|
+
|
|
3
46
|
## 0.8.1-next.0
|
|
4
47
|
|
|
5
48
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-import",
|
|
3
3
|
"description": "A Backstage plugin the helps you import entities into your catalog",
|
|
4
|
-
"version": "0.8.
|
|
4
|
+
"version": "0.8.3",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -11,6 +11,9 @@
|
|
|
11
11
|
"main": "dist/index.esm.js",
|
|
12
12
|
"types": "dist/index.d.ts"
|
|
13
13
|
},
|
|
14
|
+
"backstage": {
|
|
15
|
+
"role": "frontend-plugin"
|
|
16
|
+
},
|
|
14
17
|
"homepage": "https://backstage.io",
|
|
15
18
|
"repository": {
|
|
16
19
|
"type": "git",
|
|
@@ -21,25 +24,25 @@
|
|
|
21
24
|
"backstage"
|
|
22
25
|
],
|
|
23
26
|
"scripts": {
|
|
24
|
-
"build": "backstage-cli
|
|
25
|
-
"start": "backstage-cli
|
|
26
|
-
"lint": "backstage-cli lint",
|
|
27
|
-
"test": "backstage-cli test",
|
|
27
|
+
"build": "backstage-cli package build",
|
|
28
|
+
"start": "backstage-cli package start",
|
|
29
|
+
"lint": "backstage-cli package lint",
|
|
30
|
+
"test": "backstage-cli package test",
|
|
28
31
|
"diff": "backstage-cli plugin:diff",
|
|
29
|
-
"prepack": "backstage-cli prepack",
|
|
30
|
-
"postpack": "backstage-cli postpack",
|
|
31
|
-
"clean": "backstage-cli clean"
|
|
32
|
+
"prepack": "backstage-cli package prepack",
|
|
33
|
+
"postpack": "backstage-cli package postpack",
|
|
34
|
+
"clean": "backstage-cli package clean"
|
|
32
35
|
},
|
|
33
36
|
"dependencies": {
|
|
34
|
-
"@backstage/catalog-client": "^0.
|
|
35
|
-
"@backstage/catalog-model": "^0.
|
|
36
|
-
"@backstage/config": "^0.1.
|
|
37
|
-
"@backstage/core-components": "^0.8.
|
|
38
|
-
"@backstage/core-plugin-api": "^0.
|
|
39
|
-
"@backstage/errors": "^0.2.
|
|
40
|
-
"@backstage/integration": "^0.7.
|
|
41
|
-
"@backstage/integration-react": "^0.1.
|
|
42
|
-
"@backstage/plugin-catalog-react": "^0.
|
|
37
|
+
"@backstage/catalog-client": "^0.7.2",
|
|
38
|
+
"@backstage/catalog-model": "^0.11.0",
|
|
39
|
+
"@backstage/config": "^0.1.15",
|
|
40
|
+
"@backstage/core-components": "^0.8.10",
|
|
41
|
+
"@backstage/core-plugin-api": "^0.7.0",
|
|
42
|
+
"@backstage/errors": "^0.2.2",
|
|
43
|
+
"@backstage/integration": "^0.7.5",
|
|
44
|
+
"@backstage/integration-react": "^0.1.23",
|
|
45
|
+
"@backstage/plugin-catalog-react": "^0.7.0",
|
|
43
46
|
"@material-ui/core": "^4.12.2",
|
|
44
47
|
"@material-ui/icons": "^4.9.1",
|
|
45
48
|
"@material-ui/lab": "4.0.0-alpha.57",
|
|
@@ -57,16 +60,16 @@
|
|
|
57
60
|
"react": "^16.13.1 || ^17.0.0"
|
|
58
61
|
},
|
|
59
62
|
"devDependencies": {
|
|
60
|
-
"@backstage/cli": "^0.
|
|
61
|
-
"@backstage/core-app-api": "^0.5.
|
|
62
|
-
"@backstage/dev-utils": "^0.2.
|
|
63
|
-
"@backstage/test-utils": "^0.2.
|
|
63
|
+
"@backstage/cli": "^0.14.1",
|
|
64
|
+
"@backstage/core-app-api": "^0.5.4",
|
|
65
|
+
"@backstage/dev-utils": "^0.2.23",
|
|
66
|
+
"@backstage/test-utils": "^0.2.6",
|
|
64
67
|
"@testing-library/jest-dom": "^5.10.1",
|
|
65
68
|
"@testing-library/react": "^11.2.5",
|
|
66
69
|
"@testing-library/react-hooks": "^7.0.2",
|
|
67
70
|
"@testing-library/user-event": "^13.1.8",
|
|
68
71
|
"@types/jest": "^26.0.7",
|
|
69
|
-
"cross-fetch": "^3.
|
|
72
|
+
"cross-fetch": "^3.1.5",
|
|
70
73
|
"msw": "^0.35.0"
|
|
71
74
|
},
|
|
72
75
|
"files": [
|
|
@@ -74,5 +77,5 @@
|
|
|
74
77
|
"config.d.ts"
|
|
75
78
|
],
|
|
76
79
|
"configSchema": "config.d.ts",
|
|
77
|
-
"gitHead": "
|
|
80
|
+
"gitHead": "a15da6ea1e3e8adc37be98be064071c8b5279b4a"
|
|
78
81
|
}
|