@backstage/plugin-auth-backend 0.0.0-nightly-20230516022030 → 0.0.0-nightly-20230523021952

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,14 +1,28 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
- ## 0.0.0-nightly-20230516022030
3
+ ## 0.0.0-nightly-20230523021952
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - Updated dependencies
8
+ - @backstage/catalog-client@0.0.0-nightly-20230523021952
9
+ - @backstage/backend-common@0.0.0-nightly-20230523021952
10
+ - @backstage/plugin-auth-node@0.0.0-nightly-20230523021952
11
+ - @backstage/catalog-model@1.3.0
12
+ - @backstage/config@1.0.7
13
+ - @backstage/errors@1.1.5
14
+ - @backstage/types@1.0.2
15
+
16
+ ## 0.18.3
17
+
18
+ ### Patch Changes
19
+
20
+ - 7c116bcac7f: Fixed the way that some request errors are thrown
7
21
  - 473db605a4f: Fix config schema definition.
8
22
  - 3ffcdac7d07: Added a persistent session store through the database
9
23
  - Updated dependencies
10
- - @backstage/backend-common@0.0.0-nightly-20230516022030
11
- - @backstage/plugin-auth-node@0.0.0-nightly-20230516022030
24
+ - @backstage/backend-common@0.18.5
25
+ - @backstage/plugin-auth-node@0.2.14
12
26
  - @backstage/catalog-client@1.4.1
13
27
  - @backstage/catalog-model@1.3.0
14
28
  - @backstage/config@1.0.7
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;