@backstage/plugin-auth-backend-module-gcp-iap-provider 0.3.4 → 0.4.0-next.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 CHANGED
@@ -1,5 +1,29 @@
1
1
  # @backstage/plugin-auth-backend-module-gcp-iap-provider
2
2
 
3
+ ## 0.4.0-next.1
4
+
5
+ ### Minor Changes
6
+
7
+ - 61f464e: Added `auth.providers.<providerId>.sessionDuration` config for auth providers to allow the lifespan of user sessions to be configured.
8
+
9
+ ### Patch Changes
10
+
11
+ - Updated dependencies
12
+ - @backstage/backend-plugin-api@1.2.0-next.1
13
+ - @backstage/plugin-auth-node@0.6.0-next.1
14
+ - @backstage/errors@1.2.7
15
+ - @backstage/types@1.2.1
16
+
17
+ ## 0.3.5-next.0
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/backend-plugin-api@1.2.0-next.0
23
+ - @backstage/errors@1.2.7
24
+ - @backstage/types@1.2.1
25
+ - @backstage/plugin-auth-node@0.5.7-next.0
26
+
3
27
  ## 0.3.4
4
28
 
5
29
  ### Patch Changes
package/config.d.ts CHANGED
@@ -14,6 +14,8 @@
14
14
  * limitations under the License.
15
15
  */
16
16
 
17
+ import { HumanDuration } from '@backstage/types';
18
+
17
19
  export interface Config {
18
20
  auth?: {
19
21
  providers?: {
@@ -43,6 +45,7 @@ export interface Config {
43
45
  | { resolver: 'emailMatchingUserEntityProfileEmail' }
44
46
  >;
45
47
  };
48
+ sessionDuration?: HumanDuration | string;
46
49
  };
47
50
  };
48
51
  };
package/package.json CHANGED
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-gcp-iap-provider",
3
- "version": "0.3.4",
3
+ "version": "0.4.0-next.1",
4
4
  "description": "A GCP IAP auth provider module for the Backstage auth backend",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
7
7
  "pluginId": "auth",
8
- "pluginPackage": "@backstage/plugin-auth-backend"
8
+ "pluginPackage": "@backstage/plugin-auth-backend",
9
+ "features": {
10
+ ".": "@backstage/BackendFeature"
11
+ }
9
12
  },
10
13
  "publishConfig": {
11
14
  "access": "public",
@@ -38,15 +41,15 @@
38
41
  "test": "backstage-cli package test"
39
42
  },
40
43
  "dependencies": {
41
- "@backstage/backend-plugin-api": "^1.1.1",
42
- "@backstage/errors": "^1.2.7",
43
- "@backstage/plugin-auth-node": "^0.5.6",
44
- "@backstage/types": "^1.2.1",
44
+ "@backstage/backend-plugin-api": "1.2.0-next.1",
45
+ "@backstage/errors": "1.2.7",
46
+ "@backstage/plugin-auth-node": "0.6.0-next.1",
47
+ "@backstage/types": "1.2.1",
45
48
  "google-auth-library": "^9.0.0"
46
49
  },
47
50
  "devDependencies": {
48
- "@backstage/backend-test-utils": "^1.2.1",
49
- "@backstage/cli": "^0.29.5",
51
+ "@backstage/backend-test-utils": "1.3.0-next.2",
52
+ "@backstage/cli": "0.30.0-next.2",
50
53
  "express": "^4.18.2"
51
54
  },
52
55
  "configSchema": "config.d.ts",