@backstage/plugin-techdocs-backend 1.4.2-next.1 → 1.5.0-next.3
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 +36 -0
- package/config.d.ts +15 -1
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @backstage/plugin-techdocs-backend
|
|
2
2
|
|
|
3
|
+
## 1.5.0-next.3
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- dfbdae092e: Added a new optional `accountId` to the configuration options of the AWS S3 publisher. Configuring this option will source credentials for the `accountId` in the `aws` app config section. See https://github.com/backstage/backstage/blob/master/packages/integration-aws-node/README.md for more details.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- Updated dependencies
|
|
12
|
+
- @backstage/plugin-permission-common@0.7.2-next.2
|
|
13
|
+
- @backstage/backend-common@0.17.0-next.3
|
|
14
|
+
- @backstage/plugin-techdocs-node@1.4.3-next.3
|
|
15
|
+
- @backstage/catalog-client@1.2.0-next.1
|
|
16
|
+
- @backstage/catalog-model@1.1.4-next.1
|
|
17
|
+
- @backstage/config@1.0.5-next.1
|
|
18
|
+
- @backstage/errors@1.1.4-next.1
|
|
19
|
+
- @backstage/integration@1.4.1-next.1
|
|
20
|
+
- @backstage/plugin-catalog-common@1.0.9-next.3
|
|
21
|
+
- @backstage/plugin-search-common@1.2.0-next.3
|
|
22
|
+
|
|
23
|
+
## 1.4.2-next.2
|
|
24
|
+
|
|
25
|
+
### Patch Changes
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- @backstage/backend-common@0.17.0-next.2
|
|
29
|
+
- @backstage/plugin-search-common@1.2.0-next.2
|
|
30
|
+
- @backstage/plugin-techdocs-node@1.4.3-next.2
|
|
31
|
+
- @backstage/catalog-client@1.2.0-next.1
|
|
32
|
+
- @backstage/catalog-model@1.1.4-next.1
|
|
33
|
+
- @backstage/config@1.0.5-next.1
|
|
34
|
+
- @backstage/errors@1.1.4-next.1
|
|
35
|
+
- @backstage/integration@1.4.1-next.1
|
|
36
|
+
- @backstage/plugin-catalog-common@1.0.9-next.2
|
|
37
|
+
- @backstage/plugin-permission-common@0.7.2-next.1
|
|
38
|
+
|
|
3
39
|
## 1.4.2-next.1
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -81,9 +81,23 @@ export interface Config {
|
|
|
81
81
|
* Required when 'type' is set to awsS3
|
|
82
82
|
*/
|
|
83
83
|
awsS3?: {
|
|
84
|
+
/**
|
|
85
|
+
* (Optional) The AWS account ID where the storage bucket is located.
|
|
86
|
+
* Credentials for the account ID will be sourced from the 'aws' app config section.
|
|
87
|
+
* See the
|
|
88
|
+
* [integration-aws-node package](https://github.com/backstage/backstage/blob/master/packages/integration-aws-node/README.md)
|
|
89
|
+
* for details on how to configure the credentials in the app config.
|
|
90
|
+
* If account ID is not set and no credentials are set, environment variables or aws config file will be used to authenticate.
|
|
91
|
+
* @see https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/loading-node-credentials-environment.html
|
|
92
|
+
* @see https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/loading-node-credentials-shared.html
|
|
93
|
+
* @visibility secret
|
|
94
|
+
*/
|
|
95
|
+
accountId?: string;
|
|
84
96
|
/**
|
|
85
97
|
* (Optional) Credentials used to access a storage bucket.
|
|
86
|
-
*
|
|
98
|
+
* This section is now deprecated. Configuring the account ID is now preferred, with credentials in the 'aws'
|
|
99
|
+
* app config section.
|
|
100
|
+
* If not set and no account ID is set, environment variables or aws config file will be used to authenticate.
|
|
87
101
|
* @see https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/loading-node-credentials-environment.html
|
|
88
102
|
* @see https://docs.aws.amazon.com/sdk-for-javascript/v3/developer-guide/loading-node-credentials-shared.html
|
|
89
103
|
* @visibility secret
|
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": "1.
|
|
4
|
+
"version": "1.5.0-next.3",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -33,16 +33,16 @@
|
|
|
33
33
|
"clean": "backstage-cli package clean"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-common": "^0.17.0-next.
|
|
36
|
+
"@backstage/backend-common": "^0.17.0-next.3",
|
|
37
37
|
"@backstage/catalog-client": "^1.2.0-next.1",
|
|
38
38
|
"@backstage/catalog-model": "^1.1.4-next.1",
|
|
39
39
|
"@backstage/config": "^1.0.5-next.1",
|
|
40
40
|
"@backstage/errors": "^1.1.4-next.1",
|
|
41
41
|
"@backstage/integration": "^1.4.1-next.1",
|
|
42
|
-
"@backstage/plugin-catalog-common": "^1.0.9-next.
|
|
43
|
-
"@backstage/plugin-permission-common": "^0.7.2-next.
|
|
44
|
-
"@backstage/plugin-search-common": "^1.
|
|
45
|
-
"@backstage/plugin-techdocs-node": "^1.4.3-next.
|
|
42
|
+
"@backstage/plugin-catalog-common": "^1.0.9-next.3",
|
|
43
|
+
"@backstage/plugin-permission-common": "^0.7.2-next.2",
|
|
44
|
+
"@backstage/plugin-search-common": "^1.2.0-next.3",
|
|
45
|
+
"@backstage/plugin-techdocs-node": "^1.4.3-next.3",
|
|
46
46
|
"@types/express": "^4.17.6",
|
|
47
47
|
"dockerode": "^3.3.1",
|
|
48
48
|
"express": "^4.17.1",
|
|
@@ -55,9 +55,9 @@
|
|
|
55
55
|
"winston": "^3.2.1"
|
|
56
56
|
},
|
|
57
57
|
"devDependencies": {
|
|
58
|
-
"@backstage/backend-test-utils": "^0.1.31-next.
|
|
59
|
-
"@backstage/cli": "^0.
|
|
60
|
-
"@backstage/plugin-search-backend-node": "^1.0
|
|
58
|
+
"@backstage/backend-test-utils": "^0.1.31-next.4",
|
|
59
|
+
"@backstage/cli": "^0.22.0-next.4",
|
|
60
|
+
"@backstage/plugin-search-backend-node": "^1.1.0-next.3",
|
|
61
61
|
"@types/dockerode": "^3.3.0",
|
|
62
62
|
"msw": "^0.49.0",
|
|
63
63
|
"supertest": "^6.1.3"
|