@backstage/plugin-catalog-import 0.9.0-next.2 → 0.9.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 +36 -0
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-import
|
|
2
2
|
|
|
3
|
+
## 0.9.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- b2e6cb6acf: **Breaking**
|
|
8
|
+
Moved the code search for the existing catalog-info.yaml files to the backend from the frontend. It means it will use the configured GitHub integration's credentials.
|
|
9
|
+
|
|
10
|
+
Add the following to your `CatalogBuilder` to have the repo URL ingestion working again.
|
|
11
|
+
|
|
12
|
+
```ts
|
|
13
|
+
// catalog.ts
|
|
14
|
+
import { GithubLocationAnalyzer } from '@backstage/plugin-catalog-backend-module-github';
|
|
15
|
+
...
|
|
16
|
+
builder.addLocationAnalyzers(
|
|
17
|
+
new GithubLocationAnalyzer({
|
|
18
|
+
discovery: env.discovery,
|
|
19
|
+
config: env.config,
|
|
20
|
+
}),
|
|
21
|
+
);
|
|
22
|
+
...
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- @backstage/catalog-model@1.1.2
|
|
29
|
+
- @backstage/plugin-catalog-react@1.2.0
|
|
30
|
+
- @backstage/core-components@0.11.2
|
|
31
|
+
- @backstage/plugin-catalog-common@1.0.7
|
|
32
|
+
- @backstage/catalog-client@1.1.1
|
|
33
|
+
- @backstage/integration-react@1.1.5
|
|
34
|
+
- @backstage/core-plugin-api@1.0.7
|
|
35
|
+
- @backstage/config@1.0.3
|
|
36
|
+
- @backstage/errors@1.1.2
|
|
37
|
+
- @backstage/integration@1.3.2
|
|
38
|
+
|
|
3
39
|
## 0.9.0-next.2
|
|
4
40
|
|
|
5
41
|
### Minor 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.9.0
|
|
4
|
+
"version": "0.9.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,16 +32,16 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/catalog-client": "^1.1.1
|
|
36
|
-
"@backstage/catalog-model": "^1.1.2
|
|
37
|
-
"@backstage/config": "^1.0.3
|
|
38
|
-
"@backstage/core-components": "^0.11.2
|
|
39
|
-
"@backstage/core-plugin-api": "^1.0.7
|
|
40
|
-
"@backstage/errors": "^1.1.2
|
|
41
|
-
"@backstage/integration": "^1.3.2
|
|
42
|
-
"@backstage/integration-react": "^1.1.5
|
|
43
|
-
"@backstage/plugin-catalog-common": "^1.0.7
|
|
44
|
-
"@backstage/plugin-catalog-react": "^1.2.0
|
|
35
|
+
"@backstage/catalog-client": "^1.1.1",
|
|
36
|
+
"@backstage/catalog-model": "^1.1.2",
|
|
37
|
+
"@backstage/config": "^1.0.3",
|
|
38
|
+
"@backstage/core-components": "^0.11.2",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.0.7",
|
|
40
|
+
"@backstage/errors": "^1.1.2",
|
|
41
|
+
"@backstage/integration": "^1.3.2",
|
|
42
|
+
"@backstage/integration-react": "^1.1.5",
|
|
43
|
+
"@backstage/plugin-catalog-common": "^1.0.7",
|
|
44
|
+
"@backstage/plugin-catalog-react": "^1.2.0",
|
|
45
45
|
"@material-ui/core": "^4.12.2",
|
|
46
46
|
"@material-ui/icons": "^4.9.1",
|
|
47
47
|
"@material-ui/lab": "4.0.0-alpha.57",
|
|
@@ -59,10 +59,10 @@
|
|
|
59
59
|
"react-router": "6.0.0-beta.0 || ^6.3.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@backstage/cli": "^0.20.0
|
|
63
|
-
"@backstage/core-app-api": "^1.1.1
|
|
64
|
-
"@backstage/dev-utils": "^1.0.7
|
|
65
|
-
"@backstage/test-utils": "^1.2.1
|
|
62
|
+
"@backstage/cli": "^0.20.0",
|
|
63
|
+
"@backstage/core-app-api": "^1.1.1",
|
|
64
|
+
"@backstage/dev-utils": "^1.0.7",
|
|
65
|
+
"@backstage/test-utils": "^1.2.1",
|
|
66
66
|
"@testing-library/jest-dom": "^5.10.1",
|
|
67
67
|
"@testing-library/react": "^12.1.3",
|
|
68
68
|
"@testing-library/react-hooks": "^8.0.0",
|