@backstage/plugin-techdocs 1.16.1-next.2 → 1.16.2-next.0
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 +31 -0
- package/config.d.ts +1 -1
- package/dist/package.json.esm.js +1 -1
- package/package.json +17 -17
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,36 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs
|
|
2
2
|
|
|
3
|
+
## 1.16.2-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/integration@1.19.2-next.0
|
|
9
|
+
- @backstage/integration-react@1.2.14-next.0
|
|
10
|
+
- @backstage/plugin-catalog-react@1.21.5-next.0
|
|
11
|
+
- @backstage/frontend-plugin-api@0.13.2
|
|
12
|
+
- @backstage/plugin-search-react@1.10.1
|
|
13
|
+
|
|
14
|
+
## 1.16.1
|
|
15
|
+
|
|
16
|
+
### Patch Changes
|
|
17
|
+
|
|
18
|
+
- f3f84f1: Minor extension type updates after frontend API bump
|
|
19
|
+
- 5c33821: Fixed schema type for additionalAllowedURIProtocols
|
|
20
|
+
- d02db50: Remove unnecessary use of `compatWrapper` and `convertLegacyRouteRef`(s) for the new frontend system.
|
|
21
|
+
- 592361e: The `techdocs` config is now marked as optional.
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/integration@1.19.0
|
|
24
|
+
- @backstage/frontend-plugin-api@0.13.2
|
|
25
|
+
- @backstage/core-components@0.18.4
|
|
26
|
+
- @backstage/plugin-catalog-react@1.21.4
|
|
27
|
+
- @backstage/plugin-search-react@1.10.1
|
|
28
|
+
- @backstage/core-plugin-api@1.12.1
|
|
29
|
+
- @backstage/theme@0.7.1
|
|
30
|
+
- @backstage/integration-react@1.2.13
|
|
31
|
+
- @backstage/plugin-auth-react@0.1.22
|
|
32
|
+
- @backstage/plugin-techdocs-react@1.3.6
|
|
33
|
+
|
|
3
34
|
## 1.16.1-next.2
|
|
4
35
|
|
|
5
36
|
### Patch Changes
|
package/config.d.ts
CHANGED
package/dist/package.json.esm.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs",
|
|
3
|
-
"version": "1.16.
|
|
3
|
+
"version": "1.16.2-next.0",
|
|
4
4
|
"description": "The Backstage plugin that renders technical documentation for your components",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -74,19 +74,19 @@
|
|
|
74
74
|
"@backstage/catalog-client": "1.12.1",
|
|
75
75
|
"@backstage/catalog-model": "1.7.6",
|
|
76
76
|
"@backstage/config": "1.3.6",
|
|
77
|
-
"@backstage/core-components": "0.18.4
|
|
78
|
-
"@backstage/core-plugin-api": "1.12.1
|
|
77
|
+
"@backstage/core-components": "0.18.4",
|
|
78
|
+
"@backstage/core-plugin-api": "1.12.1",
|
|
79
79
|
"@backstage/errors": "1.2.7",
|
|
80
|
-
"@backstage/frontend-plugin-api": "0.13.2
|
|
81
|
-
"@backstage/integration": "1.
|
|
82
|
-
"@backstage/integration-react": "1.2.
|
|
83
|
-
"@backstage/plugin-auth-react": "0.1.22
|
|
84
|
-
"@backstage/plugin-catalog-react": "1.21.
|
|
80
|
+
"@backstage/frontend-plugin-api": "0.13.2",
|
|
81
|
+
"@backstage/integration": "1.19.2-next.0",
|
|
82
|
+
"@backstage/integration-react": "1.2.14-next.0",
|
|
83
|
+
"@backstage/plugin-auth-react": "0.1.22",
|
|
84
|
+
"@backstage/plugin-catalog-react": "1.21.5-next.0",
|
|
85
85
|
"@backstage/plugin-search-common": "1.2.21",
|
|
86
|
-
"@backstage/plugin-search-react": "1.10.1
|
|
86
|
+
"@backstage/plugin-search-react": "1.10.1",
|
|
87
87
|
"@backstage/plugin-techdocs-common": "0.1.1",
|
|
88
|
-
"@backstage/plugin-techdocs-react": "1.3.6
|
|
89
|
-
"@backstage/theme": "0.7.1
|
|
88
|
+
"@backstage/plugin-techdocs-react": "1.3.6",
|
|
89
|
+
"@backstage/theme": "0.7.1",
|
|
90
90
|
"@material-ui/core": "^4.12.2",
|
|
91
91
|
"@material-ui/icons": "^4.9.1",
|
|
92
92
|
"@material-ui/lab": "4.0.0-alpha.61",
|
|
@@ -99,12 +99,12 @@
|
|
|
99
99
|
"react-use": "^17.2.4"
|
|
100
100
|
},
|
|
101
101
|
"devDependencies": {
|
|
102
|
-
"@backstage/cli": "0.35.
|
|
103
|
-
"@backstage/core-app-api": "1.19.3
|
|
104
|
-
"@backstage/dev-utils": "1.1.
|
|
105
|
-
"@backstage/plugin-catalog": "1.32.
|
|
106
|
-
"@backstage/plugin-techdocs-module-addons-contrib": "1.1.
|
|
107
|
-
"@backstage/test-utils": "1.7.14
|
|
102
|
+
"@backstage/cli": "0.35.2-next.1",
|
|
103
|
+
"@backstage/core-app-api": "1.19.3",
|
|
104
|
+
"@backstage/dev-utils": "1.1.19-next.1",
|
|
105
|
+
"@backstage/plugin-catalog": "1.32.2-next.0",
|
|
106
|
+
"@backstage/plugin-techdocs-module-addons-contrib": "1.1.32-next.0",
|
|
107
|
+
"@backstage/test-utils": "1.7.14",
|
|
108
108
|
"@testing-library/dom": "^10.0.0",
|
|
109
109
|
"@testing-library/jest-dom": "^6.0.0",
|
|
110
110
|
"@testing-library/react": "^16.0.0",
|