@backstage/plugin-auth-backend-module-oidc-provider 0.4.2-next.2 → 0.4.3-next.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +36 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,41 @@
1
1
  # @backstage/plugin-auth-backend-module-oidc-provider
2
2
 
3
+ ## 0.4.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-auth-backend@0.25.0-next.0
9
+ - @backstage/backend-plugin-api@1.3.1-next.0
10
+ - @backstage/plugin-auth-node@0.6.3-next.0
11
+ - @backstage/config@1.3.2
12
+ - @backstage/types@1.2.1
13
+
14
+ ## 0.4.2
15
+
16
+ ### Patch Changes
17
+
18
+ - 7495edf: Added custom timeout setting for oidc provider
19
+
20
+ Here is an example of how to use a custom timeout with the configuration:
21
+
22
+ ```yaml
23
+ auth:
24
+ oidc:
25
+ production:
26
+ clientId: ${AUTH_GOOGLE_CLIENT_ID}
27
+ clientSecret: ${AUTH_GOOGLE_CLIENT_SECRET}
28
+ timeout:
29
+ seconds: 30
30
+ ```
31
+
32
+ - Updated dependencies
33
+ - @backstage/plugin-auth-backend@0.24.5
34
+ - @backstage/backend-plugin-api@1.3.0
35
+ - @backstage/plugin-auth-node@0.6.2
36
+ - @backstage/config@1.3.2
37
+ - @backstage/types@1.2.1
38
+
3
39
  ## 0.4.2-next.2
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-next.2",
3
+ "version": "0.4.3-next.0",
4
4
  "description": "The oidc-provider backend module for the auth plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -37,19 +37,19 @@
37
37
  "test": "backstage-cli package test"
38
38
  },
39
39
  "dependencies": {
40
- "@backstage/backend-plugin-api": "1.2.1",
40
+ "@backstage/backend-plugin-api": "1.3.1-next.0",
41
41
  "@backstage/config": "1.3.2",
42
- "@backstage/plugin-auth-backend": "0.24.5-next.2",
43
- "@backstage/plugin-auth-node": "0.6.1",
42
+ "@backstage/plugin-auth-backend": "0.25.0-next.0",
43
+ "@backstage/plugin-auth-node": "0.6.3-next.0",
44
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-next.2",
51
- "@backstage/backend-test-utils": "1.3.2-next.2",
52
- "@backstage/cli": "0.32.0-next.2",
50
+ "@backstage/backend-defaults": "0.9.1-next.0",
51
+ "@backstage/backend-test-utils": "1.5.0-next.0",
52
+ "@backstage/cli": "0.32.1-next.0",
53
53
  "@backstage/config": "1.3.2",
54
54
  "@backstage/types": "1.2.1",
55
55
  "cookie-parser": "^1.4.6",