@backstage/plugin-auth-backend-module-gcp-iap-provider 0.2.14-next.1 → 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 +23 -0
- package/dist/index.d.ts +1 -1
- package/package.json +22 -20
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,28 @@
|
|
|
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
|
+
|
|
15
|
+
## 0.2.14-next.2
|
|
16
|
+
|
|
17
|
+
### Patch Changes
|
|
18
|
+
|
|
19
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/backend-plugin-api@0.6.19-next.3
|
|
22
|
+
- @backstage/plugin-auth-node@0.4.14-next.3
|
|
23
|
+
- @backstage/errors@1.2.4
|
|
24
|
+
- @backstage/types@1.1.1
|
|
25
|
+
|
|
3
26
|
## 0.2.14-next.1
|
|
4
27
|
|
|
5
28
|
### 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,51 +1,53 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-gcp-iap-provider",
|
|
3
|
+
"version": "0.2.14",
|
|
3
4
|
"description": "A GCP IAP auth provider module for the Backstage auth backend",
|
|
4
|
-
"
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
5
|
+
"backstage": {
|
|
6
|
+
"role": "backend-plugin-module",
|
|
7
|
+
"pluginId": "auth",
|
|
8
|
+
"pluginPackage": "@backstage/plugin-auth-backend"
|
|
9
|
+
},
|
|
8
10
|
"publishConfig": {
|
|
9
11
|
"access": "public",
|
|
10
12
|
"main": "dist/index.cjs.js",
|
|
11
13
|
"types": "dist/index.d.ts"
|
|
12
14
|
},
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
|
|
15
|
+
"keywords": [
|
|
16
|
+
"backstage"
|
|
17
|
+
],
|
|
16
18
|
"homepage": "https://backstage.io",
|
|
17
19
|
"repository": {
|
|
18
20
|
"type": "git",
|
|
19
21
|
"url": "https://github.com/backstage/backstage",
|
|
20
22
|
"directory": "plugins/auth-backend-module-gcp-iap-provider"
|
|
21
23
|
},
|
|
22
|
-
"
|
|
23
|
-
|
|
24
|
+
"license": "Apache-2.0",
|
|
25
|
+
"main": "dist/index.cjs.js",
|
|
26
|
+
"types": "dist/index.d.ts",
|
|
27
|
+
"files": [
|
|
28
|
+
"dist",
|
|
29
|
+
"config.d.ts"
|
|
24
30
|
],
|
|
25
31
|
"scripts": {
|
|
26
|
-
"start": "backstage-cli package start",
|
|
27
32
|
"build": "backstage-cli package build",
|
|
33
|
+
"clean": "backstage-cli package clean",
|
|
28
34
|
"lint": "backstage-cli package lint",
|
|
29
|
-
"test": "backstage-cli package test",
|
|
30
35
|
"prepack": "backstage-cli package prepack",
|
|
31
36
|
"postpack": "backstage-cli package postpack",
|
|
32
|
-
"
|
|
37
|
+
"start": "backstage-cli package start",
|
|
38
|
+
"test": "backstage-cli package test"
|
|
33
39
|
},
|
|
34
40
|
"dependencies": {
|
|
35
|
-
"@backstage/backend-plugin-api": "^0.6.19
|
|
41
|
+
"@backstage/backend-plugin-api": "^0.6.19",
|
|
36
42
|
"@backstage/errors": "^1.2.4",
|
|
37
|
-
"@backstage/plugin-auth-node": "^0.4.14
|
|
43
|
+
"@backstage/plugin-auth-node": "^0.4.14",
|
|
38
44
|
"@backstage/types": "^1.1.1",
|
|
39
45
|
"google-auth-library": "^9.0.0"
|
|
40
46
|
},
|
|
41
47
|
"devDependencies": {
|
|
42
|
-
"@backstage/backend-test-utils": "^0.4.0
|
|
43
|
-
"@backstage/cli": "^0.26.7
|
|
48
|
+
"@backstage/backend-test-utils": "^0.4.0",
|
|
49
|
+
"@backstage/cli": "^0.26.7",
|
|
44
50
|
"express": "^4.18.2"
|
|
45
51
|
},
|
|
46
|
-
"files": [
|
|
47
|
-
"dist",
|
|
48
|
-
"config.d.ts"
|
|
49
|
-
],
|
|
50
52
|
"configSchema": "config.d.ts"
|
|
51
53
|
}
|