@backstage/catalog-client 1.0.2-next.0 → 1.0.3

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 CHANGED
@@ -1,5 +1,29 @@
1
1
  # @backstage/catalog-client
2
2
 
3
+ ## 1.0.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
8
+ - 35bc0a7c27: Update README to point to catalog-react for frontend usage
9
+ - Updated dependencies
10
+ - @backstage/catalog-model@1.0.3
11
+
12
+ ## 1.0.3-next.0
13
+
14
+ ### Patch Changes
15
+
16
+ - 8f7b1835df: Updated dependency `msw` to `^0.41.0`.
17
+ - Updated dependencies
18
+ - @backstage/catalog-model@1.0.3-next.0
19
+
20
+ ## 1.0.2
21
+
22
+ ### Patch Changes
23
+
24
+ - Updated dependencies
25
+ - @backstage/catalog-model@1.0.2
26
+
3
27
  ## 1.0.2-next.0
4
28
 
5
29
  ### Patch Changes
package/README.md CHANGED
@@ -5,10 +5,9 @@ Backstage Catalog.
5
5
 
6
6
  Backend code may import and use this package directly.
7
7
 
8
- However, frontend code will not want to import this package directly - use the
9
- `@backstage/plugin-catalog` package instead, which re-exports all of the types
10
- and classes from this package. Thereby, you will also gain access to its
11
- `catalogApiRef`.
8
+ However, frontend code will not want to instantiate a catalog client directly -
9
+ use the `@backstage/plugin-catalog-react` package instead, which exports a
10
+ `catalogApiRef` that can be leveraged like other frontend utility APIs.
12
11
 
13
12
  ## Links
14
13
 
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.0.2-next.0",
4
+ "version": "1.0.3",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -33,18 +33,18 @@
33
33
  "clean": "backstage-cli package clean"
34
34
  },
35
35
  "dependencies": {
36
- "@backstage/catalog-model": "^1.0.2-next.0",
36
+ "@backstage/catalog-model": "^1.0.3",
37
37
  "@backstage/errors": "^1.0.0",
38
38
  "cross-fetch": "^3.1.5"
39
39
  },
40
40
  "devDependencies": {
41
- "@backstage/cli": "^0.17.1-next.2",
41
+ "@backstage/cli": "^0.17.2",
42
42
  "@types/jest": "^26.0.7",
43
- "msw": "^0.35.0"
43
+ "msw": "^0.42.0"
44
44
  },
45
45
  "files": [
46
46
  "dist"
47
47
  ],
48
- "gitHead": "cfbf5762d7d91eee18999306b21d63840400ee29",
48
+ "gitHead": "e42cb3887e41f756c16380d757d93feda27f40ee",
49
49
  "module": "dist/index.esm.js"
50
50
  }