@backstage/plugin-auth-backend 0.15.0-next.2 → 0.15.1-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,5 +1,62 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.15.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.15.0-next.0
9
+ - @backstage/plugin-auth-node@0.2.4-next.0
10
+
11
+ ## 0.15.0
12
+
13
+ ### Minor Changes
14
+
15
+ - 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`.
16
+
17
+ **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.
18
+
19
+ **BREAKING**: Removed `getEntityClaims`, use `getDefaultOwnershipEntityRefs` instead.
20
+
21
+ **DEPRECATION**: Deprecated `AtlassianAuthProvider` as it was unintentionally exported.
22
+
23
+ - fe8e025af5: Allowed post method on /refresh path
24
+
25
+ ### Patch Changes
26
+
27
+ - 3cedfd8365: add Cloudflare Access auth provider to auth-backend
28
+ - f2cf79d62e: Added an option for the auth backend router to select the algorithm for the JWT token signing keys
29
+ - 8e03db907a: Auth provider now also export createAuthProviderIntegration
30
+ - a70869e775: Updated dependency `msw` to `^0.43.0`.
31
+ - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`.
32
+ - 8006d0f9bf: Updated dependency `msw` to `^0.44.0`.
33
+ - 679b32172e: Updated dependency `knex` to `^2.0.0`.
34
+ - 859346bfbb: Updated dependency `google-auth-library` to `^8.0.0`.
35
+ - 3a014730dc: Add new config option for okta auth server and IDP
36
+ - Updated dependencies
37
+ - @backstage/backend-common@0.14.1
38
+ - @backstage/catalog-model@1.1.0
39
+ - @backstage/catalog-client@1.0.4
40
+ - @backstage/plugin-auth-node@0.2.3
41
+ - @backstage/errors@1.1.0
42
+
43
+ ## 0.15.0-next.3
44
+
45
+ ### Minor Changes
46
+
47
+ - fe8e025af5: Allowed post method on /refresh path
48
+
49
+ ### Patch Changes
50
+
51
+ - a70869e775: Updated dependency `msw` to `^0.43.0`.
52
+ - 4e9a90e307: Updated dependency `luxon` to `^3.0.0`.
53
+ - 3a014730dc: Add new config option for okta auth server and IDP
54
+ - Updated dependencies
55
+ - @backstage/backend-common@0.14.1-next.3
56
+ - @backstage/catalog-client@1.0.4-next.2
57
+ - @backstage/plugin-auth-node@0.2.3-next.2
58
+ - @backstage/catalog-model@1.1.0-next.3
59
+
3
60
  ## 0.15.0-next.2
4
61
 
5
62
  ### Patch 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
  }