@backstage/plugin-techdocs 1.11.1-next.0 → 1.11.1-next.1
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 +23 -0
- package/alpha/package.json +1 -1
- package/config.d.ts +2 -2
- package/package.json +13 -13
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs
|
|
2
2
|
|
|
3
|
+
## 1.11.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 90246a9: Fix techdocs config schema for custom elements sanitizer
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/theme@0.6.1-next.0
|
|
10
|
+
- @backstage/catalog-model@1.7.0
|
|
11
|
+
- @backstage/config@1.2.0
|
|
12
|
+
- @backstage/core-compat-api@0.3.2-next.1
|
|
13
|
+
- @backstage/core-components@0.16.0-next.1
|
|
14
|
+
- @backstage/core-plugin-api@1.10.0
|
|
15
|
+
- @backstage/errors@1.2.4
|
|
16
|
+
- @backstage/frontend-plugin-api@0.9.1-next.1
|
|
17
|
+
- @backstage/integration@1.15.1
|
|
18
|
+
- @backstage/integration-react@1.2.0
|
|
19
|
+
- @backstage/plugin-auth-react@0.1.8-next.1
|
|
20
|
+
- @backstage/plugin-catalog-react@1.14.1-next.1
|
|
21
|
+
- @backstage/plugin-search-common@1.2.14
|
|
22
|
+
- @backstage/plugin-search-react@1.8.2-next.1
|
|
23
|
+
- @backstage/plugin-techdocs-common@0.1.0
|
|
24
|
+
- @backstage/plugin-techdocs-react@1.2.10-next.1
|
|
25
|
+
|
|
3
26
|
## 1.11.1-next.0
|
|
4
27
|
|
|
5
28
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/config.d.ts
CHANGED
|
@@ -49,7 +49,7 @@ export interface Config {
|
|
|
49
49
|
* this will allow all custom elements with tag name matching `^backstage-` like <backstage-custom-element /> etc.
|
|
50
50
|
* @visibility frontend
|
|
51
51
|
*/
|
|
52
|
-
allowedCustomElementTagNameRegExp
|
|
52
|
+
allowedCustomElementTagNameRegExp?: string;
|
|
53
53
|
/**
|
|
54
54
|
* Allows listed custom element attribute name regex
|
|
55
55
|
* Example:
|
|
@@ -57,7 +57,7 @@ export interface Config {
|
|
|
57
57
|
* this will allow all custom element attributes matching `attribute1` or `attribute2` like <backstage-custom-element attribute1="yes" attribute2/>
|
|
58
58
|
* @visibility frontend
|
|
59
59
|
*/
|
|
60
|
-
allowedCustomElementAttributeNameRegExp
|
|
60
|
+
allowedCustomElementAttributeNameRegExp?: string;
|
|
61
61
|
};
|
|
62
62
|
};
|
|
63
63
|
}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs",
|
|
3
|
-
"version": "1.11.1-next.
|
|
3
|
+
"version": "1.11.1-next.1",
|
|
4
4
|
"description": "The Backstage plugin that renders technical documentation for your components",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "frontend-plugin",
|
|
@@ -61,20 +61,20 @@
|
|
|
61
61
|
"dependencies": {
|
|
62
62
|
"@backstage/catalog-model": "1.7.0",
|
|
63
63
|
"@backstage/config": "1.2.0",
|
|
64
|
-
"@backstage/core-compat-api": "0.3.2-next.
|
|
65
|
-
"@backstage/core-components": "0.16.0-next.
|
|
64
|
+
"@backstage/core-compat-api": "0.3.2-next.1",
|
|
65
|
+
"@backstage/core-components": "0.16.0-next.1",
|
|
66
66
|
"@backstage/core-plugin-api": "1.10.0",
|
|
67
67
|
"@backstage/errors": "1.2.4",
|
|
68
|
-
"@backstage/frontend-plugin-api": "0.9.1-next.
|
|
68
|
+
"@backstage/frontend-plugin-api": "0.9.1-next.1",
|
|
69
69
|
"@backstage/integration": "1.15.1",
|
|
70
70
|
"@backstage/integration-react": "1.2.0",
|
|
71
|
-
"@backstage/plugin-auth-react": "0.1.8-next.
|
|
72
|
-
"@backstage/plugin-catalog-react": "1.14.1-next.
|
|
71
|
+
"@backstage/plugin-auth-react": "0.1.8-next.1",
|
|
72
|
+
"@backstage/plugin-catalog-react": "1.14.1-next.1",
|
|
73
73
|
"@backstage/plugin-search-common": "1.2.14",
|
|
74
|
-
"@backstage/plugin-search-react": "1.8.2-next.
|
|
74
|
+
"@backstage/plugin-search-react": "1.8.2-next.1",
|
|
75
75
|
"@backstage/plugin-techdocs-common": "0.1.0",
|
|
76
|
-
"@backstage/plugin-techdocs-react": "1.2.10-next.
|
|
77
|
-
"@backstage/theme": "0.6.0",
|
|
76
|
+
"@backstage/plugin-techdocs-react": "1.2.10-next.1",
|
|
77
|
+
"@backstage/theme": "0.6.1-next.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",
|
|
@@ -88,11 +88,11 @@
|
|
|
88
88
|
"react-use": "^17.2.4"
|
|
89
89
|
},
|
|
90
90
|
"devDependencies": {
|
|
91
|
-
"@backstage/cli": "0.29.0-next.
|
|
91
|
+
"@backstage/cli": "0.29.0-next.1",
|
|
92
92
|
"@backstage/core-app-api": "1.15.1",
|
|
93
|
-
"@backstage/dev-utils": "1.1.3-next.
|
|
94
|
-
"@backstage/plugin-techdocs-module-addons-contrib": "1.1.17-next.
|
|
95
|
-
"@backstage/test-utils": "1.7.0",
|
|
93
|
+
"@backstage/dev-utils": "1.1.3-next.1",
|
|
94
|
+
"@backstage/plugin-techdocs-module-addons-contrib": "1.1.17-next.1",
|
|
95
|
+
"@backstage/test-utils": "1.7.1-next.0",
|
|
96
96
|
"@testing-library/dom": "^10.0.0",
|
|
97
97
|
"@testing-library/jest-dom": "^6.0.0",
|
|
98
98
|
"@testing-library/react": "^16.0.0",
|