@backstage/plugin-techdocs-backend 1.11.4 → 1.11.5-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 +24 -0
- package/config.d.ts +5 -0
- package/package.json +16 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
+
## 1.11.5-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 29a4aa8: fix(config): add missing parameters in config schema
|
|
8
|
+
|
|
9
|
+
## 1.11.5-next.0
|
|
10
|
+
|
|
11
|
+
### Patch Changes
|
|
12
|
+
|
|
13
|
+
- Updated dependencies
|
|
14
|
+
- @backstage/backend-plugin-api@1.1.1-next.0
|
|
15
|
+
- @backstage/catalog-client@1.9.0
|
|
16
|
+
- @backstage/catalog-model@1.7.2
|
|
17
|
+
- @backstage/config@1.3.1
|
|
18
|
+
- @backstage/errors@1.2.6
|
|
19
|
+
- @backstage/integration@1.16.0
|
|
20
|
+
- @backstage/plugin-catalog-common@1.1.2
|
|
21
|
+
- @backstage/plugin-catalog-node@1.15.1-next.0
|
|
22
|
+
- @backstage/plugin-permission-common@0.8.3
|
|
23
|
+
- @backstage/plugin-search-backend-module-techdocs@0.3.5-next.0
|
|
24
|
+
- @backstage/plugin-techdocs-common@0.1.0
|
|
25
|
+
- @backstage/plugin-techdocs-node@1.12.16-next.0
|
|
26
|
+
|
|
3
27
|
## 1.11.4
|
|
4
28
|
|
|
5
29
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -263,6 +263,11 @@ export interface Config {
|
|
|
263
263
|
* the credentials belongs to a different project to the bucket.
|
|
264
264
|
*/
|
|
265
265
|
projectId?: string;
|
|
266
|
+
/**
|
|
267
|
+
* (Optional) Location in storage bucket to save files
|
|
268
|
+
* If not set, the default location will be the root of the storage bucket
|
|
269
|
+
*/
|
|
270
|
+
bucketRootPath?: string;
|
|
266
271
|
};
|
|
267
272
|
};
|
|
268
273
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-backend",
|
|
3
|
-
"version": "1.11.
|
|
3
|
+
"version": "1.11.5-next.1",
|
|
4
4
|
"description": "The Backstage backend plugin that renders technical documentation for your components",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -69,18 +69,18 @@
|
|
|
69
69
|
},
|
|
70
70
|
"dependencies": {
|
|
71
71
|
"@backstage/backend-common": "^0.25.0",
|
|
72
|
-
"@backstage/backend-plugin-api": "
|
|
73
|
-
"@backstage/catalog-client": "
|
|
74
|
-
"@backstage/catalog-model": "
|
|
75
|
-
"@backstage/config": "
|
|
76
|
-
"@backstage/errors": "
|
|
77
|
-
"@backstage/integration": "
|
|
78
|
-
"@backstage/plugin-catalog-common": "
|
|
79
|
-
"@backstage/plugin-catalog-node": "
|
|
80
|
-
"@backstage/plugin-permission-common": "
|
|
81
|
-
"@backstage/plugin-search-backend-module-techdocs": "
|
|
82
|
-
"@backstage/plugin-techdocs-common": "
|
|
83
|
-
"@backstage/plugin-techdocs-node": "
|
|
72
|
+
"@backstage/backend-plugin-api": "1.1.1-next.0",
|
|
73
|
+
"@backstage/catalog-client": "1.9.0",
|
|
74
|
+
"@backstage/catalog-model": "1.7.2",
|
|
75
|
+
"@backstage/config": "1.3.1",
|
|
76
|
+
"@backstage/errors": "1.2.6",
|
|
77
|
+
"@backstage/integration": "1.16.0",
|
|
78
|
+
"@backstage/plugin-catalog-common": "1.1.2",
|
|
79
|
+
"@backstage/plugin-catalog-node": "1.15.1-next.0",
|
|
80
|
+
"@backstage/plugin-permission-common": "0.8.3",
|
|
81
|
+
"@backstage/plugin-search-backend-module-techdocs": "0.3.5-next.0",
|
|
82
|
+
"@backstage/plugin-techdocs-common": "0.1.0",
|
|
83
|
+
"@backstage/plugin-techdocs-node": "1.12.16-next.0",
|
|
84
84
|
"@types/express": "^4.17.6",
|
|
85
85
|
"express": "^4.17.1",
|
|
86
86
|
"express-promise-router": "^4.1.0",
|
|
@@ -91,9 +91,9 @@
|
|
|
91
91
|
"winston": "^3.2.1"
|
|
92
92
|
},
|
|
93
93
|
"devDependencies": {
|
|
94
|
-
"@backstage/backend-defaults": "
|
|
95
|
-
"@backstage/backend-test-utils": "
|
|
96
|
-
"@backstage/cli": "
|
|
94
|
+
"@backstage/backend-defaults": "0.7.0-next.0",
|
|
95
|
+
"@backstage/backend-test-utils": "1.2.1-next.0",
|
|
96
|
+
"@backstage/cli": "0.29.5-next.0",
|
|
97
97
|
"msw": "^2.0.0",
|
|
98
98
|
"supertest": "^7.0.0"
|
|
99
99
|
},
|