@backstage/plugin-auth-backend-module-vmware-cloud-provider 0.0.0-nightly-20240617021823 → 0.0.0-nightly-20240618021721
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 +4 -3
- package/dist/index.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-vmware-cloud-provider
|
|
2
2
|
|
|
3
|
-
## 0.0.0-nightly-
|
|
3
|
+
## 0.0.0-nightly-20240618021721
|
|
4
4
|
|
|
5
5
|
### Minor Changes
|
|
6
6
|
|
|
@@ -8,10 +8,11 @@
|
|
|
8
8
|
|
|
9
9
|
### Patch Changes
|
|
10
10
|
|
|
11
|
+
- 78a0b08: Internal refactor to handle `BackendFeature` contract change.
|
|
11
12
|
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
12
13
|
- Updated dependencies
|
|
13
|
-
- @backstage/backend-plugin-api@0.0.0-nightly-
|
|
14
|
-
- @backstage/plugin-auth-node@0.0.0-nightly-
|
|
14
|
+
- @backstage/backend-plugin-api@0.0.0-nightly-20240618021721
|
|
15
|
+
- @backstage/plugin-auth-node@0.0.0-nightly-20240618021721
|
|
15
16
|
- @backstage/catalog-model@1.5.0
|
|
16
17
|
|
|
17
18
|
## 0.2.0-next.2
|
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.0.0-nightly-
|
|
3
|
+
"version": "0.0.0-nightly-20240618021721",
|
|
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.0.0-nightly-
|
|
36
|
+
"@backstage/backend-plugin-api": "^0.0.0-nightly-20240618021721",
|
|
37
37
|
"@backstage/catalog-model": "^1.5.0",
|
|
38
|
-
"@backstage/plugin-auth-node": "^0.0.0-nightly-
|
|
38
|
+
"@backstage/plugin-auth-node": "^0.0.0-nightly-20240618021721",
|
|
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.0.0-nightly-
|
|
45
|
-
"@backstage/backend-test-utils": "^0.0.0-nightly-
|
|
46
|
-
"@backstage/cli": "^0.0.0-nightly-
|
|
44
|
+
"@backstage/backend-defaults": "^0.0.0-nightly-20240618021721",
|
|
45
|
+
"@backstage/backend-test-utils": "^0.0.0-nightly-20240618021721",
|
|
46
|
+
"@backstage/cli": "^0.0.0-nightly-20240618021721",
|
|
47
47
|
"@backstage/config": "^1.2.0",
|
|
48
48
|
"@backstage/errors": "^1.2.4",
|
|
49
|
-
"@backstage/plugin-auth-backend": "^0.0.0-nightly-
|
|
49
|
+
"@backstage/plugin-auth-backend": "^0.0.0-nightly-20240618021721",
|
|
50
50
|
"msw": "^2.0.8",
|
|
51
51
|
"supertest": "^6.3.3"
|
|
52
52
|
}
|