@backstage/plugin-auth-backend 0.15.0-next.3 → 0.15.1-next.1

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,51 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.15.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 2d7d6028e1: Updated dependency `@google-cloud/firestore` to `^6.0.0`.
8
+
9
+ ## 0.15.1-next.0
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ - @backstage/backend-common@0.15.0-next.0
15
+ - @backstage/plugin-auth-node@0.2.4-next.0
16
+
17
+ ## 0.15.0
18
+
19
+ ### Minor Changes
20
+
21
+ - 9d4040777e: **BREAKING**: Removed all directly exported auth provider factories, option types, and sign-in resolvers. For example: `AwsAlbProviderOptions`, `bitbucketUserIdSignInResolver`, `createGithubProvider`. These are all still accessible via the `providers` export. For example, use `providers.github.create()` rather than `createGithubProvider()`, and `providers.bitbucket.resolvers.userIdMatchingUserEntityAnnotation()` rather than `bitbucketUserIdSignInResolver`.
22
+
23
+ **BREAKING**: Removed the exported `AuthProviderFactoryOptions` type as well as the deprecated option fields of the `AuthProviderFactory` callback. This includes the `tokenManager`, `tokenIssuer`, `discovery`, and `catalogApi` fields. Existing usage of these should be replaced with the new utilities in the `resolverContext` field. The deprecated `TokenIssuer` type is now also removed, since it is no longer used.
24
+
25
+ **BREAKING**: Removed `getEntityClaims`, use `getDefaultOwnershipEntityRefs` instead.
26
+
27
+ **DEPRECATION**: Deprecated `AtlassianAuthProvider` as it was unintentionally exported.
28
+
29
+ - fe8e025af5: Allowed post method on /refresh path
30
+
31
+ ### Patch Changes
32
+
33
+ - 3cedfd8365: add Cloudflare Access auth provider to auth-backend
34
+ - f2cf79d62e: Added an option for the auth backend router to select the algorithm for the JWT token signing keys
35
+ - 8e03db907a: Auth provider now also export createAuthProviderIntegration
36
+ - a70869e775: Updated dependency `msw` to `^0.43.0`.
37
+ - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`.
38
+ - 8006d0f9bf: Updated dependency `msw` to `^0.44.0`.
39
+ - 679b32172e: Updated dependency `knex` to `^2.0.0`.
40
+ - 859346bfbb: Updated dependency `google-auth-library` to `^8.0.0`.
41
+ - 3a014730dc: Add new config option for okta auth server and IDP
42
+ - Updated dependencies
43
+ - @backstage/backend-common@0.14.1
44
+ - @backstage/catalog-model@1.1.0
45
+ - @backstage/catalog-client@1.0.4
46
+ - @backstage/plugin-auth-node@0.2.3
47
+ - @backstage/errors@1.1.0
48
+
3
49
  ## 0.15.0-next.3
4
50
 
5
51
  ### Minor Changes
package/config.d.ts CHANGED
@@ -116,6 +116,9 @@ export interface Config {
116
116
  issuer?: string;
117
117
  region: string;
118
118
  };
119
+ cfaccess?: {
120
+ teamName: string;
121
+ };
119
122
  };
120
123
  };
121
124
  }