@backstage/plugin-auth-backend-module-vmware-cloud-provider 0.2.0-next.2 → 0.2.1
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 +24 -0
- package/dist/index.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-vmware-cloud-provider
|
|
2
2
|
|
|
3
|
+
## 0.2.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-auth-node@0.4.15
|
|
9
|
+
- @backstage/backend-plugin-api@0.6.20
|
|
10
|
+
- @backstage/catalog-model@1.5.0
|
|
11
|
+
|
|
12
|
+
## 0.2.0
|
|
13
|
+
|
|
14
|
+
### Minor Changes
|
|
15
|
+
|
|
16
|
+
- 8efc6cf: **BREAKING**: The `scope` config option have been removed and replaced by the standard `additionalScopes` config. In addition, `openid`, and `offline_access` scopes have been set to required and will always be present.
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- 78a0b08: Internal refactor to handle `BackendFeature` contract change.
|
|
21
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/backend-plugin-api@0.6.19
|
|
24
|
+
- @backstage/plugin-auth-node@0.4.14
|
|
25
|
+
- @backstage/catalog-model@1.5.0
|
|
26
|
+
|
|
3
27
|
## 0.2.0-next.2
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -25,7 +25,7 @@ declare const vmwareCloudAuthenticator: _backstage_plugin_auth_node.OAuthAuthent
|
|
|
25
25
|
*
|
|
26
26
|
* @public
|
|
27
27
|
*/
|
|
28
|
-
declare const authModuleVmwareCloudProvider:
|
|
28
|
+
declare const authModuleVmwareCloudProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
|
|
29
29
|
|
|
30
30
|
/**
|
|
31
31
|
* Available sign-in resolvers for the VMware Cloud auth provider.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-vmware-cloud-provider",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.1",
|
|
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": "^0.6.
|
|
36
|
+
"@backstage/backend-plugin-api": "^0.6.20",
|
|
37
37
|
"@backstage/catalog-model": "^1.5.0",
|
|
38
|
-
"@backstage/plugin-auth-node": "^0.4.
|
|
38
|
+
"@backstage/plugin-auth-node": "^0.4.15",
|
|
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.3.
|
|
45
|
-
"@backstage/backend-test-utils": "^0.4.
|
|
46
|
-
"@backstage/cli": "^0.26.
|
|
44
|
+
"@backstage/backend-defaults": "^0.3.1",
|
|
45
|
+
"@backstage/backend-test-utils": "^0.4.1",
|
|
46
|
+
"@backstage/cli": "^0.26.8",
|
|
47
47
|
"@backstage/config": "^1.2.0",
|
|
48
48
|
"@backstage/errors": "^1.2.4",
|
|
49
|
-
"@backstage/plugin-auth-backend": "^0.22.
|
|
49
|
+
"@backstage/plugin-auth-backend": "^0.22.7",
|
|
50
50
|
"msw": "^2.0.8",
|
|
51
51
|
"supertest": "^6.3.3"
|
|
52
52
|
}
|