@backstage/plugin-techdocs-backend 2.1.7 → 2.1.8
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 +8 -0
- package/config.d.ts +12 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
+
## 2.1.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 9f76ea4: Added `techdocs.generator.mkdocs.dangerouslyAllowAdditionalPlugins` configuration option, allowing operators to extend the set of permitted MkDocs plugins during TechDocs generation.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/plugin-techdocs-node@1.14.7
|
|
10
|
+
|
|
3
11
|
## 2.1.7
|
|
4
12
|
|
|
5
13
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -76,6 +76,18 @@ export interface Config {
|
|
|
76
76
|
* @see https://www.mkdocs.org/user-guide/configuration/#hooks
|
|
77
77
|
*/
|
|
78
78
|
dangerouslyAllowAdditionalKeys?: string[];
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* List of additional MkDocs plugins to allow beyond the default set.
|
|
82
|
+
* Plugins not in this list or the default set will be removed from
|
|
83
|
+
* mkdocs.yml before documentation generation.
|
|
84
|
+
*
|
|
85
|
+
* WARNING: Some MkDocs plugins can make outbound HTTP requests or execute
|
|
86
|
+
* arbitrary code during documentation generation. Only allow plugins that
|
|
87
|
+
* have been audited for use in your environment, including the configuration
|
|
88
|
+
* options that documentation authors can supply.
|
|
89
|
+
*/
|
|
90
|
+
dangerouslyAllowAdditionalPlugins?: string[];
|
|
79
91
|
};
|
|
80
92
|
};
|
|
81
93
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-backend",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.8",
|
|
4
4
|
"description": "The Backstage backend plugin that renders technical documentation for your components",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -82,7 +82,7 @@
|
|
|
82
82
|
"@backstage/errors": "^1.3.0",
|
|
83
83
|
"@backstage/integration": "^2.0.1",
|
|
84
84
|
"@backstage/plugin-catalog-node": "^2.2.0",
|
|
85
|
-
"@backstage/plugin-techdocs-node": "^1.14.
|
|
85
|
+
"@backstage/plugin-techdocs-node": "^1.14.7",
|
|
86
86
|
"@backstage/types": "^1.2.2",
|
|
87
87
|
"express": "^4.22.0",
|
|
88
88
|
"express-promise-router": "^4.1.0",
|