@backstage/plugin-auth-backend 0.20.1 → 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 +20 -0
- package/dist/index.cjs.js +11 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,25 @@
|
|
|
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
|
+
|
|
3
23
|
## 0.20.1
|
|
4
24
|
|
|
5
25
|
### 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;
|