@backstage/plugin-auth-backend-module-auth0-provider 0.3.0-next.1 → 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.
- package/CHANGELOG.md +13 -0
- package/package.json +9 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-auth0-provider
|
|
2
2
|
|
|
3
|
+
## 0.3.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 36804fe: feat: Added organization option to authorization params of the strategy
|
|
8
|
+
|
|
9
|
+
### Patch Changes
|
|
10
|
+
|
|
11
|
+
- 867c905: Add support for organizational invites in auth0 strategy
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/backend-plugin-api@1.7.0
|
|
14
|
+
- @backstage/plugin-auth-node@0.6.13
|
|
15
|
+
|
|
3
16
|
## 0.3.0-next.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend-module-auth0-provider",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "The auth0-provider backend module for the auth plugin.",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin-module",
|
|
@@ -37,20 +37,20 @@
|
|
|
37
37
|
"test": "backstage-cli package test"
|
|
38
38
|
},
|
|
39
39
|
"dependencies": {
|
|
40
|
-
"@backstage/backend-plugin-api": "1.7.0
|
|
41
|
-
"@backstage/errors": "1.2.7",
|
|
42
|
-
"@backstage/plugin-auth-node": "0.6.13
|
|
40
|
+
"@backstage/backend-plugin-api": "^1.7.0",
|
|
41
|
+
"@backstage/errors": "^1.2.7",
|
|
42
|
+
"@backstage/plugin-auth-node": "^0.6.13",
|
|
43
43
|
"express": "^4.22.0",
|
|
44
44
|
"passport": "^0.7.0",
|
|
45
45
|
"passport-auth0": "^1.4.3",
|
|
46
46
|
"passport-oauth2": "^1.6.1"
|
|
47
47
|
},
|
|
48
48
|
"devDependencies": {
|
|
49
|
-
"@backstage/backend-defaults": "0.15.2
|
|
50
|
-
"@backstage/backend-test-utils": "1.11.0
|
|
51
|
-
"@backstage/cli": "0.35.4
|
|
52
|
-
"@backstage/plugin-auth-backend": "0.27.0
|
|
53
|
-
"@backstage/types": "1.2.2",
|
|
49
|
+
"@backstage/backend-defaults": "^0.15.2",
|
|
50
|
+
"@backstage/backend-test-utils": "^1.11.0",
|
|
51
|
+
"@backstage/cli": "^0.35.4",
|
|
52
|
+
"@backstage/plugin-auth-backend": "^0.27.0",
|
|
53
|
+
"@backstage/types": "^1.2.2",
|
|
54
54
|
"@types/passport": "^1.0.3",
|
|
55
55
|
"@types/passport-auth0": "^1.0.5",
|
|
56
56
|
"@types/passport-oauth2": "^1.4.15",
|