@backstage/plugin-techdocs-backend 2.1.8-next.0 → 2.2.0-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 +12 -0
- package/config.d.ts +8 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
+
## 2.2.0-next.1
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5ef8d16: Add support for disabling external font downloads via app-config option `techdocs.generator.mkdocs.disableExternalFonts`, useful for air-gapped Backstage instances.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/integration@2.0.2-next.1
|
|
13
|
+
- @backstage/plugin-techdocs-node@1.15.0-next.1
|
|
14
|
+
|
|
3
15
|
## 2.1.8-next.0
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -76,6 +76,14 @@ export interface Config {
|
|
|
76
76
|
* @see https://www.mkdocs.org/user-guide/configuration/#hooks
|
|
77
77
|
*/
|
|
78
78
|
dangerouslyAllowAdditionalKeys?: string[];
|
|
79
|
+
|
|
80
|
+
/**
|
|
81
|
+
* Disable external fonts for all TechDocs sites.
|
|
82
|
+
* If not set, the default value is false.
|
|
83
|
+
* If set to true, the external font will be disabled for all TechDocs sites.
|
|
84
|
+
* If set to false, the external font will be enabled for all TechDocs sites.
|
|
85
|
+
*/
|
|
86
|
+
disableExternalFonts?: boolean;
|
|
79
87
|
};
|
|
80
88
|
};
|
|
81
89
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-backend",
|
|
3
|
-
"version": "2.
|
|
3
|
+
"version": "2.2.0-next.1",
|
|
4
4
|
"description": "The Backstage backend plugin that renders technical documentation for your components",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -77,12 +77,12 @@
|
|
|
77
77
|
"dependencies": {
|
|
78
78
|
"@backstage/backend-plugin-api": "1.9.1-next.0",
|
|
79
79
|
"@backstage/catalog-client": "1.15.1-next.0",
|
|
80
|
-
"@backstage/catalog-model": "1.8.1-next.
|
|
80
|
+
"@backstage/catalog-model": "1.8.1-next.1",
|
|
81
81
|
"@backstage/config": "1.3.8-next.0",
|
|
82
82
|
"@backstage/errors": "1.3.1-next.0",
|
|
83
|
-
"@backstage/integration": "2.0.2-next.
|
|
84
|
-
"@backstage/plugin-catalog-node": "2.2.1-next.
|
|
85
|
-
"@backstage/plugin-techdocs-node": "1.
|
|
83
|
+
"@backstage/integration": "2.0.2-next.1",
|
|
84
|
+
"@backstage/plugin-catalog-node": "2.2.1-next.1",
|
|
85
|
+
"@backstage/plugin-techdocs-node": "1.15.0-next.1",
|
|
86
86
|
"@backstage/types": "1.2.2",
|
|
87
87
|
"express": "^4.22.0",
|
|
88
88
|
"express-promise-router": "^4.1.0",
|
|
@@ -92,9 +92,9 @@
|
|
|
92
92
|
"winston": "^3.2.1"
|
|
93
93
|
},
|
|
94
94
|
"devDependencies": {
|
|
95
|
-
"@backstage/backend-defaults": "0.17.1-next.
|
|
96
|
-
"@backstage/backend-test-utils": "1.11.3-next.
|
|
97
|
-
"@backstage/cli": "0.36.2-next.
|
|
95
|
+
"@backstage/backend-defaults": "0.17.1-next.1",
|
|
96
|
+
"@backstage/backend-test-utils": "1.11.3-next.1",
|
|
97
|
+
"@backstage/cli": "0.36.2-next.1",
|
|
98
98
|
"@types/express": "^4.17.6",
|
|
99
99
|
"msw": "^2.0.0",
|
|
100
100
|
"supertest": "^7.0.0"
|