@backstage/plugin-auth-backend-module-oidc-provider 0.4.2-next.1 → 0.4.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 +36 -0
- package/package.json +19 -12
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,41 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-oidc-provider
|
|
2
2
|
|
|
3
|
+
## 0.4.2
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7495edf: Added custom timeout setting for oidc provider
|
|
8
|
+
|
|
9
|
+
Here is an example of how to use a custom timeout with the configuration:
|
|
10
|
+
|
|
11
|
+
```yaml
|
|
12
|
+
auth:
|
|
13
|
+
oidc:
|
|
14
|
+
production:
|
|
15
|
+
clientId: ${AUTH_GOOGLE_CLIENT_ID}
|
|
16
|
+
clientSecret: ${AUTH_GOOGLE_CLIENT_SECRET}
|
|
17
|
+
timeout:
|
|
18
|
+
seconds: 30
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
- Updated dependencies
|
|
22
|
+
- @backstage/plugin-auth-backend@0.24.5
|
|
23
|
+
- @backstage/backend-plugin-api@1.3.0
|
|
24
|
+
- @backstage/plugin-auth-node@0.6.2
|
|
25
|
+
- @backstage/config@1.3.2
|
|
26
|
+
- @backstage/types@1.2.1
|
|
27
|
+
|
|
28
|
+
## 0.4.2-next.2
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- Updated dependencies
|
|
33
|
+
- @backstage/plugin-auth-backend@0.24.5-next.2
|
|
34
|
+
- @backstage/backend-plugin-api@1.2.1
|
|
35
|
+
- @backstage/config@1.3.2
|
|
36
|
+
- @backstage/types@1.2.1
|
|
37
|
+
- @backstage/plugin-auth-node@0.6.1
|
|
38
|
+
|
|
3
39
|
## 0.4.2-next.1
|
|
4
40
|
|
|
5
41
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-oidc-provider",
|
|
3
|
-
"version": "0.4.2
|
|
3
|
+
"version": "0.4.2",
|
|
4
4
|
"description": "The oidc-provider backend module for the auth plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -37,21 +37,21 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/backend-plugin-api": "1.
|
|
41
|
-
"@backstage/config": "1.3.2",
|
|
42
|
-
"@backstage/plugin-auth-backend": "0.24.5
|
|
43
|
-
"@backstage/plugin-auth-node": "0.6.
|
|
44
|
-
"@backstage/types": "1.2.1",
|
|
40
|
+
"@backstage/backend-plugin-api": "^1.3.0",
|
|
41
|
+
"@backstage/config": "^1.3.2",
|
|
42
|
+
"@backstage/plugin-auth-backend": "^0.24.5",
|
|
43
|
+
"@backstage/plugin-auth-node": "^0.6.2",
|
|
44
|
+
"@backstage/types": "^1.2.1",
|
|
45
45
|
"express": "^4.18.2",
|
|
46
46
|
"openid-client": "^5.5.0",
|
|
47
47
|
"passport": "^0.7.0"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@backstage/backend-defaults": "0.9.0
|
|
51
|
-
"@backstage/backend-test-utils": "1.
|
|
52
|
-
"@backstage/cli": "0.32.0
|
|
53
|
-
"@backstage/config": "1.3.2",
|
|
54
|
-
"@backstage/types": "1.2.1",
|
|
50
|
+
"@backstage/backend-defaults": "^0.9.0",
|
|
51
|
+
"@backstage/backend-test-utils": "^1.4.0",
|
|
52
|
+
"@backstage/cli": "^0.32.0",
|
|
53
|
+
"@backstage/config": "^1.3.2",
|
|
54
|
+
"@backstage/types": "^1.2.1",
|
|
55
55
|
"cookie-parser": "^1.4.6",
|
|
56
56
|
"express-promise-router": "^4.1.1",
|
|
57
57
|
"express-session": "^1.17.3",
|
|
@@ -59,5 +59,12 @@
|
|
|
59
59
|
"msw": "^1.3.1",
|
|
60
60
|
"supertest": "^7.0.0"
|
|
61
61
|
},
|
|
62
|
-
"configSchema": "config.d.ts"
|
|
62
|
+
"configSchema": "config.d.ts",
|
|
63
|
+
"typesVersions": {
|
|
64
|
+
"*": {
|
|
65
|
+
"package.json": [
|
|
66
|
+
"package.json"
|
|
67
|
+
]
|
|
68
|
+
}
|
|
69
|
+
}
|
|
63
70
|
}
|