@backstage/plugin-auth-backend 0.20.4-next.1 → 0.21.0-next.3
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 +68 -0
- package/README.md +11 -0
- package/config.d.ts +10 -0
- package/dist/index.cjs.js +58 -15
- package/dist/index.cjs.js.map +1 -1
- package/package.json +21 -22
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend",
|
|
3
3
|
"description": "A Backstage backend plugin that handles authentication",
|
|
4
|
-
"version": "0.
|
|
4
|
+
"version": "0.21.0-next.3",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,26 +32,28 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/backend-common": "^0.21.0-next.
|
|
36
|
-
"@backstage/backend-plugin-api": "^0.6.10-next.
|
|
35
|
+
"@backstage/backend-common": "^0.21.0-next.3",
|
|
36
|
+
"@backstage/backend-plugin-api": "^0.6.10-next.3",
|
|
37
37
|
"@backstage/catalog-client": "^1.6.0-next.1",
|
|
38
38
|
"@backstage/catalog-model": "^1.4.4-next.0",
|
|
39
39
|
"@backstage/config": "^1.1.1",
|
|
40
40
|
"@backstage/errors": "^1.2.3",
|
|
41
|
-
"@backstage/plugin-auth-backend-module-atlassian-provider": "^0.1.2-next.
|
|
42
|
-
"@backstage/plugin-auth-backend-module-aws-alb-provider": "^0.1.0-next.
|
|
43
|
-
"@backstage/plugin-auth-backend-module-gcp-iap-provider": "^0.2.4-next.
|
|
44
|
-
"@backstage/plugin-auth-backend-module-github-provider": "^0.1.7-next.
|
|
45
|
-
"@backstage/plugin-auth-backend-module-gitlab-provider": "^0.1.7-next.
|
|
46
|
-
"@backstage/plugin-auth-backend-module-google-provider": "^0.1.7-next.
|
|
47
|
-
"@backstage/plugin-auth-backend-module-microsoft-provider": "^0.1.5-next.
|
|
48
|
-
"@backstage/plugin-auth-backend-module-oauth2-provider": "^0.1.7-next.
|
|
49
|
-
"@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "^0.1.2-next.
|
|
50
|
-
"@backstage/plugin-auth-backend-module-oidc-provider": "^0.1.0-next.
|
|
51
|
-
"@backstage/plugin-auth-backend-module-okta-provider": "^0.0.3-next.
|
|
52
|
-
"@backstage/plugin-auth-node": "^0.4.4-next.
|
|
53
|
-
"@backstage/plugin-catalog-node": "^1.6.2-next.
|
|
41
|
+
"@backstage/plugin-auth-backend-module-atlassian-provider": "^0.1.2-next.3",
|
|
42
|
+
"@backstage/plugin-auth-backend-module-aws-alb-provider": "^0.1.0-next.2",
|
|
43
|
+
"@backstage/plugin-auth-backend-module-gcp-iap-provider": "^0.2.4-next.3",
|
|
44
|
+
"@backstage/plugin-auth-backend-module-github-provider": "^0.1.7-next.3",
|
|
45
|
+
"@backstage/plugin-auth-backend-module-gitlab-provider": "^0.1.7-next.3",
|
|
46
|
+
"@backstage/plugin-auth-backend-module-google-provider": "^0.1.7-next.3",
|
|
47
|
+
"@backstage/plugin-auth-backend-module-microsoft-provider": "^0.1.5-next.3",
|
|
48
|
+
"@backstage/plugin-auth-backend-module-oauth2-provider": "^0.1.7-next.3",
|
|
49
|
+
"@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "^0.1.2-next.3",
|
|
50
|
+
"@backstage/plugin-auth-backend-module-oidc-provider": "^0.1.0-next.3",
|
|
51
|
+
"@backstage/plugin-auth-backend-module-okta-provider": "^0.0.3-next.3",
|
|
52
|
+
"@backstage/plugin-auth-node": "^0.4.4-next.3",
|
|
53
|
+
"@backstage/plugin-catalog-node": "^1.6.2-next.3",
|
|
54
|
+
"@backstage/types": "^1.1.1",
|
|
54
55
|
"@google-cloud/firestore": "^7.0.0",
|
|
56
|
+
"@node-saml/passport-saml": "^4.0.4",
|
|
55
57
|
"@types/express": "^4.17.6",
|
|
56
58
|
"@types/passport": "^1.0.3",
|
|
57
59
|
"compression": "^1.7.4",
|
|
@@ -64,7 +66,6 @@
|
|
|
64
66
|
"fs-extra": "10.1.0",
|
|
65
67
|
"google-auth-library": "^8.0.0",
|
|
66
68
|
"jose": "^4.6.0",
|
|
67
|
-
"jwt-decode": "^3.1.0",
|
|
68
69
|
"knex": "^3.0.0",
|
|
69
70
|
"lodash": "^4.17.21",
|
|
70
71
|
"luxon": "^3.0.0",
|
|
@@ -81,19 +82,17 @@
|
|
|
81
82
|
"passport-microsoft": "^1.0.0",
|
|
82
83
|
"passport-oauth2": "^1.6.1",
|
|
83
84
|
"passport-onelogin-oauth": "^0.0.1",
|
|
84
|
-
"passport-saml": "^3.1.2",
|
|
85
85
|
"uuid": "^8.0.0",
|
|
86
86
|
"winston": "^3.2.1",
|
|
87
87
|
"yn": "^4.0.0"
|
|
88
88
|
},
|
|
89
89
|
"devDependencies": {
|
|
90
|
-
"@backstage/backend-defaults": "^0.2.10-next.
|
|
91
|
-
"@backstage/backend-test-utils": "^0.3.0-next.
|
|
92
|
-
"@backstage/cli": "^0.25.2-next.
|
|
90
|
+
"@backstage/backend-defaults": "^0.2.10-next.3",
|
|
91
|
+
"@backstage/backend-test-utils": "^0.3.0-next.3",
|
|
92
|
+
"@backstage/cli": "^0.25.2-next.3",
|
|
93
93
|
"@types/body-parser": "^1.19.0",
|
|
94
94
|
"@types/cookie-parser": "^1.4.2",
|
|
95
95
|
"@types/express-session": "^1.17.2",
|
|
96
|
-
"@types/jwt-decode": "^3.1.0",
|
|
97
96
|
"@types/passport-auth0": "^1.0.5",
|
|
98
97
|
"@types/passport-github2": "^1.2.4",
|
|
99
98
|
"@types/passport-google-oauth20": "^2.0.3",
|