@backstage/plugin-auth-backend-module-vmware-cloud-provider 0.4.0-next.1 → 0.4.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 +14 -0
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-vmware-cloud-provider
|
|
2
2
|
|
|
3
|
+
## 0.4.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- d0edfec: **BREAKING**: The `profileEmailMatchingUserEntityEmail` sign-in resolver has been removed as it was using an insecure fallback for resolving user identities. See https://backstage.io/docs/auth/identity-resolver#sign-in-without-users-in-the-catalog for how to create a custom sign-in resolver if needed as a replacement.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/plugin-auth-node@0.5.3
|
|
14
|
+
- @backstage/backend-plugin-api@1.0.1
|
|
15
|
+
- @backstage/catalog-model@1.7.0
|
|
16
|
+
|
|
3
17
|
## 0.4.0-next.1
|
|
4
18
|
|
|
5
19
|
### Minor Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-vmware-cloud-provider",
|
|
3
|
-
"version": "0.4.0
|
|
3
|
+
"version": "0.4.0",
|
|
4
4
|
"description": "The vmware-cloud-provider backend module for the auth plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -33,20 +33,20 @@
|
|
|
33
33
|
"test": "backstage-cli package test"
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
|
-
"@backstage/backend-plugin-api": "1.0.1
|
|
37
|
-
"@backstage/catalog-model": "1.7.0",
|
|
38
|
-
"@backstage/plugin-auth-node": "0.5.3
|
|
36
|
+
"@backstage/backend-plugin-api": "^1.0.1",
|
|
37
|
+
"@backstage/catalog-model": "^1.7.0",
|
|
38
|
+
"@backstage/plugin-auth-node": "^0.5.3",
|
|
39
39
|
"@types/passport-oauth2": "^1.4.15",
|
|
40
40
|
"jose": "^5.0.0",
|
|
41
41
|
"passport-oauth2": "^1.6.1"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@backstage/backend-defaults": "0.5.1
|
|
45
|
-
"@backstage/backend-test-utils": "1.0.1
|
|
46
|
-
"@backstage/cli": "0.28.0
|
|
47
|
-
"@backstage/config": "1.2.0",
|
|
48
|
-
"@backstage/errors": "1.2.4",
|
|
49
|
-
"@backstage/plugin-auth-backend": "0.23.1
|
|
44
|
+
"@backstage/backend-defaults": "^0.5.1",
|
|
45
|
+
"@backstage/backend-test-utils": "^1.0.1",
|
|
46
|
+
"@backstage/cli": "^0.28.0",
|
|
47
|
+
"@backstage/config": "^1.2.0",
|
|
48
|
+
"@backstage/errors": "^1.2.4",
|
|
49
|
+
"@backstage/plugin-auth-backend": "^0.23.1",
|
|
50
50
|
"msw": "^2.0.8",
|
|
51
51
|
"supertest": "^7.0.0"
|
|
52
52
|
}
|