@backstage/plugin-auth-backend-module-gcp-iap-provider 0.2.14-next.2 → 0.2.14
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 +12 -0
- package/dist/index.d.ts +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-gcp-iap-provider
|
|
2
2
|
|
|
3
|
+
## 0.2.14
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 78a0b08: Internal refactor to handle `BackendFeature` contract change.
|
|
8
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-plugin-api@0.6.19
|
|
11
|
+
- @backstage/plugin-auth-node@0.4.14
|
|
12
|
+
- @backstage/errors@1.2.4
|
|
13
|
+
- @backstage/types@1.1.1
|
|
14
|
+
|
|
3
15
|
## 0.2.14-next.2
|
|
4
16
|
|
|
5
17
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -45,7 +45,7 @@ declare const gcpIapAuthenticator: _backstage_plugin_auth_node.ProxyAuthenticato
|
|
|
45
45
|
}>;
|
|
46
46
|
|
|
47
47
|
/** @public */
|
|
48
|
-
declare const authModuleGcpIapProvider:
|
|
48
|
+
declare const authModuleGcpIapProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
|
|
49
49
|
|
|
50
50
|
/**
|
|
51
51
|
* Available sign-in resolvers for the Google auth provider.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-gcp-iap-provider",
|
|
3
|
-
"version": "0.2.14
|
|
3
|
+
"version": "0.2.14",
|
|
4
4
|
"description": "A GCP IAP auth provider module for the Backstage auth backend",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -38,15 +38,15 @@
|
|
|
38
38
|
"test": "backstage-cli package test"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@backstage/backend-plugin-api": "^0.6.19
|
|
41
|
+
"@backstage/backend-plugin-api": "^0.6.19",
|
|
42
42
|
"@backstage/errors": "^1.2.4",
|
|
43
|
-
"@backstage/plugin-auth-node": "^0.4.14
|
|
43
|
+
"@backstage/plugin-auth-node": "^0.4.14",
|
|
44
44
|
"@backstage/types": "^1.1.1",
|
|
45
45
|
"google-auth-library": "^9.0.0"
|
|
46
46
|
},
|
|
47
47
|
"devDependencies": {
|
|
48
|
-
"@backstage/backend-test-utils": "^0.4.0
|
|
49
|
-
"@backstage/cli": "^0.26.7
|
|
48
|
+
"@backstage/backend-test-utils": "^0.4.0",
|
|
49
|
+
"@backstage/cli": "^0.26.7",
|
|
50
50
|
"express": "^4.18.2"
|
|
51
51
|
},
|
|
52
52
|
"configSchema": "config.d.ts"
|