@backstage/plugin-auth-backend 0.21.2 → 0.22.0-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,46 +1,41 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
- ## 0.21.2
4
-
5
- ### Patch Changes
6
-
7
- - Updated dependencies
8
- - @backstage/backend-common@0.21.2
9
- - @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.3
10
- - @backstage/plugin-auth-backend-module-oidc-provider@0.1.2
11
- - @backstage/plugin-auth-node@0.4.7
12
- - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.4
13
- - @backstage/plugin-auth-backend-module-github-provider@0.1.9
14
- - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.9
15
- - @backstage/plugin-auth-backend-module-microsoft-provider@0.1.7
16
- - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.9
17
- - @backstage/plugin-auth-backend-module-okta-provider@0.0.5
18
- - @backstage/backend-plugin-api@0.6.12
19
- - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.7
20
- - @backstage/plugin-auth-backend-module-google-provider@0.1.9
21
- - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.5
22
- - @backstage/plugin-catalog-node@1.7.2
23
-
24
- ## 0.21.1
25
-
26
- ### Patch Changes
27
-
28
- - Updated dependencies
29
- - @backstage/backend-common@0.21.1
30
- - @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.2
31
- - @backstage/plugin-auth-backend-module-oidc-provider@0.1.1
32
- - @backstage/plugin-auth-node@0.4.6
33
- - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.3
34
- - @backstage/plugin-auth-backend-module-github-provider@0.1.8
35
- - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.8
36
- - @backstage/plugin-auth-backend-module-microsoft-provider@0.1.6
37
- - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.8
38
- - @backstage/plugin-auth-backend-module-okta-provider@0.0.4
39
- - @backstage/backend-plugin-api@0.6.11
40
- - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.6
41
- - @backstage/plugin-auth-backend-module-google-provider@0.1.8
42
- - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.4
43
- - @backstage/plugin-catalog-node@1.7.1
3
+ ## 0.22.0-next.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 293c835: Add support for Service Tokens to Cloudflare Access auth provider
8
+ - 492fe83: **BREAKING**: The `CatalogIdentityClient` constructor now also requires the `discovery` service to be forwarded from the plugin environment. This is part of the migration to support the new auth services, which has also been done for the `createRouter` function.
9
+
10
+ ### Patch Changes
11
+
12
+ - 999224f: Bump dependency `minimatch` to v9
13
+ - 2af5354: Bump dependency `jose` to v5
14
+ - 38af71a: Updated dependency `google-auth-library` to `^9.0.0`.
15
+ - 0fb419b: Updated dependency `uuid` to `^9.0.0`.
16
+ Updated dependency `@types/uuid` to `^9.0.0`.
17
+ - fa7ea3f: Internal refactor to break out how the router is constructed
18
+ - Updated dependencies
19
+ - @backstage/backend-common@0.21.3-next.0
20
+ - @backstage/plugin-auth-node@0.4.8-next.0
21
+ - @backstage/errors@1.2.4-next.0
22
+ - @backstage/backend-plugin-api@0.6.13-next.0
23
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.6-next.0
24
+ - @backstage/plugin-auth-backend-module-microsoft-provider@0.1.8-next.0
25
+ - @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.4-next.0
26
+ - @backstage/plugin-auth-backend-module-oidc-provider@0.1.3-next.0
27
+ - @backstage/plugin-catalog-node@1.8.0-next.0
28
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.8-next.0
29
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.10-next.0
30
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.5-next.0
31
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.10-next.0
32
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.10-next.0
33
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.10-next.0
34
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.6-next.0
35
+ - @backstage/catalog-client@1.6.1-next.0
36
+ - @backstage/catalog-model@1.4.5-next.0
37
+ - @backstage/config@1.1.2-next.0
38
+ - @backstage/types@1.1.1
44
39
 
45
40
  ## 0.21.0
46
41
 
package/config.d.ts CHANGED
@@ -185,6 +185,11 @@ export interface Config {
185
185
  /** @visibility frontend */
186
186
  cfaccess?: {
187
187
  teamName: string;
188
+ /** @deepVisibility secret */
189
+ serviceTokens?: Array<{
190
+ token: string;
191
+ subject: string;
192
+ }>;
188
193
  };
189
194
  /**
190
195
  * The backstage token expiration.