@backstage/plugin-auth-backend-module-gcp-iap-provider 0.3.5-next.0 → 0.4.0-next.2

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.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@1.2.0-next.2
9
+ - @backstage/plugin-auth-node@0.6.0-next.2
10
+ - @backstage/errors@1.2.7
11
+ - @backstage/types@1.2.1
12
+
13
+ ## 0.4.0-next.1
14
+
15
+ ### Minor Changes
16
+
17
+ - 61f464e: Added `auth.providers.<providerId>.sessionDuration` config for auth providers to allow the lifespan of user sessions to be configured.
18
+
19
+ ### Patch Changes
20
+
21
+ - Updated dependencies
22
+ - @backstage/backend-plugin-api@1.2.0-next.1
23
+ - @backstage/plugin-auth-node@0.6.0-next.1
24
+ - @backstage/errors@1.2.7
25
+ - @backstage/types@1.2.1
26
+
3
27
  ## 0.3.5-next.0
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.5-next.0",
3
+ "version": "0.4.0-next.2",
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.2.0-next.0",
44
+ "@backstage/backend-plugin-api": "1.2.0-next.2",
42
45
  "@backstage/errors": "1.2.7",
43
- "@backstage/plugin-auth-node": "0.5.7-next.0",
46
+ "@backstage/plugin-auth-node": "0.6.0-next.2",
44
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.3.0-next.0",
49
- "@backstage/cli": "0.30.0-next.0",
51
+ "@backstage/backend-test-utils": "1.3.0-next.3",
52
+ "@backstage/cli": "0.30.0-next.3",
50
53
  "express": "^4.18.2"
51
54
  },
52
55
  "configSchema": "config.d.ts",