@backstage/plugin-catalog-import 0.12.6-next.2 → 0.12.6
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 +37 -0
- package/dist/alpha.esm.js +3 -3
- package/dist/components/ImportStepper/ImportStepper.esm.js +1 -1
- package/dist/plugin.esm.js +2 -2
- package/package.json +29 -20
- package/alpha/package.json +0 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-import
|
|
2
2
|
|
|
3
|
+
## 0.12.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ea5b7f3: Fixed parsing of catalog-info.yaml when creating a PR to register a repository if the file contains more than one document
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/catalog-client@1.8.0
|
|
10
|
+
- @backstage/config@1.3.0
|
|
11
|
+
- @backstage/plugin-catalog-react@1.14.1
|
|
12
|
+
- @backstage/core-components@0.16.0
|
|
13
|
+
- @backstage/catalog-model@1.7.1
|
|
14
|
+
- @backstage/core-compat-api@0.3.2
|
|
15
|
+
- @backstage/core-plugin-api@1.10.1
|
|
16
|
+
- @backstage/errors@1.2.5
|
|
17
|
+
- @backstage/frontend-plugin-api@0.9.1
|
|
18
|
+
- @backstage/integration@1.15.2
|
|
19
|
+
- @backstage/integration-react@1.2.1
|
|
20
|
+
- @backstage/plugin-catalog-common@1.1.1
|
|
21
|
+
|
|
22
|
+
## 0.12.6-next.3
|
|
23
|
+
|
|
24
|
+
### Patch Changes
|
|
25
|
+
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/core-components@0.16.0-next.2
|
|
28
|
+
- @backstage/plugin-catalog-react@1.14.1-next.3
|
|
29
|
+
- @backstage/core-compat-api@0.3.2-next.2
|
|
30
|
+
- @backstage/catalog-client@1.8.0-next.1
|
|
31
|
+
- @backstage/catalog-model@1.7.0
|
|
32
|
+
- @backstage/config@1.2.0
|
|
33
|
+
- @backstage/core-plugin-api@1.10.0
|
|
34
|
+
- @backstage/errors@1.2.4
|
|
35
|
+
- @backstage/frontend-plugin-api@0.9.1-next.2
|
|
36
|
+
- @backstage/integration@1.15.1
|
|
37
|
+
- @backstage/integration-react@1.2.0
|
|
38
|
+
- @backstage/plugin-catalog-common@1.1.0
|
|
39
|
+
|
|
3
40
|
## 0.12.6-next.2
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
package/dist/alpha.esm.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { createApiFactory,
|
|
2
|
-
import {
|
|
1
|
+
import { createApiFactory, configApiRef, fetchApiRef, discoveryApiRef } from '@backstage/core-plugin-api';
|
|
2
|
+
import { compatWrapper, convertLegacyRouteRef } from '@backstage/core-compat-api';
|
|
3
3
|
import { PageBlueprint, ApiBlueprint, createFrontendPlugin } from '@backstage/frontend-plugin-api';
|
|
4
|
-
import {
|
|
4
|
+
import { scmIntegrationsApiRef, scmAuthApiRef } from '@backstage/integration-react';
|
|
5
5
|
import React from 'react';
|
|
6
6
|
import { catalogImportApiRef } from './api/CatalogImportApi.esm.js';
|
|
7
7
|
import { CatalogImportClient } from './api/CatalogImportClient.esm.js';
|
|
@@ -11,7 +11,7 @@ import 'git-url-parse';
|
|
|
11
11
|
import '@octokit/rest';
|
|
12
12
|
import 'js-base64';
|
|
13
13
|
import { useImportState } from '../useImportState.esm.js';
|
|
14
|
-
import {
|
|
14
|
+
import { defaultGenerateStepper, defaultStepper } from './defaults.esm.js';
|
|
15
15
|
|
|
16
16
|
const useStyles = makeStyles(() => ({
|
|
17
17
|
stepperRoot: {
|
package/dist/plugin.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { createRouteRef, createPlugin, createApiFactory,
|
|
2
|
-
import {
|
|
1
|
+
import { createRouteRef, createPlugin, createApiFactory, configApiRef, fetchApiRef, discoveryApiRef, createRoutableExtension } from '@backstage/core-plugin-api';
|
|
2
|
+
import { scmIntegrationsApiRef, scmAuthApiRef } from '@backstage/integration-react';
|
|
3
3
|
import { catalogApiRef } from '@backstage/plugin-catalog-react';
|
|
4
4
|
import { catalogImportApiRef } from './api/CatalogImportApi.esm.js';
|
|
5
5
|
import { CatalogImportClient } from './api/CatalogImportClient.esm.js';
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-import",
|
|
3
|
-
"version": "0.12.6
|
|
3
|
+
"version": "0.12.6",
|
|
4
4
|
"description": "A Backstage plugin the helps you import entities into your catalog",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -39,10 +39,19 @@
|
|
|
39
39
|
},
|
|
40
40
|
"main": "./dist/index.esm.js",
|
|
41
41
|
"types": "./dist/index.d.ts",
|
|
42
|
+
"typesVersions": {
|
|
43
|
+
"*": {
|
|
44
|
+
"index": [
|
|
45
|
+
"dist/index.d.ts"
|
|
46
|
+
],
|
|
47
|
+
"alpha": [
|
|
48
|
+
"dist/alpha.d.ts"
|
|
49
|
+
]
|
|
50
|
+
}
|
|
51
|
+
},
|
|
42
52
|
"files": [
|
|
43
53
|
"dist",
|
|
44
|
-
"config.d.ts"
|
|
45
|
-
"alpha"
|
|
54
|
+
"config.d.ts"
|
|
46
55
|
],
|
|
47
56
|
"scripts": {
|
|
48
57
|
"build": "backstage-cli package build",
|
|
@@ -54,18 +63,18 @@
|
|
|
54
63
|
"test": "backstage-cli package test"
|
|
55
64
|
},
|
|
56
65
|
"dependencies": {
|
|
57
|
-
"@backstage/catalog-client": "1.8.0
|
|
58
|
-
"@backstage/catalog-model": "1.7.
|
|
59
|
-
"@backstage/config": "1.
|
|
60
|
-
"@backstage/core-compat-api": "0.3.2
|
|
61
|
-
"@backstage/core-components": "0.16.0
|
|
62
|
-
"@backstage/core-plugin-api": "1.10.
|
|
63
|
-
"@backstage/errors": "1.2.
|
|
64
|
-
"@backstage/frontend-plugin-api": "0.9.1
|
|
65
|
-
"@backstage/integration": "1.15.
|
|
66
|
-
"@backstage/integration-react": "1.2.
|
|
67
|
-
"@backstage/plugin-catalog-common": "1.1.
|
|
68
|
-
"@backstage/plugin-catalog-react": "1.14.1
|
|
66
|
+
"@backstage/catalog-client": "^1.8.0",
|
|
67
|
+
"@backstage/catalog-model": "^1.7.1",
|
|
68
|
+
"@backstage/config": "^1.3.0",
|
|
69
|
+
"@backstage/core-compat-api": "^0.3.2",
|
|
70
|
+
"@backstage/core-components": "^0.16.0",
|
|
71
|
+
"@backstage/core-plugin-api": "^1.10.1",
|
|
72
|
+
"@backstage/errors": "^1.2.5",
|
|
73
|
+
"@backstage/frontend-plugin-api": "^0.9.1",
|
|
74
|
+
"@backstage/integration": "^1.15.2",
|
|
75
|
+
"@backstage/integration-react": "^1.2.1",
|
|
76
|
+
"@backstage/plugin-catalog-common": "^1.1.1",
|
|
77
|
+
"@backstage/plugin-catalog-react": "^1.14.1",
|
|
69
78
|
"@material-ui/core": "^4.12.2",
|
|
70
79
|
"@material-ui/icons": "^4.9.1",
|
|
71
80
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -78,11 +87,11 @@
|
|
|
78
87
|
"yaml": "^2.0.0"
|
|
79
88
|
},
|
|
80
89
|
"devDependencies": {
|
|
81
|
-
"@backstage/cli": "0.29.0
|
|
82
|
-
"@backstage/core-app-api": "1.15.
|
|
83
|
-
"@backstage/dev-utils": "1.1.3
|
|
84
|
-
"@backstage/plugin-catalog": "1.
|
|
85
|
-
"@backstage/test-utils": "1.7.1
|
|
90
|
+
"@backstage/cli": "^0.29.0",
|
|
91
|
+
"@backstage/core-app-api": "^1.15.2",
|
|
92
|
+
"@backstage/dev-utils": "^1.1.3",
|
|
93
|
+
"@backstage/plugin-catalog": "^1.25.0",
|
|
94
|
+
"@backstage/test-utils": "^1.7.1",
|
|
86
95
|
"@testing-library/dom": "^10.0.0",
|
|
87
96
|
"@testing-library/jest-dom": "^6.0.0",
|
|
88
97
|
"@testing-library/react": "^16.0.0",
|