@backstage/plugin-auth-backend-module-aws-alb-provider 0.3.0-next.2 → 0.3.1-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 +25 -0
- package/package.json +15 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,30 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-aws-alb-provider
|
|
2
2
|
|
|
3
|
+
## 0.3.1-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-plugin-api@1.0.3-next.0
|
|
9
|
+
- @backstage/plugin-auth-node@0.5.5-next.0
|
|
10
|
+
- @backstage/errors@1.2.5
|
|
11
|
+
- @backstage/plugin-auth-backend@0.24.1-next.0
|
|
12
|
+
|
|
13
|
+
## 0.3.0
|
|
14
|
+
|
|
15
|
+
### Minor Changes
|
|
16
|
+
|
|
17
|
+
- 75168e3: **BREAKING**: The AWS ALB `fullProfile` will no longer have the its username or email converted to lowercase. This is to ensure unique handling of the users. You may need to update and configure a custom sign-in resolver or profile transform as a result.
|
|
18
|
+
|
|
19
|
+
### Patch Changes
|
|
20
|
+
|
|
21
|
+
- 5d74716: Remove unused backend-common dependency
|
|
22
|
+
- Updated dependencies
|
|
23
|
+
- @backstage/plugin-auth-backend@0.24.0
|
|
24
|
+
- @backstage/plugin-auth-node@0.5.4
|
|
25
|
+
- @backstage/backend-plugin-api@1.0.2
|
|
26
|
+
- @backstage/errors@1.2.5
|
|
27
|
+
|
|
3
28
|
## 0.3.0-next.2
|
|
4
29
|
|
|
5
30
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-aws-alb-provider",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1-next.0",
|
|
4
4
|
"description": "The aws-alb provider module for the Backstage auth backend.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -37,20 +37,26 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/backend-
|
|
41
|
-
"@backstage/
|
|
42
|
-
"@backstage/
|
|
43
|
-
"@backstage/plugin-auth-
|
|
44
|
-
"@backstage/plugin-auth-node": "0.5.4-next.2",
|
|
40
|
+
"@backstage/backend-plugin-api": "1.0.3-next.0",
|
|
41
|
+
"@backstage/errors": "1.2.5",
|
|
42
|
+
"@backstage/plugin-auth-backend": "0.24.1-next.0",
|
|
43
|
+
"@backstage/plugin-auth-node": "0.5.5-next.0",
|
|
45
44
|
"jose": "^5.0.0",
|
|
46
45
|
"node-cache": "^5.1.2",
|
|
47
46
|
"node-fetch": "^2.7.0"
|
|
48
47
|
},
|
|
49
48
|
"devDependencies": {
|
|
50
|
-
"@backstage/backend-test-utils": "1.
|
|
51
|
-
"@backstage/cli": "0.29.
|
|
52
|
-
"@backstage/config": "1.
|
|
49
|
+
"@backstage/backend-test-utils": "1.2.0-next.0",
|
|
50
|
+
"@backstage/cli": "0.29.3-next.0",
|
|
51
|
+
"@backstage/config": "1.3.0",
|
|
53
52
|
"express": "^4.18.2",
|
|
54
53
|
"msw": "^2.0.8"
|
|
54
|
+
},
|
|
55
|
+
"typesVersions": {
|
|
56
|
+
"*": {
|
|
57
|
+
"index": [
|
|
58
|
+
"dist/index.d.ts"
|
|
59
|
+
]
|
|
60
|
+
}
|
|
55
61
|
}
|
|
56
62
|
}
|