@backstage/plugin-catalog-node 1.12.0-next.2 → 1.12.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 +16 -0
- package/alpha/package.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-node
|
|
2
2
|
|
|
3
|
+
## 1.12.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- f2a2a83: Added `LocationAnalyzer` type, moved from `@backstage/plugin-catalog-backend`.
|
|
8
|
+
- f2a2a83: Breaking change to `/alpha` API where the `catalogAnalysisExtensionPoint` has been reworked. The `addLocationAnalyzer` method has been renamed to `addScmLocationAnalyzer`, and a new `setLocationAnalyzer` method has been added which allows the full `LocationAnalyzer` implementation to be overridden.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/catalog-model@1.5.0
|
|
14
|
+
- @backstage/backend-plugin-api@0.6.18
|
|
15
|
+
- @backstage/catalog-client@1.6.5
|
|
16
|
+
- @backstage/plugin-catalog-common@1.0.23
|
|
17
|
+
- @backstage/plugin-permission-node@0.7.29
|
|
18
|
+
|
|
3
19
|
## 1.12.0-next.2
|
|
4
20
|
|
|
5
21
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-node",
|
|
3
|
-
"version": "1.12.0
|
|
3
|
+
"version": "1.12.0",
|
|
4
4
|
"description": "The plugin-catalog-node module for @backstage/plugin-catalog-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library"
|
|
@@ -44,17 +44,17 @@
|
|
|
44
44
|
"test": "backstage-cli package test"
|
|
45
45
|
},
|
|
46
46
|
"dependencies": {
|
|
47
|
-
"@backstage/backend-plugin-api": "^0.6.18
|
|
48
|
-
"@backstage/catalog-client": "^1.6.5
|
|
49
|
-
"@backstage/catalog-model": "^1.5.0
|
|
47
|
+
"@backstage/backend-plugin-api": "^0.6.18",
|
|
48
|
+
"@backstage/catalog-client": "^1.6.5",
|
|
49
|
+
"@backstage/catalog-model": "^1.5.0",
|
|
50
50
|
"@backstage/errors": "^1.2.4",
|
|
51
|
-
"@backstage/plugin-catalog-common": "^1.0.23
|
|
51
|
+
"@backstage/plugin-catalog-common": "^1.0.23",
|
|
52
52
|
"@backstage/plugin-permission-common": "^0.7.13",
|
|
53
|
-
"@backstage/plugin-permission-node": "^0.7.29
|
|
53
|
+
"@backstage/plugin-permission-node": "^0.7.29",
|
|
54
54
|
"@backstage/types": "^1.1.1"
|
|
55
55
|
},
|
|
56
56
|
"devDependencies": {
|
|
57
|
-
"@backstage/backend-test-utils": "^0.3.8
|
|
58
|
-
"@backstage/cli": "^0.26.5
|
|
57
|
+
"@backstage/backend-test-utils": "^0.3.8",
|
|
58
|
+
"@backstage/cli": "^0.26.5"
|
|
59
59
|
}
|
|
60
60
|
}
|