@backstage/plugin-auth-backend 0.22.4-next.0 → 0.22.4

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,67 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.22.4
4
+
5
+ ### Patch Changes
6
+
7
+ - f02fe79: Refactored the `azure-easyauth` provider to use the implementation from `@backstage/plugin-auth-backend-module-azure-easyauth-provider`.
8
+ - d62bc51: Added token type header parameter and user identity proof to issued user tokens.
9
+ - ba763b6: Migrate the Bitbucket auth provider to the new `@backstage/plugin-auth-backend-module-bitbucket-provider` module package.
10
+ - bf4d71a: Initial implementation of the `/v1/userinfo` endpoint, which is now able to parse and return the `sub` and `ent` claims from a Backstage user token.
11
+ - c26218d: Deprecated some of the Cloudflare Access types and used the implementation from `@backstage/plugin-auth-backend-module-cloudflare-access-provider`
12
+ - Updated dependencies
13
+ - @backstage/backend-common@0.21.7
14
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.9
15
+ - @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.0
16
+ - @backstage/backend-plugin-api@0.6.17
17
+ - @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.0
18
+ - @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.9
19
+ - @backstage/plugin-auth-node@0.4.12
20
+ - @backstage/plugin-auth-backend-module-oidc-provider@0.1.8
21
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.12
22
+ - @backstage/catalog-client@1.6.4
23
+ - @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.0
24
+ - @backstage/plugin-catalog-node@1.11.1
25
+ - @backstage/catalog-model@1.4.5
26
+ - @backstage/config@1.2.0
27
+ - @backstage/errors@1.2.4
28
+ - @backstage/types@1.1.1
29
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.14
30
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.14
31
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.14
32
+ - @backstage/plugin-auth-backend-module-microsoft-provider@0.1.12
33
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.14
34
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.10
35
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.10
36
+
37
+ ## 0.22.4-next.1
38
+
39
+ ### Patch Changes
40
+
41
+ - d62bc51: Added token type header parameter and user identity proof to issued user tokens.
42
+ - bf4d71a: Initial implementation of the `/v1/userinfo` endpoint, which is now able to parse and return the `sub` and `ent` claims from a Backstage user token.
43
+ - Updated dependencies
44
+ - @backstage/backend-common@0.21.7-next.1
45
+ - @backstage/backend-plugin-api@0.6.17-next.1
46
+ - @backstage/plugin-auth-node@0.4.12-next.1
47
+ - @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.9-next.1
48
+ - @backstage/plugin-auth-backend-module-oidc-provider@0.1.8-next.1
49
+ - @backstage/catalog-client@1.6.4-next.0
50
+ - @backstage/catalog-model@1.4.5
51
+ - @backstage/config@1.2.0
52
+ - @backstage/errors@1.2.4
53
+ - @backstage/types@1.1.1
54
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.9-next.1
55
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.12-next.1
56
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.14-next.1
57
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.14-next.1
58
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.14-next.1
59
+ - @backstage/plugin-auth-backend-module-microsoft-provider@0.1.12-next.1
60
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.14-next.1
61
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.10-next.1
62
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.10-next.1
63
+ - @backstage/plugin-catalog-node@1.11.1-next.1
64
+
3
65
  ## 0.22.4-next.0
4
66
 
5
67
  ### Patch Changes
package/config.d.ts CHANGED
@@ -182,15 +182,6 @@ export interface Config {
182
182
  iss?: string;
183
183
  region: string;
184
184
  };
185
- /** @visibility frontend */
186
- cfaccess?: {
187
- teamName: string;
188
- /** @deepVisibility secret */
189
- serviceTokens?: Array<{
190
- token: string;
191
- subject: string;
192
- }>;
193
- };
194
185
  /**
195
186
  * The backstage token expiration.
196
187
  */