@backstage/plugin-auth-backend-module-aws-alb-provider 0.3.0-next.2 → 0.3.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 +15 -0
  2. package/package.json +15 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,20 @@
1
1
  # @backstage/plugin-auth-backend-module-aws-alb-provider
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 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.
8
+
9
+ ### Patch Changes
10
+
11
+ - 5d74716: Remove unused backend-common dependency
12
+ - Updated dependencies
13
+ - @backstage/plugin-auth-backend@0.24.0
14
+ - @backstage/plugin-auth-node@0.5.4
15
+ - @backstage/backend-plugin-api@1.0.2
16
+ - @backstage/errors@1.2.5
17
+
3
18
  ## 0.3.0-next.2
4
19
 
5
20
  ### 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.0-next.2",
3
+ "version": "0.3.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-common": "^0.25.0",
41
- "@backstage/backend-plugin-api": "1.0.2-next.2",
42
- "@backstage/errors": "1.2.4",
43
- "@backstage/plugin-auth-backend": "0.24.0-next.2",
44
- "@backstage/plugin-auth-node": "0.5.4-next.2",
40
+ "@backstage/backend-plugin-api": "^1.0.2",
41
+ "@backstage/errors": "^1.2.5",
42
+ "@backstage/plugin-auth-backend": "^0.24.0",
43
+ "@backstage/plugin-auth-node": "^0.5.4",
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.1.0-next.2",
51
- "@backstage/cli": "0.29.0-next.2",
52
- "@backstage/config": "1.2.0",
49
+ "@backstage/backend-test-utils": "^1.1.0",
50
+ "@backstage/cli": "^0.29.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
  }