@backstage/plugin-api-docs 0.8.5-next.0 → 0.8.5
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 +42 -0
- package/README.md +1 -1
- package/package.json +14 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,47 @@
|
|
|
1
1
|
# @backstage/plugin-api-docs
|
|
2
2
|
|
|
3
|
+
## 0.8.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 2c279df4eb: Updated dependency `graphiql` to `^1.8.8`.
|
|
8
|
+
- 4274844a8c: Use InfoCardVariants on custom cards variant attribute
|
|
9
|
+
- 09fa05e5d7: Bumped @asyncapi/react-component > openapi-sampler > json-pointer to resolve security vulnerability CVE-2021-23820
|
|
10
|
+
- 165790975d: Updated dependency `@asyncapi/react-component` to `1.0.0-next.37`.
|
|
11
|
+
- 7f6f97d151: Updated dependency `@asyncapi/react-component` to `1.0.0-next.38`.
|
|
12
|
+
- 91d0c9d186: Add the dependency `graphql-ws` to fix the latest release of `@graphiql/toolkit` that has a missing dependency
|
|
13
|
+
- 433a609a15: Updated the rendering of AsyncApi definitions to be able to resolve absolute HTTP \$ref references.
|
|
14
|
+
- Updated dependencies
|
|
15
|
+
- @backstage/core-components@0.9.4
|
|
16
|
+
- @backstage/core-plugin-api@1.0.2
|
|
17
|
+
- @backstage/plugin-catalog@1.2.0
|
|
18
|
+
- @backstage/plugin-catalog-react@1.1.0
|
|
19
|
+
- @backstage/catalog-model@1.0.2
|
|
20
|
+
|
|
21
|
+
## 0.8.5-next.2
|
|
22
|
+
|
|
23
|
+
### Patch Changes
|
|
24
|
+
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/core-components@0.9.4-next.1
|
|
27
|
+
- @backstage/plugin-catalog@1.2.0-next.2
|
|
28
|
+
- @backstage/plugin-catalog-react@1.1.0-next.2
|
|
29
|
+
- @backstage/catalog-model@1.0.2-next.0
|
|
30
|
+
- @backstage/core-plugin-api@1.0.2-next.1
|
|
31
|
+
|
|
32
|
+
## 0.8.5-next.1
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- 2c279df4eb: Updated dependency `graphiql` to `^1.8.8`.
|
|
37
|
+
- 165790975d: Updated dependency `@asyncapi/react-component` to `1.0.0-next.37`.
|
|
38
|
+
- 7f6f97d151: Updated dependency `@asyncapi/react-component` to `1.0.0-next.38`.
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
- @backstage/core-components@0.9.4-next.0
|
|
41
|
+
- @backstage/core-plugin-api@1.0.2-next.0
|
|
42
|
+
- @backstage/plugin-catalog@1.2.0-next.1
|
|
43
|
+
- @backstage/plugin-catalog-react@1.1.0-next.1
|
|
44
|
+
|
|
3
45
|
## 0.8.5-next.0
|
|
4
46
|
|
|
5
47
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -156,7 +156,7 @@ The Swagger UI package by expects to have a route to `/oauth2-redirect.html` whi
|
|
|
156
156
|
the redirect callback for the OAuth2 Authorization Code flow, however, this file is not installed
|
|
157
157
|
by this plugin.
|
|
158
158
|
|
|
159
|
-
Grab a copy of [oauth2-redirect.html](https://github.com/swagger-api/swagger-ui/blob/master/dist/oauth2-redirect.html)
|
|
159
|
+
Grab a copy of [`oauth2-redirect.html`](https://github.com/swagger-api/swagger-ui/blob/master/dist/oauth2-redirect.html)
|
|
160
160
|
and put it in the `app/public/` directory in order to enable Swagger UI to complete this redirection.
|
|
161
161
|
|
|
162
162
|
This also may require you to adjust `Content Security Policy` header settings of your Backstage application, so that the script in `oauth2-redirect.html` can be executed. Since the script is static we can add the hash of it directly to our CSP policy, which we do by adding the following to the `csp` section of the app configuration:
|
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.8.5
|
|
4
|
+
"version": "0.8.5",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,18 +33,19 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@asyncapi/react-component": "1.0.0-next.
|
|
37
|
-
"@backstage/catalog-model": "^1.0.
|
|
38
|
-
"@backstage/core-components": "^0.9.
|
|
39
|
-
"@backstage/core-plugin-api": "^1.0.
|
|
40
|
-
"@backstage/plugin-catalog": "^1.2.0
|
|
41
|
-
"@backstage/plugin-catalog-react": "^1.1.0
|
|
36
|
+
"@asyncapi/react-component": "1.0.0-next.38",
|
|
37
|
+
"@backstage/catalog-model": "^1.0.2",
|
|
38
|
+
"@backstage/core-components": "^0.9.4",
|
|
39
|
+
"@backstage/core-plugin-api": "^1.0.2",
|
|
40
|
+
"@backstage/plugin-catalog": "^1.2.0",
|
|
41
|
+
"@backstage/plugin-catalog-react": "^1.1.0",
|
|
42
42
|
"@backstage/theme": "^0.2.15",
|
|
43
43
|
"@material-ui/core": "^4.12.2",
|
|
44
44
|
"@material-ui/icons": "^4.9.1",
|
|
45
45
|
"@material-ui/lab": "4.0.0-alpha.57",
|
|
46
|
-
"graphiql": "^1.
|
|
46
|
+
"graphiql": "^1.8.8",
|
|
47
47
|
"graphql": "^16.0.0",
|
|
48
|
+
"graphql-ws": "^5.4.1",
|
|
48
49
|
"isomorphic-form-data": "^2.0.0",
|
|
49
50
|
"react-router": "6.0.0-beta.0",
|
|
50
51
|
"react-router-dom": "6.0.0-beta.0",
|
|
@@ -56,10 +57,10 @@
|
|
|
56
57
|
"react": "^16.13.1 || ^17.0.0"
|
|
57
58
|
},
|
|
58
59
|
"devDependencies": {
|
|
59
|
-
"@backstage/cli": "^0.17.1
|
|
60
|
-
"@backstage/core-app-api": "^1.0.
|
|
61
|
-
"@backstage/dev-utils": "^1.0.2
|
|
62
|
-
"@backstage/test-utils": "^1.
|
|
60
|
+
"@backstage/cli": "^0.17.1",
|
|
61
|
+
"@backstage/core-app-api": "^1.0.2",
|
|
62
|
+
"@backstage/dev-utils": "^1.0.2",
|
|
63
|
+
"@backstage/test-utils": "^1.1.0",
|
|
63
64
|
"@testing-library/jest-dom": "^5.10.1",
|
|
64
65
|
"@testing-library/react": "^12.1.3",
|
|
65
66
|
"@testing-library/user-event": "^14.0.0",
|
|
@@ -72,5 +73,5 @@
|
|
|
72
73
|
"files": [
|
|
73
74
|
"dist"
|
|
74
75
|
],
|
|
75
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "96323f280ba32ee526c5b151cda42260aee927c9"
|
|
76
77
|
}
|