@backstage/plugin-auth-backend-module-aws-alb-provider 0.1.11-next.3 → 0.1.11
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 +13 -0
- package/dist/index.d.ts +1 -1
- package/package.json +7 -7
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-aws-alb-provider
|
|
2
2
|
|
|
3
|
+
## 0.1.11
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 78a0b08: Internal refactor to handle `BackendFeature` contract change.
|
|
8
|
+
- d44a20a: Added additional plugin metadata to `package.json`.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/backend-common@0.23.0
|
|
11
|
+
- @backstage/backend-plugin-api@0.6.19
|
|
12
|
+
- @backstage/plugin-auth-node@0.4.14
|
|
13
|
+
- @backstage/plugin-auth-backend@0.22.6
|
|
14
|
+
- @backstage/errors@1.2.4
|
|
15
|
+
|
|
3
16
|
## 0.1.11-next.3
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/dist/index.d.ts
CHANGED
|
@@ -27,7 +27,7 @@ declare const awsAlbAuthenticator: _backstage_plugin_auth_node.ProxyAuthenticato
|
|
|
27
27
|
}>;
|
|
28
28
|
|
|
29
29
|
/** @public */
|
|
30
|
-
declare const authModuleAwsAlbProvider:
|
|
30
|
+
declare const authModuleAwsAlbProvider: _backstage_backend_plugin_api.BackendFeatureCompat;
|
|
31
31
|
|
|
32
32
|
/**
|
|
33
33
|
* Available sign-in resolvers for the AWS ALB auth provider.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-aws-alb-provider",
|
|
3
|
-
"version": "0.1.11
|
|
3
|
+
"version": "0.1.11",
|
|
4
4
|
"description": "The aws-alb provider module for the Backstage auth backend.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -37,18 +37,18 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/backend-common": "^0.23.0
|
|
41
|
-
"@backstage/backend-plugin-api": "^0.6.19
|
|
40
|
+
"@backstage/backend-common": "^0.23.0",
|
|
41
|
+
"@backstage/backend-plugin-api": "^0.6.19",
|
|
42
42
|
"@backstage/errors": "^1.2.4",
|
|
43
|
-
"@backstage/plugin-auth-backend": "^0.22.6
|
|
44
|
-
"@backstage/plugin-auth-node": "^0.4.14
|
|
43
|
+
"@backstage/plugin-auth-backend": "^0.22.6",
|
|
44
|
+
"@backstage/plugin-auth-node": "^0.4.14",
|
|
45
45
|
"jose": "^5.0.0",
|
|
46
46
|
"node-cache": "^5.1.2",
|
|
47
47
|
"node-fetch": "^2.6.7"
|
|
48
48
|
},
|
|
49
49
|
"devDependencies": {
|
|
50
|
-
"@backstage/backend-test-utils": "^0.4.0
|
|
51
|
-
"@backstage/cli": "^0.26.7
|
|
50
|
+
"@backstage/backend-test-utils": "^0.4.0",
|
|
51
|
+
"@backstage/cli": "^0.26.7",
|
|
52
52
|
"@backstage/config": "^1.2.0",
|
|
53
53
|
"express": "^4.18.2",
|
|
54
54
|
"msw": "^2.0.8"
|