@backstage/plugin-api-docs 0.13.5-next.1 → 0.13.5-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 +14 -0
- package/dist/alpha.d.ts +0 -1
- package/dist/package.json.esm.js +4 -4
- package/package.json +12 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/plugin-api-docs
|
|
2
2
|
|
|
3
|
+
## 0.13.5-next.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- ca277ef: Updated dependency `graphiql` to `3.9.0` to address security vulnerability in `markdown-it` package.
|
|
8
|
+
Updated dependency `@graphiql/react` to `0.29.0` to match the version used by `graphiql`.
|
|
9
|
+
Moved dependency `graphql-config` to `devDependencies` as it is needed only for types.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/frontend-plugin-api@0.15.0-next.1
|
|
12
|
+
- @backstage/core-plugin-api@1.12.4-next.1
|
|
13
|
+
- @backstage/plugin-catalog-react@2.1.0-next.2
|
|
14
|
+
- @backstage/core-components@0.18.8-next.1
|
|
15
|
+
- @backstage/plugin-catalog@2.0.0-next.2
|
|
16
|
+
|
|
3
17
|
## 0.13.5-next.1
|
|
4
18
|
|
|
5
19
|
### Patch Changes
|
package/dist/alpha.d.ts
CHANGED
|
@@ -339,7 +339,6 @@ declare const _default: _backstage_frontend_plugin_api.OverridableFrontendPlugin
|
|
|
339
339
|
kind: "page";
|
|
340
340
|
name: undefined;
|
|
341
341
|
params: {
|
|
342
|
-
defaultPath?: [Error: `Use the 'path' param instead`];
|
|
343
342
|
path: string;
|
|
344
343
|
title?: string;
|
|
345
344
|
icon?: _backstage_frontend_plugin_api.IconElement;
|
package/dist/package.json.esm.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
var name = "@backstage/plugin-api-docs";
|
|
2
|
-
var version = "0.13.5-next.
|
|
2
|
+
var version = "0.13.5-next.2";
|
|
3
3
|
var description = "A Backstage plugin that helps represent API entities in the frontend";
|
|
4
4
|
var backstage = {
|
|
5
5
|
role: "frontend-plugin",
|
|
@@ -61,13 +61,12 @@ var dependencies = {
|
|
|
61
61
|
"@backstage/plugin-catalog-common": "workspace:^",
|
|
62
62
|
"@backstage/plugin-catalog-react": "workspace:^",
|
|
63
63
|
"@backstage/plugin-permission-react": "workspace:^",
|
|
64
|
-
"@graphiql/react": "
|
|
64
|
+
"@graphiql/react": "0.29.0",
|
|
65
65
|
"@material-ui/core": "^4.12.2",
|
|
66
66
|
"@material-ui/icons": "^4.9.1",
|
|
67
67
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
68
|
-
graphiql: "3.
|
|
68
|
+
graphiql: "^3.9.0",
|
|
69
69
|
graphql: "^16.0.0",
|
|
70
|
-
"graphql-config": "^5.0.2",
|
|
71
70
|
"graphql-ws": "^5.4.1",
|
|
72
71
|
"swagger-ui-react": "^5.27.1"
|
|
73
72
|
};
|
|
@@ -84,6 +83,7 @@ var devDependencies = {
|
|
|
84
83
|
"@types/highlightjs": "^10.1.0",
|
|
85
84
|
"@types/react": "^18.0.0",
|
|
86
85
|
"@types/swagger-ui-react": "^5.0.0",
|
|
86
|
+
"graphql-config": "^5.1.6",
|
|
87
87
|
react: "^18.0.2",
|
|
88
88
|
"react-dom": "^18.0.2",
|
|
89
89
|
"react-router-dom": "^6.30.2"
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-api-docs",
|
|
3
|
-
"version": "0.13.5-next.
|
|
3
|
+
"version": "0.13.5-next.2",
|
|
4
4
|
"description": "A Backstage plugin that helps represent API entities in the frontend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -67,28 +67,27 @@
|
|
|
67
67
|
"dependencies": {
|
|
68
68
|
"@asyncapi/react-component": "^2.3.3",
|
|
69
69
|
"@backstage/catalog-model": "1.7.6",
|
|
70
|
-
"@backstage/core-components": "0.18.8-next.
|
|
71
|
-
"@backstage/core-plugin-api": "1.12.4-next.
|
|
72
|
-
"@backstage/frontend-plugin-api": "0.
|
|
73
|
-
"@backstage/plugin-catalog": "
|
|
70
|
+
"@backstage/core-components": "0.18.8-next.1",
|
|
71
|
+
"@backstage/core-plugin-api": "1.12.4-next.1",
|
|
72
|
+
"@backstage/frontend-plugin-api": "0.15.0-next.1",
|
|
73
|
+
"@backstage/plugin-catalog": "2.0.0-next.2",
|
|
74
74
|
"@backstage/plugin-catalog-common": "1.1.8",
|
|
75
|
-
"@backstage/plugin-catalog-react": "2.1.0-next.
|
|
75
|
+
"@backstage/plugin-catalog-react": "2.1.0-next.2",
|
|
76
76
|
"@backstage/plugin-permission-react": "0.4.41-next.0",
|
|
77
|
-
"@graphiql/react": "
|
|
77
|
+
"@graphiql/react": "0.29.0",
|
|
78
78
|
"@material-ui/core": "^4.12.2",
|
|
79
79
|
"@material-ui/icons": "^4.9.1",
|
|
80
80
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
81
|
-
"graphiql": "3.
|
|
81
|
+
"graphiql": "^3.9.0",
|
|
82
82
|
"graphql": "^16.0.0",
|
|
83
|
-
"graphql-config": "^5.0.2",
|
|
84
83
|
"graphql-ws": "^5.4.1",
|
|
85
84
|
"swagger-ui-react": "^5.27.1"
|
|
86
85
|
},
|
|
87
86
|
"devDependencies": {
|
|
88
|
-
"@backstage/cli": "0.36.0-next.
|
|
89
|
-
"@backstage/core-app-api": "1.19.6-next.
|
|
87
|
+
"@backstage/cli": "0.36.0-next.2",
|
|
88
|
+
"@backstage/core-app-api": "1.19.6-next.1",
|
|
90
89
|
"@backstage/dev-utils": "1.1.21-next.1",
|
|
91
|
-
"@backstage/frontend-test-utils": "0.5.1-next.
|
|
90
|
+
"@backstage/frontend-test-utils": "0.5.1-next.2",
|
|
92
91
|
"@backstage/test-utils": "1.7.16-next.0",
|
|
93
92
|
"@testing-library/dom": "^10.0.0",
|
|
94
93
|
"@testing-library/jest-dom": "^6.0.0",
|
|
@@ -97,6 +96,7 @@
|
|
|
97
96
|
"@types/highlightjs": "^10.1.0",
|
|
98
97
|
"@types/react": "^18.0.0",
|
|
99
98
|
"@types/swagger-ui-react": "^5.0.0",
|
|
99
|
+
"graphql-config": "^5.1.6",
|
|
100
100
|
"react": "^18.0.2",
|
|
101
101
|
"react-dom": "^18.0.2",
|
|
102
102
|
"react-router-dom": "^6.30.2"
|