@backstage/plugin-catalog-graph 0.2.17-next.2 → 0.2.17

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 (3) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/README.md +6 -0
  3. package/package.json +13 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @backstage/plugin-catalog-graph
2
2
 
3
+ ## 0.2.17
4
+
5
+ ### Patch Changes
6
+
7
+ - f2d4136b72: Fix kind filter error in the dev app
8
+ - Updated dependencies
9
+ - @backstage/core-components@0.9.4
10
+ - @backstage/core-plugin-api@1.0.2
11
+ - @backstage/plugin-catalog-react@1.1.0
12
+ - @backstage/catalog-client@1.0.2
13
+ - @backstage/catalog-model@1.0.2
14
+
3
15
  ## 0.2.17-next.2
4
16
 
5
17
  ### Patch Changes
package/README.md CHANGED
@@ -83,3 +83,9 @@ To use the catalog graph plugin, you have to add some things to your Backstage a
83
83
  <EntityCatalogGraphCard variant="gridItem" height={400} />
84
84
  </Grid>
85
85
  ```
86
+
87
+ ## Development
88
+
89
+ Run `yarn` in the root of this plugin to install all dependencies and then `yarn start` to run a [development version](./dev/index.tsx) of this plugin.
90
+
91
+ ![dev](https://user-images.githubusercontent.com/1190768/167130527-14d787ce-510d-408a-8f93-45bb94b3a9af.png)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-graph",
3
- "version": "0.2.17-next.2",
3
+ "version": "0.2.17",
4
4
  "main": "dist/index.esm.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "license": "Apache-2.0",
@@ -24,11 +24,11 @@
24
24
  "clean": "backstage-cli package clean"
25
25
  },
26
26
  "dependencies": {
27
- "@backstage/catalog-client": "^1.0.2-next.0",
28
- "@backstage/catalog-model": "^1.0.2-next.0",
29
- "@backstage/core-components": "^0.9.4-next.1",
30
- "@backstage/core-plugin-api": "^1.0.2-next.1",
31
- "@backstage/plugin-catalog-react": "^1.1.0-next.2",
27
+ "@backstage/catalog-client": "^1.0.2",
28
+ "@backstage/catalog-model": "^1.0.2",
29
+ "@backstage/core-components": "^0.9.4",
30
+ "@backstage/core-plugin-api": "^1.0.2",
31
+ "@backstage/plugin-catalog-react": "^1.1.0",
32
32
  "@backstage/theme": "^0.2.15",
33
33
  "@material-ui/core": "^4.12.2",
34
34
  "@material-ui/icons": "^4.9.1",
@@ -45,11 +45,12 @@
45
45
  "react": "^16.13.1 || ^17.0.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@backstage/cli": "^0.17.1-next.2",
49
- "@backstage/core-app-api": "^1.0.2-next.1",
50
- "@backstage/dev-utils": "^1.0.2-next.2",
51
- "@backstage/plugin-catalog": "^1.2.0-next.2",
52
- "@backstage/test-utils": "^1.1.0-next.2",
48
+ "@backstage/cli": "^0.17.1",
49
+ "@backstage/core-app-api": "^1.0.2",
50
+ "@backstage/dev-utils": "^1.0.2",
51
+ "@backstage/plugin-catalog": "^1.2.0",
52
+ "@backstage/test-utils": "^1.1.0",
53
+ "@backstage/types": "^1.0.0",
53
54
  "@testing-library/jest-dom": "^5.10.1",
54
55
  "@testing-library/react": "^12.1.3",
55
56
  "@testing-library/react-hooks": "^8.0.0",
@@ -59,5 +60,5 @@
59
60
  "files": [
60
61
  "dist"
61
62
  ],
62
- "gitHead": "cfbf5762d7d91eee18999306b21d63840400ee29"
63
+ "gitHead": "96323f280ba32ee526c5b151cda42260aee927c9"
63
64
  }