@backstage/plugin-catalog-import 0.12.4 → 0.12.5-next.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,13 +1,60 @@
1
1
  # @backstage/plugin-catalog-import
2
2
 
3
- ## 0.12.4
3
+ ## 0.12.5-next.2
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 720a2f9: Updated dependency `git-url-parse` to `^15.0.0`.
7
8
  - Updated dependencies
8
- - @backstage/integration-react@1.1.32
9
- - @backstage/plugin-catalog-react@1.13.1
10
- - @backstage/core-compat-api@0.3.0
9
+ - @backstage/plugin-catalog-react@1.14.0-next.2
10
+ - @backstage/integration@1.15.1-next.1
11
+ - @backstage/catalog-client@1.7.1-next.0
12
+ - @backstage/catalog-model@1.7.0
13
+ - @backstage/config@1.2.0
14
+ - @backstage/core-compat-api@0.3.1-next.2
15
+ - @backstage/core-components@0.15.1-next.2
16
+ - @backstage/core-plugin-api@1.10.0-next.1
17
+ - @backstage/errors@1.2.4
18
+ - @backstage/frontend-plugin-api@0.9.0-next.2
19
+ - @backstage/integration-react@1.2.0-next.2
20
+ - @backstage/plugin-catalog-common@1.1.0
21
+
22
+ ## 0.12.5-next.1
23
+
24
+ ### Patch Changes
25
+
26
+ - e969dc7: Move `@types/react` to a peer dependency.
27
+ - Updated dependencies
28
+ - @backstage/core-components@0.15.1-next.1
29
+ - @backstage/frontend-plugin-api@0.9.0-next.1
30
+ - @backstage/integration-react@1.2.0-next.1
31
+ - @backstage/core-compat-api@0.3.1-next.1
32
+ - @backstage/core-plugin-api@1.10.0-next.1
33
+ - @backstage/plugin-catalog-react@1.14.0-next.1
34
+ - @backstage/integration@1.15.1-next.0
35
+ - @backstage/catalog-client@1.7.0
36
+ - @backstage/catalog-model@1.7.0
37
+ - @backstage/config@1.2.0
38
+ - @backstage/errors@1.2.4
39
+ - @backstage/plugin-catalog-common@1.1.0
40
+
41
+ ## 0.12.4-next.0
42
+
43
+ ### Patch Changes
44
+
45
+ - Updated dependencies
46
+ - @backstage/frontend-plugin-api@0.9.0-next.0
47
+ - @backstage/core-compat-api@0.3.1-next.0
48
+ - @backstage/core-components@0.15.1-next.0
49
+ - @backstage/core-plugin-api@1.10.0-next.0
50
+ - @backstage/plugin-catalog-react@1.13.1-next.0
51
+ - @backstage/catalog-client@1.7.0
52
+ - @backstage/catalog-model@1.7.0
53
+ - @backstage/config@1.2.0
54
+ - @backstage/errors@1.2.4
55
+ - @backstage/integration@1.15.0
56
+ - @backstage/integration-react@1.1.32-next.0
57
+ - @backstage/plugin-catalog-common@1.1.0
11
58
 
12
59
  ## 0.12.3
13
60
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-import__alpha",
3
- "version": "0.12.4",
3
+ "version": "0.12.5-next.2",
4
4
  "main": "../dist/alpha.esm.js",
5
5
  "module": "../dist/alpha.esm.js",
6
6
  "types": "../dist/alpha.d.ts"
