@backstage/plugin-auth-backend 0.25.2-next.1 → 0.25.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.
- package/CHANGELOG.md +26 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
+
## 0.25.3-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-catalog-node@1.18.0-next.0
|
|
9
|
+
- @backstage/plugin-auth-node@0.6.6-next.0
|
|
10
|
+
- @backstage/backend-plugin-api@1.4.2-next.0
|
|
11
|
+
- @backstage/catalog-model@1.7.5
|
|
12
|
+
- @backstage/config@1.3.3
|
|
13
|
+
- @backstage/errors@1.2.7
|
|
14
|
+
- @backstage/types@1.2.1
|
|
15
|
+
|
|
16
|
+
## 0.25.2
|
|
17
|
+
|
|
18
|
+
### Patch Changes
|
|
19
|
+
|
|
20
|
+
- e88cb70: Small internal refactor to move out the `userInfo` database from the `tokenIssuer`. Also removes `exp` from being stored in `UserInfo` and it's now replaced with `created_at` and `updated_at` in the database instead.
|
|
21
|
+
- 207778c: Internal refactor of OIDC endpoints and `UserInfoDatabase`
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/config@1.3.3
|
|
24
|
+
- @backstage/catalog-model@1.7.5
|
|
25
|
+
- @backstage/backend-plugin-api@1.4.1
|
|
26
|
+
- @backstage/plugin-auth-node@0.6.5
|
|
27
|
+
- @backstage/plugin-catalog-node@1.17.2
|
|
28
|
+
|
|
3
29
|
## 0.25.2-next.1
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend",
|
|
3
|
-
"version": "0.25.
|
|
3
|
+
"version": "0.25.3-next.0",
|
|
4
4
|
"description": "A Backstage backend plugin that handles authentication",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -46,12 +46,12 @@
|
|
|
46
46
|
"test": "backstage-cli package test"
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
|
-
"@backstage/backend-plugin-api": "1.4.
|
|
50
|
-
"@backstage/catalog-model": "1.7.5
|
|
51
|
-
"@backstage/config": "1.3.3
|
|
49
|
+
"@backstage/backend-plugin-api": "1.4.2-next.0",
|
|
50
|
+
"@backstage/catalog-model": "1.7.5",
|
|
51
|
+
"@backstage/config": "1.3.3",
|
|
52
52
|
"@backstage/errors": "1.2.7",
|
|
53
|
-
"@backstage/plugin-auth-node": "0.6.
|
|
54
|
-
"@backstage/plugin-catalog-node": "1.
|
|
53
|
+
"@backstage/plugin-auth-node": "0.6.6-next.0",
|
|
54
|
+
"@backstage/plugin-catalog-node": "1.18.0-next.0",
|
|
55
55
|
"@backstage/types": "1.2.1",
|
|
56
56
|
"@google-cloud/firestore": "^7.0.0",
|
|
57
57
|
"connect-session-knex": "^4.0.0",
|
|
@@ -68,11 +68,11 @@
|
|
|
68
68
|
"uuid": "^11.0.0"
|
|
69
69
|
},
|
|
70
70
|
"devDependencies": {
|
|
71
|
-
"@backstage/backend-defaults": "0.11.
|
|
72
|
-
"@backstage/backend-test-utils": "1.7.
|
|
73
|
-
"@backstage/cli": "0.33.
|
|
74
|
-
"@backstage/plugin-auth-backend-module-google-provider": "0.3.
|
|
75
|
-
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.
|
|
71
|
+
"@backstage/backend-defaults": "0.11.2-next.0",
|
|
72
|
+
"@backstage/backend-test-utils": "1.7.1-next.0",
|
|
73
|
+
"@backstage/cli": "0.33.2-next.0",
|
|
74
|
+
"@backstage/plugin-auth-backend-module-google-provider": "0.3.6-next.0",
|
|
75
|
+
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.11-next.0",
|
|
76
76
|
"@types/cookie-parser": "^1.4.2",
|
|
77
77
|
"@types/express": "^4.17.6",
|
|
78
78
|
"@types/express-session": "^1.17.2",
|