@backstage/catalog-client 1.1.0-next.2 → 1.1.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 +17 -0
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,22 @@
|
|
|
1
1
|
# @backstage/catalog-client
|
|
2
2
|
|
|
3
|
+
## 1.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 65d1d4343f: Adding `validateEntity` method that calls `/validate-entity` endpoint.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 7d47def9c4: Removed dependency on `@types/jest`.
|
|
12
|
+
- 667d917488: Updated dependency `msw` to `^0.47.0`.
|
|
13
|
+
- 87ec2ba4d6: Updated dependency `msw` to `^0.46.0`.
|
|
14
|
+
- bf5e9030eb: Updated dependency `msw` to `^0.45.0`.
|
|
15
|
+
- ef9ab322de: Minor API signatures cleanup
|
|
16
|
+
- Updated dependencies
|
|
17
|
+
- @backstage/catalog-model@1.1.1
|
|
18
|
+
- @backstage/errors@1.1.1
|
|
19
|
+
|
|
3
20
|
## 1.1.0-next.2
|
|
4
21
|
|
|
5
22
|
### 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.1.0
|
|
4
|
+
"version": "1.1.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,17 +32,17 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/catalog-model": "^1.1.1
|
|
36
|
-
"@backstage/errors": "^1.1.1
|
|
35
|
+
"@backstage/catalog-model": "^1.1.1",
|
|
36
|
+
"@backstage/errors": "^1.1.1",
|
|
37
37
|
"cross-fetch": "^3.1.5"
|
|
38
38
|
},
|
|
39
39
|
"devDependencies": {
|
|
40
|
-
"@backstage/cli": "^0.19.0
|
|
40
|
+
"@backstage/cli": "^0.19.0",
|
|
41
41
|
"msw": "^0.47.0"
|
|
42
42
|
},
|
|
43
43
|
"files": [
|
|
44
44
|
"dist"
|
|
45
45
|
],
|
|
46
|
-
"gitHead": "
|
|
46
|
+
"gitHead": "25b94e63455f1fb170506f9e84e3f430f4b79406",
|
|
47
47
|
"module": "dist/index.esm.js"
|
|
48
48
|
}
|