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

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 +31 -0
  2. package/README.md +6 -0
  3. package/package.json +13 -12
package/CHANGELOG.md CHANGED
@@ -1,5 +1,36 @@
1
1
  # @backstage/plugin-catalog-graph
2
2
 
3
+ ## 0.2.18-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/core-components@0.9.5-next.1
9
+ - @backstage/catalog-client@1.0.3-next.0
10
+ - @backstage/core-plugin-api@1.0.3-next.0
11
+ - @backstage/catalog-model@1.0.3-next.0
12
+ - @backstage/plugin-catalog-react@1.1.1-next.1
13
+
14
+ ## 0.2.18-next.0
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+ - @backstage/plugin-catalog-react@1.1.1-next.0
20
+ - @backstage/core-components@0.9.5-next.0
21
+
22
+ ## 0.2.17
23
+
24
+ ### Patch Changes
25
+
26
+ - f2d4136b72: Fix kind filter error in the dev app
27
+ - Updated dependencies
28
+ - @backstage/core-components@0.9.4
29
+ - @backstage/core-plugin-api@1.0.2
30
+ - @backstage/plugin-catalog-react@1.1.0
31
+ - @backstage/catalog-client@1.0.2
32
+ - @backstage/catalog-model@1.0.2
33
+
3
34
  ## 0.2.17-next.2
4
35
 
5
36
  ### 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.18-next.1",
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.3-next.0",
28
+ "@backstage/catalog-model": "^1.0.3-next.0",
29
+ "@backstage/core-components": "^0.9.5-next.1",
30
+ "@backstage/core-plugin-api": "^1.0.3-next.0",
31
+ "@backstage/plugin-catalog-react": "^1.1.1-next.1",
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.2-next.1",
49
+ "@backstage/core-app-api": "^1.0.3-next.0",
50
+ "@backstage/dev-utils": "^1.0.3-next.1",
51
+ "@backstage/plugin-catalog": "^1.2.1-next.1",
52
+ "@backstage/test-utils": "^1.1.1-next.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": "e15c24ddb5d14034629ced8a5a5d8f12b8f1a7dd"
63
64
  }