@backstage/plugin-auth-backend-module-auth0-provider 0.0.0-nightly-20250204022831 → 0.0.0-nightly-20250206023121

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,12 +1,28 @@
1
1
  # @backstage/plugin-auth-backend-module-auth0-provider
2
2
 
3
- ## 0.0.0-nightly-20250204022831
3
+ ## 0.0.0-nightly-20250206023121
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@0.0.0-nightly-20250206023121
13
+ - @backstage/plugin-auth-node@0.0.0-nightly-20250206023121
14
+
15
+ ## 0.2.0-next.1
16
+
17
+ ### Minor Changes
18
+
19
+ - 61f464e: Added `auth.providers.<providerId>.sessionDuration` config for auth providers to allow the lifespan of user sessions to be configured.
4
20
 
5
21
  ### Patch Changes
6
22
 
7
23
  - Updated dependencies
8
- - @backstage/plugin-auth-node@0.0.0-nightly-20250204022831
9
- - @backstage/backend-plugin-api@0.0.0-nightly-20250204022831
24
+ - @backstage/backend-plugin-api@1.2.0-next.1
25
+ - @backstage/plugin-auth-node@0.6.0-next.1
10
26
 
11
27
  ## 0.1.5-next.0
12
28
 
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?: {
@@ -30,6 +32,7 @@ export interface Config {
30
32
  audience?: string;
31
33
  connection?: string;
32
34
  connectionScope?: string;
35
+ sessionDuration?: HumanDuration | string;
33
36
  };
34
37
  };
35
38
  };
package/package.json CHANGED
@@ -1,11 +1,14 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-auth0-provider",
3
- "version": "0.0.0-nightly-20250204022831",
3
+ "version": "0.0.0-nightly-20250206023121",
4
4
  "description": "The auth0-provider backend module for the auth plugin.",
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",
@@ -34,17 +37,18 @@
34
37
  "test": "backstage-cli package test"
35
38
  },
36
39
  "dependencies": {
37
- "@backstage/backend-plugin-api": "0.0.0-nightly-20250204022831",
38
- "@backstage/plugin-auth-node": "0.0.0-nightly-20250204022831",
40
+ "@backstage/backend-plugin-api": "0.0.0-nightly-20250206023121",
41
+ "@backstage/plugin-auth-node": "0.0.0-nightly-20250206023121",
39
42
  "express": "^4.17.1",
40
43
  "passport-auth0": "^1.4.3",
41
44
  "passport-oauth2": "^1.6.1"
42
45
  },
43
46
  "devDependencies": {
44
- "@backstage/backend-defaults": "0.0.0-nightly-20250204022831",
45
- "@backstage/backend-test-utils": "0.0.0-nightly-20250204022831",
46
- "@backstage/cli": "0.0.0-nightly-20250204022831",
47
- "@backstage/plugin-auth-backend": "0.0.0-nightly-20250204022831",
47
+ "@backstage/backend-defaults": "0.0.0-nightly-20250206023121",
48
+ "@backstage/backend-test-utils": "0.0.0-nightly-20250206023121",
49
+ "@backstage/cli": "0.0.0-nightly-20250206023121",
50
+ "@backstage/plugin-auth-backend": "0.0.0-nightly-20250206023121",
51
+ "@backstage/types": "1.2.1",
48
52
  "@types/passport-auth0": "^1.0.5",
49
53
  "@types/passport-oauth2": "^1.4.15",
50
54
  "supertest": "^7.0.0"