@backstage/plugin-auth-backend-module-aws-alb-provider 0.1.11-next.2 → 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 CHANGED
@@ -1,5 +1,30 @@
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
+
16
+ ## 0.1.11-next.3
17
+
18
+ ### Patch Changes
19
+
20
+ - d44a20a: Added additional plugin metadata to `package.json`.
21
+ - Updated dependencies
22
+ - @backstage/backend-plugin-api@0.6.19-next.3
23
+ - @backstage/plugin-auth-node@0.4.14-next.3
24
+ - @backstage/plugin-auth-backend@0.22.6-next.3
25
+ - @backstage/backend-common@0.23.0-next.3
26
+ - @backstage/errors@1.2.4
27
+
3
28
  ## 0.1.11-next.2
4
29
 
5
30
  ### 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: () => _backstage_backend_plugin_api.BackendFeature;
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,54 +1,56 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-aws-alb-provider",
3
+ "version": "0.1.11",
3
4
  "description": "The aws-alb provider module for the Backstage auth backend.",
4
- "version": "0.1.11-next.2",
5
- "main": "dist/index.cjs.js",
6
- "types": "dist/index.d.ts",
7
- "license": "Apache-2.0",
5
+ "backstage": {
6
+ "role": "backend-plugin-module",
7
+ "pluginId": "auth",
8
+ "pluginPackage": "@backstage/plugin-auth-backend"
9
+ },
8
10
  "publishConfig": {
9
11
  "access": "public",
10
12
  "main": "dist/index.cjs.js",
11
13
  "types": "dist/index.d.ts"
12
14
  },
13
- "backstage": {
14
- "role": "backend-plugin-module"
15
- },
15
+ "keywords": [
16
+ "backstage"
17
+ ],
16
18
  "homepage": "https://backstage.io",
17
19
  "repository": {
18
20
  "type": "git",
19
21
  "url": "https://github.com/backstage/backstage",
20
22
  "directory": "plugins/auth-backend-module-aws-alb-provider"
21
23
  },
22
- "keywords": [
23
- "backstage"
24
+ "license": "Apache-2.0",
25
+ "main": "dist/index.cjs.js",
26
+ "types": "dist/index.d.ts",
27
+ "files": [
28
+ "dist"
24
29
  ],
25
30
  "scripts": {
26
- "start": "backstage-cli package start",
27
31
  "build": "backstage-cli package build",
28
- "lint": "backstage-cli package lint",
29
- "test": "backstage-cli package test",
30
32
  "clean": "backstage-cli package clean",
33
+ "lint": "backstage-cli package lint",
31
34
  "prepack": "backstage-cli package prepack",
32
- "postpack": "backstage-cli package postpack"
35
+ "postpack": "backstage-cli package postpack",
36
+ "start": "backstage-cli package start",
37
+ "test": "backstage-cli package test"
33
38
  },
34
39
  "dependencies": {
35
- "@backstage/backend-common": "^0.23.0-next.2",
36
- "@backstage/backend-plugin-api": "^0.6.19-next.2",
40
+ "@backstage/backend-common": "^0.23.0",
41
+ "@backstage/backend-plugin-api": "^0.6.19",
37
42
  "@backstage/errors": "^1.2.4",
38
- "@backstage/plugin-auth-backend": "^0.22.6-next.2",
39
- "@backstage/plugin-auth-node": "^0.4.14-next.2",
43
+ "@backstage/plugin-auth-backend": "^0.22.6",
44
+ "@backstage/plugin-auth-node": "^0.4.14",
40
45
  "jose": "^5.0.0",
41
46
  "node-cache": "^5.1.2",
42
47
  "node-fetch": "^2.6.7"
43
48
  },
44
49
  "devDependencies": {
45
- "@backstage/backend-test-utils": "^0.4.0-next.2",
46
- "@backstage/cli": "^0.26.7-next.2",
50
+ "@backstage/backend-test-utils": "^0.4.0",
51
+ "@backstage/cli": "^0.26.7",
47
52
  "@backstage/config": "^1.2.0",
48
53
  "express": "^4.18.2",
49
54
  "msw": "^2.0.8"
50
- },
51
- "files": [
52
- "dist"
53
- ]
55
+ }
54
56
  }