package/dist/alpha.d.ts CHANGED
@@ -8,16 +8,17 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
8
8
  }, {}, {
9
9
  "api:catalog-import": _backstage_frontend_plugin_api.ExtensionDefinition<{
10
10
  kind: "api";
11
- namespace: undefined;
12
11
  name: undefined;
13
12
  config: {};
14
13
  configInput: {};
15
14
  output: _backstage_frontend_plugin_api.ConfigurableExtensionDataRef<_backstage_core_plugin_api.AnyApiFactory, "core.api.factory", {}>;
16
15
  inputs: {};
16
+ params: {
17
+ factory: _backstage_core_plugin_api.AnyApiFactory;
18
+ };
17
19
  }>;
18
20
  "page:catalog-import": _backstage_frontend_plugin_api.ExtensionDefinition<{
19
21
  kind: "page";
20
- namespace: undefined;
21
22
  name: undefined;
22
23
  config: {
23
24
  path: string | undefined;
@@ -29,6 +30,11 @@ declare const _default: _backstage_frontend_plugin_api.FrontendPlugin<{
29
30
  optional: true;
30
31
  }>;
31
32
  inputs: {};
33
+ params: {
34
+ defaultPath: string;
35
+ loader: () => Promise<JSX.Element>;
36
+ routeRef?: _backstage_frontend_plugin_api.RouteRef<_backstage_frontend_plugin_api.AnyRouteRefParams> | undefined;
37
+ };
32
38
  }>;
33
39
  }>;
34
40
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-import",
3
- "version": "0.12.4",
3
+ "version": "0.12.5-next.2",
4
4
  "description": "A Backstage plugin the helps you import entities into your catalog",
5
5
  "backstage": {
6
6
  "role": "frontend-plugin",
@@ -30,6 +30,7 @@
30
30
  "default": "./dist/index.esm.js"
31
31
  },
32
32
  "./alpha": {
33
+ "backstage": "@backstage/FrontendPlugin",
33
34
  "import": "./dist/alpha.esm.js",
34
35
  "types": "./dist/alpha.d.ts",
35
36
  "default": "./dist/alpha.esm.js"
@@ -53,24 +54,23 @@
53
54
  "test": "backstage-cli package test"
54
55
  },
55
56
  "dependencies": {
56
- "@backstage/catalog-client": "^1.7.0",
57
- "@backstage/catalog-model": "^1.7.0",
58
- "@backstage/config": "^1.2.0",
59
- "@backstage/core-compat-api": "^0.3.0",
60
- "@backstage/core-components": "^0.15.0",
61
- "@backstage/core-plugin-api": "^1.9.4",
62
- "@backstage/errors": "^1.2.4",
63
- "@backstage/frontend-plugin-api": "^0.8.0",
64
- "@backstage/integration": "^1.15.0",
65
- "@backstage/integration-react": "^1.1.32",
66
- "@backstage/plugin-catalog-common": "^1.1.0",
67
- "@backstage/plugin-catalog-react": "^1.13.1",
57
+ "@backstage/catalog-client": "1.7.1-next.0",
58
+ "@backstage/catalog-model": "1.7.0",
59
+ "@backstage/config": "1.2.0",
60
+ "@backstage/core-compat-api": "0.3.1-next.2",
61
+ "@backstage/core-components": "0.15.1-next.2",
62
+ "@backstage/core-plugin-api": "1.10.0-next.1",
63
+ "@backstage/errors": "1.2.4",
64
+ "@backstage/frontend-plugin-api": "0.9.0-next.2",
65
+ "@backstage/integration": "1.15.1-next.1",
66
+ "@backstage/integration-react": "1.2.0-next.2",
67
+ "@backstage/plugin-catalog-common": "1.1.0",
68
+ "@backstage/plugin-catalog-react": "1.14.0-next.2",
68
69
  "@material-ui/core": "^4.12.2",
69
70
  "@material-ui/icons": "^4.9.1",
70
71
  "@material-ui/lab": "4.0.0-alpha.61",
71
72
  "@octokit/rest": "^19.0.3",
72
- "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
73
- "git-url-parse": "^14.0.0",
73
+ "git-url-parse": "^15.0.0",
74
74
  "js-base64": "^3.6.0",
75
75
  "lodash": "^4.17.21",
76
76
  "react-hook-form": "^7.12.2",
@@ -78,22 +78,32 @@
78
78
  "yaml": "^2.0.0"
79
79
  },
80
80
  "devDependencies": {
81
- "@backstage/cli": "^0.27.1",
82
- "@backstage/core-app-api": "^1.15.0",
83
- "@backstage/dev-utils": "^1.1.1",
84
- "@backstage/plugin-catalog": "^1.23.1",
85
- "@backstage/test-utils": "^1.6.0",
81
+ "@backstage/cli": "0.28.0-next.2",
82
+ "@backstage/core-app-api": "1.15.1-next.1",
83
+ "@backstage/dev-utils": "1.1.2-next.2",
84
+ "@backstage/plugin-catalog": "1.24.0-next.2",
85
+ "@backstage/test-utils": "1.6.1-next.2",
86
86
  "@testing-library/dom": "^10.0.0",
87
87
  "@testing-library/jest-dom": "^6.0.0",
88
88
  "@testing-library/react": "^16.0.0",
89
89
  "@testing-library/user-event": "^14.0.0",
90
- "msw": "^1.0.0"
90
+ "@types/react": "^18.0.0",
91
+ "msw": "^1.0.0",
92
+ "react": "^18.0.2",
93
+ "react-dom": "^18.0.2",
94
+ "react-router-dom": "^6.3.0"
91
95
  },
92
96
  "peerDependencies": {
97
+ "@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
93
98
  "react": "^16.13.1 || ^17.0.0 || ^18.0.0",
94
99
  "react-dom": "^16.13.1 || ^17.0.0 || ^18.0.0",
95
100
  "react-router-dom": "6.0.0-beta.0 || ^6.3.0"
96
101
  },
102
+ "peerDependenciesMeta": {
103
+ "@types/react": {
104
+ "optional": true
105
+ }
106
+ },
97
107
  "configSchema": "config.d.ts",
98
108
  "module": "./dist/index.esm.js"
99
109
  }