@backstage/plugin-auth-backend 0.0.0-nightly-20220422024928 → 0.0.0-nightly-20220425024022

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,13 +1,18 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
- ## 0.0.0-nightly-20220422024928
3
+ ## 0.0.0-nightly-20220425024022
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 787ae0d541: Add common signIn resolver to more providers.
8
+
9
+ - `providers.microsoft.resolvers.emailLocalPartMatchingUserEntityName()`
10
+ - `providers.okta.resolvers.emailLocalPartMatchingUserEntityName()`
11
+
7
12
  - 9ec4e0613e: Update to `jose` 4.6.0
8
13
  - Updated dependencies
9
- - @backstage/backend-common@0.0.0-nightly-20220422024928
10
- - @backstage/plugin-auth-node@0.0.0-nightly-20220422024928
14
+ - @backstage/backend-common@0.0.0-nightly-20220425024022
15
+ - @backstage/plugin-auth-node@0.0.0-nightly-20220425024022
11
16
 
12
17
  ## 0.13.0
13
18
 
package/dist/index.cjs.js CHANGED
@@ -1481,6 +1481,7 @@ const microsoft = createAuthProviderIntegration({
1481
1481
  });
1482
1482
  },
1483
1483
  resolvers: {
1484
+ emailLocalPartMatchingUserEntityName: () => commonByEmailLocalPartResolver,
1484
1485
  emailMatchingUserEntityAnnotation() {
1485
1486
  return async (info, ctx) => {
1486
1487
  const { profile } = info;
@@ -1917,6 +1918,7 @@ const okta = createAuthProviderIntegration({
1917
1918
  });
1918
1919
  },
1919
1920
  resolvers: {
1921
+ emailLocalPartMatchingUserEntityName: () => commonByEmailLocalPartResolver,
1920
1922
  emailMatchingUserEntityAnnotation() {
1921
1923
  return async (info, ctx) => {
1922
1924
  const { profile } = info;