@backstage/backend-app-api 0.9.0 → 0.9.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,11 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 0.9.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 91e78c3: `auth.externalAccess` should be optional in the config schema
8
+
3
9
  ## 0.9.0
4
10
 
5
11
  ### Minor Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api__alpha",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/config.d.ts CHANGED
@@ -71,7 +71,7 @@ export interface Config {
71
71
  * the Backstage ecosystem to get authorized for access to APIs that do
72
72
  * not permit unauthorized access.
73
73
  */
74
- externalAccess: Array<
74
+ externalAccess?: Array<
75
75
  | {
76
76
  /**
77
77
  * This is the legacy service-to-service access method, where a set
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api",
3
- "version": "0.9.0",
3
+ "version": "0.9.1",
4
4
  "description": "Core API used by Backstage backend apps",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -86,7 +86,7 @@
86
86
  "winston-transport": "^4.5.0"
87
87
  },
88
88
  "devDependencies": {
89
- "@backstage/backend-defaults": "^0.4.2",
89
+ "@backstage/backend-defaults": "^0.4.3",
90
90
  "@backstage/backend-test-utils": "^0.5.0",
91
91
  "@backstage/cli": "^0.27.0",
92
92
  "@types/compression": "^1.7.0",