@backstage/plugin-auth-backend 0.20.1-next.3 → 0.20.2

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,54 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.20.2
4
+
5
+ ### Patch Changes
6
+
7
+ - b83741e: Fixed an issue where some Okta's resolvers were missing
8
+ - Updated dependencies
9
+ - @backstage/catalog-client@1.5.1
10
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.1
11
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.6
12
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.6
13
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.6
14
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.6
15
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.2
16
+ - @backstage/plugin-auth-node@0.4.3
17
+ - @backstage/plugin-catalog-node@1.6.1
18
+ - @backstage/backend-plugin-api@0.6.9
19
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.3
20
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.1
21
+ - @backstage/backend-common@0.20.1
22
+
23
+ ## 0.20.1
24
+
25
+ ### Patch Changes
26
+
27
+ - 7ac2575: `oauth2-proxy` auth implementation has been moved to `@backstage/plugin-auth-backend-module-oauth2-proxy-provider`
28
+ - 2a5891e: Migrate the atlassian auth provider to be implemented using the new `@backstage/plugin-auth-backend-module-atlassian-provider` module
29
+ - 783797a: fix static token issuer not being able to initialize
30
+ - e1c189b: The Okta provider implementation is moved to the new module
31
+ - a62764b: Updated dependency `passport` to `^0.7.0`.
32
+ - bcbbf8e: Updated dependency `@google-cloud/firestore` to `^7.0.0`.
33
+ - Updated dependencies
34
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0
35
+ - @backstage/backend-common@0.20.0
36
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.0
37
+ - @backstage/plugin-catalog-node@1.6.0
38
+ - @backstage/catalog-client@1.5.0
39
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.1
40
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5
41
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5
42
+ - @backstage/plugin-auth-node@0.4.2
43
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2
44
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.5
45
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.5
46
+ - @backstage/backend-plugin-api@0.6.8
47
+ - @backstage/catalog-model@1.4.3
48
+ - @backstage/config@1.1.1
49
+ - @backstage/errors@1.2.3
50
+ - @backstage/types@1.1.1
51
+
3
52
  ## 0.20.1-next.3
4
53
 
5
54
  ### Patch Changes
package/dist/index.cjs.js CHANGED
@@ -1705,6 +1705,17 @@ const okta = createAuthProviderIntegration({
1705
1705
  });
1706
1706
  },
1707
1707
  resolvers: {
1708
+ /**
1709
+ * Looks up the user by matching their email local part to the entity name.
1710
+ */
1711
+ emailLocalPartMatchingUserEntityName: () => commonByEmailLocalPartResolver,
1712
+ /**
1713
+ * Looks up the user by matching their email to the entity email.
1714
+ */
1715
+ emailMatchingUserEntityProfileEmail: () => commonByEmailResolver,
1716
+ /**
1717
+ * Looks up the user by matching their email to the `okta.com/email` annotation.
1718
+ */
1708
1719
  emailMatchingUserEntityAnnotation() {
1709
1720
  return async (info, ctx) => {
1710
1721
  const { profile } = info;