@backstage/backend-defaults 0.6.0 → 0.6.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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # @backstage/backend-defaults
2
2
 
3
+ ## 0.6.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2a825a6: Exclude `@backstage/backend-common` from schema collection if `@backstage/backend-defaults` is present
8
+ - Updated dependencies
9
+ - @backstage/config-loader@1.9.4
10
+
3
11
  ## 0.6.0
4
12
 
5
13
  ### Minor Changes
package/config.d.ts CHANGED
@@ -86,6 +86,19 @@ export interface Config {
86
86
  * Options used by the default auth, httpAuth and userInfo services.
87
87
  */
88
88
  auth?: {
89
+ /**
90
+ * Keys shared by all backends for signing and validating backend tokens.
91
+ * @deprecated this will be removed when the backwards compatibility is no longer needed with backend-common
92
+ */
93
+ keys?: {
94
+ /**
95
+ * Secret for generating tokens. Should be a base64 string, recommended
96
+ * length is 24 bytes.
97
+ *
98
+ * @visibility secret
99
+ */
100
+ secret: string;
101
+ }[];
89
102
  /**
90
103
  * This disables the otherwise default auth policy, which requires all
91
104
  * requests to be authenticated with either user or service credentials.
@@ -3,7 +3,7 @@
3
3
  Object.defineProperty(exports, '__esModule', { value: true });
4
4
 
5
5
  var name = "@backstage/backend-defaults";
6
- var version = "0.6.0";
6
+ var version = "0.6.1";
7
7
  var description = "Backend defaults used by Backstage backend apps";
8
8
  var backstage = {
9
9
  role: "node-library"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-defaults",
3
- "version": "0.6.0",
3
+ "version": "0.6.1",
4
4
  "description": "Backend defaults used by Backstage backend apps",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -199,7 +199,7 @@
199
199
  "@backstage/cli-common": "^0.1.15",
200
200
  "@backstage/cli-node": "^0.2.11",
201
201
  "@backstage/config": "^1.3.1",
202
- "@backstage/config-loader": "^1.9.3",
202
+ "@backstage/config-loader": "^1.9.4",
203
203
  "@backstage/errors": "^1.2.6",
204
204
  "@backstage/integration": "^1.16.0",
205
205
  "@backstage/integration-aws-node": "^0.1.14",