@backstage/plugin-api-docs 0.7.1-next.0 → 0.7.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +42 -0
  2. package/package.json +23 -20
package/CHANGELOG.md CHANGED
@@ -1,5 +1,47 @@
1
1
  # @backstage/plugin-api-docs
2
2
 
3
+ ## 0.7.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 1ed305728b: Bump `node-fetch` to version 2.6.7 and `cross-fetch` to version 3.1.5
8
+ - c77c5c7eb6: Added `backstage.role` to `package.json`
9
+ - deaf6065db: Adapt to the new `CatalogApi.getLocationByRef`
10
+ - Updated dependencies
11
+ - @backstage/core-components@0.8.9
12
+ - @backstage/core-plugin-api@0.6.1
13
+ - @backstage/plugin-catalog@0.8.0
14
+ - @backstage/plugin-catalog-react@0.6.15
15
+ - @backstage/catalog-model@0.10.0
16
+ - @backstage/theme@0.2.15
17
+
18
+ ## 0.7.2
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+ - @backstage/core-components@0.8.8
24
+ - @backstage/plugin-catalog-react@0.6.14
25
+ - @backstage/plugin-catalog@0.7.12
26
+
27
+ ## 0.7.2-next.0
28
+
29
+ ### Patch Changes
30
+
31
+ - Updated dependencies
32
+ - @backstage/core-components@0.8.8-next.0
33
+ - @backstage/plugin-catalog-react@0.6.14-next.0
34
+ - @backstage/plugin-catalog@0.7.12-next.0
35
+
36
+ ## 0.7.1
37
+
38
+ ### Patch Changes
39
+
40
+ - Updated dependencies
41
+ - @backstage/core-components@0.8.7
42
+ - @backstage/plugin-catalog-react@0.6.13
43
+ - @backstage/plugin-catalog@0.7.11
44
+
3
45
  ## 0.7.1-next.0
4
46
 
5
47
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-api-docs",
3
3
  "description": "A Backstage plugin that helps represent API entities in the frontend",
4
- "version": "0.7.1-next.0",
4
+ "version": "0.7.3",
5
5
  "main": "dist/index.esm.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -10,6 +10,9 @@
10
10
  "main": "dist/index.esm.js",
11
11
  "types": "dist/index.d.ts"
12
12
  },
13
+ "backstage": {
14
+ "role": "frontend-plugin"
15
+ },
13
16
  "homepage": "https://backstage.io",
14
17
  "repository": {
15
18
  "type": "git",
@@ -20,23 +23,23 @@
20
23
  "backstage"
21
24
  ],
22
25
  "scripts": {
23
- "build": "backstage-cli plugin:build",
24
- "start": "backstage-cli plugin:serve",
25
- "lint": "backstage-cli lint",
26
- "test": "backstage-cli test",
26
+ "build": "backstage-cli package build",
27
+ "start": "backstage-cli package start",
28
+ "lint": "backstage-cli package lint",
29
+ "test": "backstage-cli package test",
27
30
  "diff": "backstage-cli plugin:diff",
28
- "prepack": "backstage-cli prepack",
29
- "postpack": "backstage-cli postpack",
30
- "clean": "backstage-cli clean"
31
+ "prepack": "backstage-cli package prepack",
32
+ "postpack": "backstage-cli package postpack",
33
+ "clean": "backstage-cli package clean"
31
34
  },
32
35
  "dependencies": {
33
36
  "@asyncapi/react-component": "1.0.0-next.32",
34
- "@backstage/catalog-model": "^0.9.10",
35
- "@backstage/core-components": "^0.8.7-next.0",
36
- "@backstage/core-plugin-api": "^0.6.0",
37
- "@backstage/plugin-catalog": "^0.7.11-next.0",
38
- "@backstage/plugin-catalog-react": "^0.6.13-next.0",
39
- "@backstage/theme": "^0.2.14",
37
+ "@backstage/catalog-model": "^0.10.0",
38
+ "@backstage/core-components": "^0.8.9",
39
+ "@backstage/core-plugin-api": "^0.6.1",
40
+ "@backstage/plugin-catalog": "^0.8.0",
41
+ "@backstage/plugin-catalog-react": "^0.6.15",
42
+ "@backstage/theme": "^0.2.15",
40
43
  "@material-ui/core": "^4.12.2",
41
44
  "@material-ui/icons": "^4.9.1",
42
45
  "@material-ui/lab": "4.0.0-alpha.57",
@@ -53,21 +56,21 @@
53
56
  "react": "^16.13.1 || ^17.0.0"
54
57
  },
55
58
  "devDependencies": {
56
- "@backstage/cli": "^0.13.1-next.0",
57
- "@backstage/core-app-api": "^0.5.1",
58
- "@backstage/dev-utils": "^0.2.20-next.0",
59
- "@backstage/test-utils": "^0.2.3",
59
+ "@backstage/cli": "^0.14.0",
60
+ "@backstage/core-app-api": "^0.5.3",
61
+ "@backstage/dev-utils": "^0.2.22",
62
+ "@backstage/test-utils": "^0.2.5",
60
63
  "@testing-library/jest-dom": "^5.10.1",
61
64
  "@testing-library/react": "^11.2.5",
62
65
  "@testing-library/user-event": "^13.1.8",
63
66
  "@types/jest": "^26.0.7",
64
67
  "@types/node": "^14.14.32",
65
68
  "@types/swagger-ui-react": "^4.1.1",
66
- "cross-fetch": "^3.0.6",
69
+ "cross-fetch": "^3.1.5",
67
70
  "msw": "^0.35.0"
68
71
  },
69
72
  "files": [
70
73
  "dist"
71
74
  ],
72
- "gitHead": "a28838ac5c80c7332caa6ca0569d2ec85151784f"
75
+ "gitHead": "4805c3d13ce9bfc369e53c271b1b95e722b3b4dc"
73
76
  }