@backstage/plugin-catalog-node 1.17.0-next.2 → 1.17.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 +19 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-node
|
|
2
2
|
|
|
3
|
+
## 1.17.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- a459f17: Added `parseEntityYaml` from `@backstage/plugin-catalog-backend`, to make it more easily usable by custom plugins and modules
|
|
8
|
+
- 1a003ff: Add `getLocations` method to `CatalogApi` and `CatalogClient`. This method calls the [`GET /locations`](https://backstage.io/docs/features/software-catalog/software-catalog-api/#get-locations) endpoint from the catalog backend.
|
|
9
|
+
|
|
10
|
+
### Patch Changes
|
|
11
|
+
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/catalog-model@1.7.4
|
|
14
|
+
- @backstage/backend-plugin-api@1.3.1
|
|
15
|
+
- @backstage/plugin-permission-common@0.9.0
|
|
16
|
+
- @backstage/plugin-permission-node@0.10.0
|
|
17
|
+
- @backstage/catalog-client@1.10.0
|
|
18
|
+
- @backstage/errors@1.2.7
|
|
19
|
+
- @backstage/types@1.2.1
|
|
20
|
+
- @backstage/plugin-catalog-common@1.1.4
|
|
21
|
+
|
|
3
22
|
## 1.17.0-next.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-node",
|
|
3
|
-
"version": "1.17.0
|
|
3
|
+
"version": "1.17.0",
|
|
4
4
|
"description": "The plugin-catalog-node module for @backstage/plugin-catalog-backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "node-library",
|
|
@@ -72,20 +72,20 @@
|
|
|
72
72
|
"test": "backstage-cli package test"
|
|
73
73
|
},
|
|
74
74
|
"dependencies": {
|
|
75
|
-
"@backstage/backend-plugin-api": "1.3.1
|
|
76
|
-
"@backstage/catalog-client": "1.10.0
|
|
77
|
-
"@backstage/catalog-model": "1.7.
|
|
78
|
-
"@backstage/errors": "1.2.7",
|
|
79
|
-
"@backstage/plugin-catalog-common": "1.1.4
|
|
80
|
-
"@backstage/plugin-permission-common": "0.9.0
|
|
81
|
-
"@backstage/plugin-permission-node": "0.10.0
|
|
82
|
-
"@backstage/types": "1.2.1",
|
|
75
|
+
"@backstage/backend-plugin-api": "^1.3.1",
|
|
76
|
+
"@backstage/catalog-client": "^1.10.0",
|
|
77
|
+
"@backstage/catalog-model": "^1.7.4",
|
|
78
|
+
"@backstage/errors": "^1.2.7",
|
|
79
|
+
"@backstage/plugin-catalog-common": "^1.1.4",
|
|
80
|
+
"@backstage/plugin-permission-common": "^0.9.0",
|
|
81
|
+
"@backstage/plugin-permission-node": "^0.10.0",
|
|
82
|
+
"@backstage/types": "^1.2.1",
|
|
83
83
|
"lodash": "^4.17.21",
|
|
84
84
|
"yaml": "^2.0.0"
|
|
85
85
|
},
|
|
86
86
|
"devDependencies": {
|
|
87
|
-
"@backstage/backend-test-utils": "1.5.0
|
|
88
|
-
"@backstage/cli": "0.32.1
|
|
87
|
+
"@backstage/backend-test-utils": "^1.5.0",
|
|
88
|
+
"@backstage/cli": "^0.32.1",
|
|
89
89
|
"msw": "^1.0.0"
|
|
90
90
|
}
|
|
91
91
|
}
|