@backstage/plugin-api-docs 0.11.6-next.2 → 0.11.6
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 +19 -0
- package/alpha/package.json +1 -1
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage/plugin-api-docs
|
|
2
2
|
|
|
3
|
+
## 0.11.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7f84039: The `registerComponent` external route will now by default bind to the catalog import page if it is available.
|
|
8
|
+
- 9cdc651: Make sure that the toggle button state is properly reflected in API cards
|
|
9
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
10
|
+
- 96cd13e: `DefaultApiExplorerPage` now accepts an optional `ownerPickerMode` for toggling the behavior of the `EntityOwnerPicker`, exposing a new mode `<DefaultApiExplorerPage ownerPickerMode="all" />` particularly suitable for larger catalogs. In this new mode, `EntityOwnerPicker` will display all the users and groups present in the catalog.
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/core-components@0.14.8
|
|
13
|
+
- @backstage/core-compat-api@0.2.6
|
|
14
|
+
- @backstage/core-plugin-api@1.9.3
|
|
15
|
+
- @backstage/plugin-permission-react@0.4.23
|
|
16
|
+
- @backstage/plugin-catalog-common@1.0.24
|
|
17
|
+
- @backstage/plugin-catalog-react@1.12.1
|
|
18
|
+
- @backstage/plugin-catalog@1.21.0
|
|
19
|
+
- @backstage/frontend-plugin-api@0.6.6
|
|
20
|
+
- @backstage/catalog-model@1.5.0
|
|
21
|
+
|
|
3
22
|
## 0.11.6-next.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-api-docs",
|
|
3
|
-
"version": "0.11.6
|
|
3
|
+
"version": "0.11.6",
|
|
4
4
|
"description": "A Backstage plugin that helps represent API entities in the frontend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -54,14 +54,14 @@
|
|
|
54
54
|
"dependencies": {
|
|
55
55
|
"@asyncapi/react-component": "1.3.1",
|
|
56
56
|
"@backstage/catalog-model": "^1.5.0",
|
|
57
|
-
"@backstage/core-compat-api": "^0.2.6
|
|
58
|
-
"@backstage/core-components": "^0.14.8
|
|
59
|
-
"@backstage/core-plugin-api": "^1.9.3
|
|
60
|
-
"@backstage/frontend-plugin-api": "^0.6.6
|
|
61
|
-
"@backstage/plugin-catalog": "^1.21.0
|
|
62
|
-
"@backstage/plugin-catalog-common": "^1.0.24
|
|
63
|
-
"@backstage/plugin-catalog-react": "^1.12.1
|
|
64
|
-
"@backstage/plugin-permission-react": "^0.4.23
|
|
57
|
+
"@backstage/core-compat-api": "^0.2.6",
|
|
58
|
+
"@backstage/core-components": "^0.14.8",
|
|
59
|
+
"@backstage/core-plugin-api": "^1.9.3",
|
|
60
|
+
"@backstage/frontend-plugin-api": "^0.6.6",
|
|
61
|
+
"@backstage/plugin-catalog": "^1.21.0",
|
|
62
|
+
"@backstage/plugin-catalog-common": "^1.0.24",
|
|
63
|
+
"@backstage/plugin-catalog-react": "^1.12.1",
|
|
64
|
+
"@backstage/plugin-permission-react": "^0.4.23",
|
|
65
65
|
"@graphiql/react": "^0.20.0",
|
|
66
66
|
"@material-ui/core": "^4.12.2",
|
|
67
67
|
"@material-ui/icons": "^4.9.1",
|
|
@@ -75,10 +75,10 @@
|
|
|
75
75
|
"swagger-ui-react": "^5.0.0"
|
|
76
76
|
},
|
|
77
77
|
"devDependencies": {
|
|
78
|
-
"@backstage/cli": "^0.26.7
|
|
79
|
-
"@backstage/core-app-api": "^1.12.6
|
|
80
|
-
"@backstage/dev-utils": "^1.0.33
|
|
81
|
-
"@backstage/test-utils": "^1.5.6
|
|
78
|
+
"@backstage/cli": "^0.26.7",
|
|
79
|
+
"@backstage/core-app-api": "^1.12.6",
|
|
80
|
+
"@backstage/dev-utils": "^1.0.33",
|
|
81
|
+
"@backstage/test-utils": "^1.5.6",
|
|
82
82
|
"@testing-library/dom": "^10.0.0",
|
|
83
83
|
"@testing-library/jest-dom": "^6.0.0",
|
|
84
84
|
"@testing-library/react": "^15.0.0",
|