@backstage/plugin-auth-backend 0.20.1-next.1 → 0.20.1-next.2

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,30 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.20.1-next.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 783797a: fix static token issuer not being able to initialize
8
+ - a62764b: Updated dependency `passport` to `^0.7.0`.
9
+ - Updated dependencies
10
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.0-next.1
11
+ - @backstage/plugin-catalog-node@1.6.0-next.2
12
+ - @backstage/backend-common@0.20.0-next.2
13
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0-next.2
14
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5-next.2
15
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5-next.2
16
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.1-next.2
17
+ - @backstage/plugin-auth-node@0.4.2-next.2
18
+ - @backstage/catalog-client@1.5.0-next.1
19
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2-next.2
20
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.5-next.2
21
+ - @backstage/backend-plugin-api@0.6.8-next.2
22
+ - @backstage/catalog-model@1.4.3
23
+ - @backstage/config@1.1.1
24
+ - @backstage/errors@1.2.3
25
+ - @backstage/types@1.1.1
26
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.5-next.2
27
+
3
28
  ## 0.20.1-next.1
4
29
 
5
30
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -2690,7 +2690,7 @@ class KeyStores {
2690
2690
  return keyStore;
2691
2691
  }
2692
2692
  if (provider === "static") {
2693
- await StaticKeyStore.fromConfig(config);
2693
+ return await StaticKeyStore.fromConfig(config);
2694
2694
  }
2695
2695
  throw new Error(`Unknown KeyStore provider: ${provider}`);
2696
2696
  }