@backstage/plugin-auth-backend 0.20.1-next.1 → 0.20.1-next.3
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 +48 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/package.json +18 -18
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
+
## 0.20.1-next.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.20.0-next.3
|
|
9
|
+
- @backstage/backend-plugin-api@0.6.8-next.3
|
|
10
|
+
- @backstage/catalog-client@1.5.0-next.1
|
|
11
|
+
- @backstage/catalog-model@1.4.3
|
|
12
|
+
- @backstage/config@1.1.1
|
|
13
|
+
- @backstage/errors@1.2.3
|
|
14
|
+
- @backstage/types@1.1.1
|
|
15
|
+
- @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0-next.3
|
|
16
|
+
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2-next.3
|
|
17
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.1.5-next.3
|
|
18
|
+
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5-next.3
|
|
19
|
+
- @backstage/plugin-auth-backend-module-google-provider@0.1.5-next.3
|
|
20
|
+
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5-next.3
|
|
21
|
+
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.0-next.2
|
|
22
|
+
- @backstage/plugin-auth-backend-module-okta-provider@0.0.1-next.3
|
|
23
|
+
- @backstage/plugin-auth-node@0.4.2-next.3
|
|
24
|
+
- @backstage/plugin-catalog-node@1.6.0-next.3
|
|
25
|
+
|
|
26
|
+
## 0.20.1-next.2
|
|
27
|
+
|
|
28
|
+
### Patch Changes
|
|
29
|
+
|
|
30
|
+
- 783797a: fix static token issuer not being able to initialize
|
|
31
|
+
- a62764b: Updated dependency `passport` to `^0.7.0`.
|
|
32
|
+
- Updated dependencies
|
|
33
|
+
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.0-next.1
|
|
34
|
+
- @backstage/plugin-catalog-node@1.6.0-next.2
|
|
35
|
+
- @backstage/backend-common@0.20.0-next.2
|
|
36
|
+
- @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0-next.2
|
|
37
|
+
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5-next.2
|
|
38
|
+
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5-next.2
|
|
39
|
+
- @backstage/plugin-auth-backend-module-okta-provider@0.0.1-next.2
|
|
40
|
+
- @backstage/plugin-auth-node@0.4.2-next.2
|
|
41
|
+
- @backstage/catalog-client@1.5.0-next.1
|
|
42
|
+
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2-next.2
|
|
43
|
+
- @backstage/plugin-auth-backend-module-google-provider@0.1.5-next.2
|
|
44
|
+
- @backstage/backend-plugin-api@0.6.8-next.2
|
|
45
|
+
- @backstage/catalog-model@1.4.3
|
|
46
|
+
- @backstage/config@1.1.1
|
|
47
|
+
- @backstage/errors@1.2.3
|
|
48
|
+
- @backstage/types@1.1.1
|
|
49
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.1.5-next.2
|
|
50
|
+
|
|
3
51
|
## 0.20.1-next.1
|
|
4
52
|
|
|
5
53
|
### 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
|
}
|