@backstage/plugin-api-docs 0.10.4-next.0 → 0.10.4-next.2
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 +28 -0
- package/README.md +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-api-docs
|
|
2
2
|
|
|
3
|
+
## 0.10.4-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9aac2b0: Use `--cwd` as the first `yarn` argument
|
|
8
|
+
- 8fe56a8: Widen `@types/react` dependency range to include version 18.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/core-components@0.14.0-next.1
|
|
11
|
+
- @backstage/plugin-catalog@1.17.0-next.2
|
|
12
|
+
- @backstage/core-plugin-api@1.9.0-next.1
|
|
13
|
+
- @backstage/plugin-catalog-react@1.10.0-next.2
|
|
14
|
+
- @backstage/plugin-permission-react@0.4.20-next.1
|
|
15
|
+
- @backstage/catalog-model@1.4.4-next.0
|
|
16
|
+
- @backstage/plugin-catalog-common@1.0.21-next.0
|
|
17
|
+
|
|
18
|
+
## 0.10.4-next.1
|
|
19
|
+
|
|
20
|
+
### Patch Changes
|
|
21
|
+
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/core-components@0.14.0-next.0
|
|
24
|
+
- @backstage/catalog-model@1.4.4-next.0
|
|
25
|
+
- @backstage/plugin-catalog@1.17.0-next.1
|
|
26
|
+
- @backstage/core-plugin-api@1.8.3-next.0
|
|
27
|
+
- @backstage/plugin-catalog-react@1.9.4-next.1
|
|
28
|
+
- @backstage/plugin-catalog-common@1.0.21-next.0
|
|
29
|
+
- @backstage/plugin-permission-react@0.4.20-next.0
|
|
30
|
+
|
|
3
31
|
## 0.10.4-next.0
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -29,7 +29,7 @@ To link that a component provides or consumes an API, see the [`providesApis`](h
|
|
|
29
29
|
|
|
30
30
|
```bash
|
|
31
31
|
# From your Backstage root directory
|
|
32
|
-
yarn
|
|
32
|
+
yarn --cwd packages/app add @backstage/plugin-api-docs
|
|
33
33
|
```
|
|
34
34
|
|
|
35
35
|
2. Add the `ApiExplorerPage` extension to the app:
|
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.10.4-next.
|
|
4
|
+
"version": "0.10.4-next.2",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,18 +34,18 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@asyncapi/react-component": "1.2.13",
|
|
37
|
-
"@backstage/catalog-model": "^1.4.
|
|
38
|
-
"@backstage/core-components": "^0.
|
|
39
|
-
"@backstage/core-plugin-api": "^1.
|
|
40
|
-
"@backstage/plugin-catalog": "^1.17.0-next.
|
|
41
|
-
"@backstage/plugin-catalog-common": "^1.0.
|
|
42
|
-
"@backstage/plugin-catalog-react": "^1.
|
|
43
|
-
"@backstage/plugin-permission-react": "^0.4.
|
|
37
|
+
"@backstage/catalog-model": "^1.4.4-next.0",
|
|
38
|
+
"@backstage/core-components": "^0.14.0-next.1",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.9.0-next.1",
|
|
40
|
+
"@backstage/plugin-catalog": "^1.17.0-next.2",
|
|
41
|
+
"@backstage/plugin-catalog-common": "^1.0.21-next.0",
|
|
42
|
+
"@backstage/plugin-catalog-react": "^1.10.0-next.2",
|
|
43
|
+
"@backstage/plugin-permission-react": "^0.4.20-next.1",
|
|
44
44
|
"@graphiql/react": "^0.20.0",
|
|
45
45
|
"@material-ui/core": "^4.12.2",
|
|
46
46
|
"@material-ui/icons": "^4.9.1",
|
|
47
47
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
48
|
-
"@types/react": "^16.13.1 || ^17.0.0",
|
|
48
|
+
"@types/react": "^16.13.1 || ^17.0.0 || ^18.0.0",
|
|
49
49
|
"graphiql": "3.1.0",
|
|
50
50
|
"graphql": "^16.0.0",
|
|
51
51
|
"graphql-config": "^5.0.2",
|
|
@@ -59,10 +59,10 @@
|
|
|
59
59
|
"react-router-dom": "6.0.0-beta.0 || ^6.3.0"
|
|
60
60
|
},
|
|
61
61
|
"devDependencies": {
|
|
62
|
-
"@backstage/cli": "^0.25.2-next.
|
|
63
|
-
"@backstage/core-app-api": "^1.
|
|
64
|
-
"@backstage/dev-utils": "^1.0.27-next.
|
|
65
|
-
"@backstage/test-utils": "^1.5.0-next.
|
|
62
|
+
"@backstage/cli": "^0.25.2-next.2",
|
|
63
|
+
"@backstage/core-app-api": "^1.12.0-next.1",
|
|
64
|
+
"@backstage/dev-utils": "^1.0.27-next.2",
|
|
65
|
+
"@backstage/test-utils": "^1.5.0-next.2",
|
|
66
66
|
"@testing-library/dom": "^9.0.0",
|
|
67
67
|
"@testing-library/jest-dom": "^6.0.0",
|
|
68
68
|
"@testing-library/react": "^14.0.0",
|