@backstage/catalog-client 1.2.0-next.0 → 1.2.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 +21 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,26 @@
|
|
|
1
1
|
# @backstage/catalog-client
|
|
2
2
|
|
|
3
|
+
## 1.2.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 00d90b520a: **BREAKING PRODUCERS**: Added a new `getEntitiesByRefs` endpoint to `CatalogApi`, for efficient batch fetching of entities by ref.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 3280711113: Updated dependency `msw` to `^0.49.0`.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/errors@1.1.4
|
|
14
|
+
- @backstage/catalog-model@1.1.4
|
|
15
|
+
|
|
16
|
+
## 1.2.0-next.1
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/catalog-model@1.1.4-next.1
|
|
22
|
+
- @backstage/errors@1.1.4-next.1
|
|
23
|
+
|
|
3
24
|
## 1.2.0-next.0
|
|
4
25
|
|
|
5
26
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/catalog-client",
|
|
3
3
|
"description": "An isomorphic client for the catalog backend",
|
|
4
|
-
"version": "1.2.0
|
|
4
|
+
"version": "1.2.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,12 +32,12 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/catalog-model": "^1.1.4
|
|
36
|
-
"@backstage/errors": "^1.1.4
|
|
35
|
+
"@backstage/catalog-model": "^1.1.4",
|
|
36
|
+
"@backstage/errors": "^1.1.4",
|
|
37
37
|
"cross-fetch": "^3.1.5"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@backstage/cli": "^0.
|
|
40
|
+
"@backstage/cli": "^0.22.0",
|
|
41
41
|
"msw": "^0.49.0"
|
|
42
42
|
},
|
|
43
43
|
"files": [
|