@backstage/catalog-client 0.9.0-next.0 → 0.9.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +4 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @backstage/catalog-client
2
2
 
3
+ ## 0.9.0
4
+
5
+ ### Minor Changes
6
+
7
+ - bf95bb806c: **BREAKING**: Removed previously deprecated `CatalogApi.getEntityByName`, please use `getEntityByRef` instead.
8
+ - a3eb3d2afa: **BREAKING**: Removed `CatalogClient.getLocationByEntity` and `CatalogClient.getOriginLocationByEntity` which had previously been deprecated. Please use `CatalogApi.getLocationByRef` instead. Note that this only affects you if you were using `CatalogClient` (the class) directly, rather than `CatalogApi` (the interface), since it has been removed from the interface in an earlier release.
9
+
10
+ ### Patch Changes
11
+
12
+ - Updated dependencies
13
+ - @backstage/catalog-model@0.13.0
14
+
3
15
  ## 0.9.0-next.0
4
16
 
5
17
  ### 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": "0.9.0-next.0",
4
+ "version": "0.9.0",
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": "^0.13.0-next.0",
36
+ "@backstage/catalog-model": "^0.13.0",
37
37
  "@backstage/errors": "^0.2.2",
38
38
  "cross-fetch": "^3.1.5"
39
39
  },
40
40
  "devDependencies": {
41
- "@backstage/cli": "^0.15.2-next.0",
41
+ "@backstage/cli": "^0.15.2",
42
42
  "@types/jest": "^26.0.7",
43
43
  "msw": "^0.35.0"
44
44
  },
45
45
  "files": [
46
46
  "dist"
47
47
  ],
48
- "gitHead": "e90d3ed129ebfce978f1adfa40c1dc2cef3f7e65",
48
+ "gitHead": "60c4e39d1fcaeb10d6488ada1d907f34dc2a105a",
49
49
  "module": "dist/index.esm.js"
50
50
  }