@backstage/plugin-auth-backend 0.18.3-next.2 → 0.18.4-next.0

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,34 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.18.4-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/catalog-client@1.4.2-next.0
9
+ - @backstage/backend-common@0.18.6-next.0
10
+ - @backstage/config@1.0.7
11
+ - @backstage/catalog-model@1.3.0
12
+ - @backstage/errors@1.1.5
13
+ - @backstage/types@1.0.2
14
+ - @backstage/plugin-auth-node@0.2.15-next.0
15
+
16
+ ## 0.18.3
17
+
18
+ ### Patch Changes
19
+
20
+ - 7c116bcac7f: Fixed the way that some request errors are thrown
21
+ - 473db605a4f: Fix config schema definition.
22
+ - 3ffcdac7d07: Added a persistent session store through the database
23
+ - Updated dependencies
24
+ - @backstage/backend-common@0.18.5
25
+ - @backstage/plugin-auth-node@0.2.14
26
+ - @backstage/catalog-client@1.4.1
27
+ - @backstage/catalog-model@1.3.0
28
+ - @backstage/config@1.0.7
29
+ - @backstage/errors@1.1.5
30
+ - @backstage/types@1.0.2
31
+
3
32
  ## 0.18.3-next.2
4
33
 
5
34
  ### Patch Changes
package/config.d.ts CHANGED
@@ -59,6 +59,7 @@ export interface Config {
59
59
 
60
60
  /**
61
61
  * The available auth-provider options and attributes
62
+ * @additionalProperties true
62
63
  */
63
64
  providers?: {
64
65
  google?: {
package/dist/index.cjs.js CHANGED
@@ -1248,7 +1248,7 @@ class CloudflareAccessAuthProvider {
1248
1248
  { headers }
1249
1249
  );
1250
1250
  if (!res.ok) {
1251
- throw errors.ResponseError.fromResponse(res);
1251
+ throw await errors.ResponseError.fromResponse(res);
1252
1252
  }
1253
1253
  const cfIdentity = await res.json();
1254
1254
  return cfIdentity;