@backstage/plugin-auth-backend-module-gcp-iap-provider 0.1.0-next.2 → 0.1.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 +56 -0
- package/dist/index.cjs.js +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,61 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-gcp-iap-provider
|
|
2
2
|
|
|
3
|
+
## 0.1.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 8513cd7d00e3: New module for `@backstage/plugin-auth-backend` that adds a GCP IAP auth provider.
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
|
|
12
|
+
|
|
13
|
+
For example, if you are currently importing the plugin using the following pattern:
|
|
14
|
+
|
|
15
|
+
```ts
|
|
16
|
+
import { examplePlugin } from '@backstage/plugin-example-backend';
|
|
17
|
+
|
|
18
|
+
backend.add(examplePlugin);
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
It should be migrated to this:
|
|
22
|
+
|
|
23
|
+
```ts
|
|
24
|
+
backend.add(import('@backstage/plugin-example-backend'));
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
- Updated dependencies
|
|
28
|
+
- @backstage/plugin-auth-node@0.3.0
|
|
29
|
+
- @backstage/errors@1.2.2
|
|
30
|
+
- @backstage/types@1.1.1
|
|
31
|
+
- @backstage/backend-plugin-api@0.6.3
|
|
32
|
+
|
|
33
|
+
## 0.1.0-next.3
|
|
34
|
+
|
|
35
|
+
### Patch Changes
|
|
36
|
+
|
|
37
|
+
- 71114ac50e02: The export for the new backend system has been moved to be the `default` export.
|
|
38
|
+
|
|
39
|
+
For example, if you are currently importing the plugin using the following pattern:
|
|
40
|
+
|
|
41
|
+
```ts
|
|
42
|
+
import { examplePlugin } from '@backstage/plugin-example-backend';
|
|
43
|
+
|
|
44
|
+
backend.add(examplePlugin);
|
|
45
|
+
```
|
|
46
|
+
|
|
47
|
+
It should be migrated to this:
|
|
48
|
+
|
|
49
|
+
```ts
|
|
50
|
+
backend.add(import('@backstage/plugin-example-backend'));
|
|
51
|
+
```
|
|
52
|
+
|
|
53
|
+
- Updated dependencies
|
|
54
|
+
- @backstage/errors@1.2.2-next.0
|
|
55
|
+
- @backstage/types@1.1.1-next.0
|
|
56
|
+
- @backstage/backend-plugin-api@0.6.3-next.3
|
|
57
|
+
- @backstage/plugin-auth-node@0.3.0-next.3
|
|
58
|
+
|
|
3
59
|
## 0.1.0-next.2
|
|
4
60
|
|
|
5
61
|
### Patch Changes
|
package/dist/index.cjs.js
CHANGED
|
@@ -107,6 +107,6 @@ const authModuleGcpIapProvider = backendPluginApi.createBackendModule({
|
|
|
107
107
|
}
|
|
108
108
|
});
|
|
109
109
|
|
|
110
|
-
exports
|
|
110
|
+
exports["default"] = authModuleGcpIapProvider;
|
|
111
111
|
exports.gcpIapAuthenticator = gcpIapAuthenticator;
|
|
112
112
|
//# sourceMappingURL=index.cjs.js.map
|
package/dist/index.d.ts
CHANGED
|
@@ -57,4 +57,4 @@ declare namespace gcpIapSignInResolvers {
|
|
|
57
57
|
const emailMatchingUserEntityAnnotation: _backstage_plugin_auth_node.SignInResolverFactory<GcpIapResult, unknown>;
|
|
58
58
|
}
|
|
59
59
|
|
|
60
|
-
export { GcpIapResult, GcpIapTokenInfo, authModuleGcpIapProvider, gcpIapAuthenticator, gcpIapSignInResolvers };
|
|
60
|
+
export { GcpIapResult, GcpIapTokenInfo, authModuleGcpIapProvider as default, gcpIapAuthenticator, gcpIapSignInResolvers };
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-gcp-iap-provider",
|
|
3
3
|
"description": "A GCP IAP auth provider module for the Backstage auth backend",
|
|
4
|
-
"version": "0.1.0
|
|
4
|
+
"version": "0.1.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,15 +32,15 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/backend-plugin-api": "^0.6.3
|
|
36
|
-
"@backstage/errors": "^1.2.
|
|
37
|
-
"@backstage/plugin-auth-node": "^0.3.0
|
|
38
|
-
"@backstage/types": "^1.1.
|
|
35
|
+
"@backstage/backend-plugin-api": "^0.6.3",
|
|
36
|
+
"@backstage/errors": "^1.2.2",
|
|
37
|
+
"@backstage/plugin-auth-node": "^0.3.0",
|
|
38
|
+
"@backstage/types": "^1.1.1",
|
|
39
39
|
"google-auth-library": "^8.0.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@backstage/backend-test-utils": "^0.2.3
|
|
43
|
-
"@backstage/cli": "^0.22.13
|
|
42
|
+
"@backstage/backend-test-utils": "^0.2.3",
|
|
43
|
+
"@backstage/cli": "^0.22.13",
|
|
44
44
|
"express": "^4.18.2",
|
|
45
45
|
"msw": "^1.0.0",
|
|
46
46
|
"supertest": "^6.1.3"
|