@backstage/plugin-techdocs-backend 0.10.6 → 0.10.7

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 CHANGED
@@ -1,5 +1,11 @@
1
1
  # @backstage/plugin-techdocs-backend
2
2
 
3
+ ## 0.10.7
4
+
5
+ ### Patch Changes
6
+
7
+ - b45607a2ec: Make techdocs s3 publisher credentials config schema optional.
8
+
3
9
  ## 0.10.6
4
10
 
5
11
  ### Patch Changes
package/config.d.ts CHANGED
@@ -83,12 +83,12 @@ export interface Config {
83
83
  * User access key id
84
84
  * @visibility secret
85
85
  */
86
- accessKeyId: string;
86
+ accessKeyId?: string;
87
87
  /**
88
88
  * User secret access key
89
89
  * @visibility secret
90
90
  */
91
- secretAccessKey: string;
91
+ secretAccessKey?: string;
92
92
  /**
93
93
  * ARN of role to be assumed
94
94
  * @visibility backend
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.6",
4
+ "version": "0.10.7",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -62,5 +62,5 @@
62
62
  "config.d.ts"
63
63
  ],
64
64
  "configSchema": "config.d.ts",
65
- "gitHead": "3db0cb3683d3000666802af90a465ba4fb0d1e8d"
65
+ "gitHead": "cf686e366d6770d0b478e17de821ca343c85749e"
66
66
  }