@backstage/plugin-techdocs-backend 0.10.7 → 0.10.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 +12 -0
- package/config.d.ts +8 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
+
## 0.10.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- e21e3c6102: Bumping minimum requirements for `dockerode` and `testcontainers`
|
|
8
|
+
- 9e64a7ac1e: Allow amazon web services s3 buckets to pass an server side encryption configuration so they can publish to encrypted buckets
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/catalog-client@0.5.2
|
|
11
|
+
- @backstage/catalog-model@0.9.7
|
|
12
|
+
- @backstage/backend-common@0.9.10
|
|
13
|
+
- @backstage/techdocs-common@0.10.7
|
|
14
|
+
|
|
3
15
|
## 0.10.7
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -121,6 +121,14 @@ export interface Config {
|
|
|
121
121
|
* @visibility backend
|
|
122
122
|
*/
|
|
123
123
|
s3ForcePathStyle?: boolean;
|
|
124
|
+
|
|
125
|
+
/**
|
|
126
|
+
* (Optional) AWS Server Side Encryption
|
|
127
|
+
* Defaults to undefined.
|
|
128
|
+
* If not set, encrypted buckets will fail to publish.
|
|
129
|
+
* https://docs.aws.amazon.com/AmazonS3/latest/userguide/specifying-s3-encryption.html
|
|
130
|
+
*/
|
|
131
|
+
sse?: 'aws:kms' | 'AES256';
|
|
124
132
|
};
|
|
125
133
|
}
|
|
126
134
|
| {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-techdocs-backend",
|
|
3
3
|
"description": "The Backstage backend plugin that renders technical documentation for your components",
|
|
4
|
-
"version": "0.10.
|
|
4
|
+
"version": "0.10.8",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -31,17 +31,17 @@
|
|
|
31
31
|
"clean": "backstage-cli clean"
|
|
32
32
|
},
|
|
33
33
|
"dependencies": {
|
|
34
|
-
"@backstage/backend-common": "^0.9.
|
|
35
|
-
"@backstage/catalog-client": "^0.5.
|
|
36
|
-
"@backstage/catalog-model": "^0.9.
|
|
34
|
+
"@backstage/backend-common": "^0.9.10",
|
|
35
|
+
"@backstage/catalog-client": "^0.5.2",
|
|
36
|
+
"@backstage/catalog-model": "^0.9.7",
|
|
37
37
|
"@backstage/config": "^0.1.11",
|
|
38
38
|
"@backstage/errors": "^0.1.4",
|
|
39
39
|
"@backstage/integration": "^0.6.9",
|
|
40
40
|
"@backstage/search-common": "^0.2.1",
|
|
41
|
-
"@backstage/techdocs-common": "^0.10.
|
|
41
|
+
"@backstage/techdocs-common": "^0.10.7",
|
|
42
42
|
"@types/express": "^4.17.6",
|
|
43
43
|
"cross-fetch": "^3.0.6",
|
|
44
|
-
"dockerode": "^3.
|
|
44
|
+
"dockerode": "^3.3.1",
|
|
45
45
|
"express": "^4.17.1",
|
|
46
46
|
"express-promise-router": "^4.1.0",
|
|
47
47
|
"fs-extra": "9.1.0",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"winston": "^3.2.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/cli": "^0.
|
|
55
|
-
"@backstage/test-utils": "^0.1.
|
|
56
|
-
"@types/dockerode": "^3.
|
|
54
|
+
"@backstage/cli": "^0.9.0",
|
|
55
|
+
"@backstage/test-utils": "^0.1.22",
|
|
56
|
+
"@types/dockerode": "^3.3.0",
|
|
57
57
|
"msw": "^0.35.0",
|
|
58
58
|
"supertest": "^6.1.3"
|
|
59
59
|
},
|
|
@@ -62,5 +62,5 @@
|
|
|
62
62
|
"config.d.ts"
|
|
63
63
|
],
|
|
64
64
|
"configSchema": "config.d.ts",
|
|
65
|
-
"gitHead": "
|
|
65
|
+
"gitHead": "ddfdcd2b44dc9848cf550cea5346d5f9916a36d9"
|
|
66
66
|
}
|