@backstage/plugin-auth-backend 0.24.4-next.2 → 0.24.5-next.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 +88 -0
- package/package.json +24 -24
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,93 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
+
## 0.24.5-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/plugin-auth-backend-module-oidc-provider@0.4.2-next.0
|
|
9
|
+
- @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1
|
|
10
|
+
- @backstage/plugin-auth-backend-module-auth0-provider@0.2.1
|
|
11
|
+
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.1
|
|
12
|
+
- @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1
|
|
13
|
+
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1
|
|
14
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.3.1
|
|
15
|
+
- @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1
|
|
16
|
+
- @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1
|
|
17
|
+
- @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1
|
|
18
|
+
- @backstage/plugin-auth-backend-module-okta-provider@0.2.1
|
|
19
|
+
- @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1
|
|
20
|
+
- @backstage/plugin-auth-node@0.6.1
|
|
21
|
+
- @backstage/backend-plugin-api@1.2.1
|
|
22
|
+
- @backstage/catalog-client@1.9.1
|
|
23
|
+
- @backstage/catalog-model@1.7.3
|
|
24
|
+
- @backstage/config@1.3.2
|
|
25
|
+
- @backstage/errors@1.2.7
|
|
26
|
+
- @backstage/types@1.2.1
|
|
27
|
+
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.2-next.0
|
|
28
|
+
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6
|
|
29
|
+
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1
|
|
30
|
+
- @backstage/plugin-auth-backend-module-google-provider@0.3.1
|
|
31
|
+
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6
|
|
32
|
+
- @backstage/plugin-catalog-node@1.16.1
|
|
33
|
+
|
|
34
|
+
## 0.24.4
|
|
35
|
+
|
|
36
|
+
### Patch Changes
|
|
37
|
+
|
|
38
|
+
- 7956beb: Marked the remaining exports related to `createRouter` and the old backend system as deprecated.
|
|
39
|
+
|
|
40
|
+
For more information about migrating to the new backend system, see the [migration guide](https://backstage.io/docs/backend-system/building-backends/migrating#the-auth-plugin).
|
|
41
|
+
|
|
42
|
+
Support for the old backend system will be removed in the next release of this plugin.
|
|
43
|
+
|
|
44
|
+
- b6702ea: Deprecated `getDefaultOwnershipEntityRefs` in favor of the new `.resolveOwnershipEntityRefs(...)` method in the `AuthResolverContext`.
|
|
45
|
+
|
|
46
|
+
The following code in a custom sign-in resolver:
|
|
47
|
+
|
|
48
|
+
```ts
|
|
49
|
+
import { getDefaultOwnershipEntityRefs } from '@backstage/plugin-auth-backend';
|
|
50
|
+
|
|
51
|
+
// ...
|
|
52
|
+
|
|
53
|
+
const ent = getDefaultOwnershipEntityRefs(entity);
|
|
54
|
+
```
|
|
55
|
+
|
|
56
|
+
Can be replaced with the following:
|
|
57
|
+
|
|
58
|
+
```ts
|
|
59
|
+
const { ownershipEntityRefs: ent } = await ctx.resolveOwnershipEntityRefs(
|
|
60
|
+
entity,
|
|
61
|
+
);
|
|
62
|
+
```
|
|
63
|
+
|
|
64
|
+
- Updated dependencies
|
|
65
|
+
- @backstage/plugin-auth-node@0.6.1
|
|
66
|
+
- @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1
|
|
67
|
+
- @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1
|
|
68
|
+
- @backstage/plugin-auth-backend-module-oidc-provider@0.4.1
|
|
69
|
+
- @backstage/plugin-auth-backend-module-okta-provider@0.2.1
|
|
70
|
+
- @backstage/backend-plugin-api@1.2.1
|
|
71
|
+
- @backstage/catalog-client@1.9.1
|
|
72
|
+
- @backstage/catalog-model@1.7.3
|
|
73
|
+
- @backstage/config@1.3.2
|
|
74
|
+
- @backstage/errors@1.2.7
|
|
75
|
+
- @backstage/types@1.2.1
|
|
76
|
+
- @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1
|
|
77
|
+
- @backstage/plugin-auth-backend-module-auth0-provider@0.2.1
|
|
78
|
+
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.1
|
|
79
|
+
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6
|
|
80
|
+
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.1
|
|
81
|
+
- @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1
|
|
82
|
+
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1
|
|
83
|
+
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1
|
|
84
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.3.1
|
|
85
|
+
- @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1
|
|
86
|
+
- @backstage/plugin-auth-backend-module-google-provider@0.3.1
|
|
87
|
+
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6
|
|
88
|
+
- @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1
|
|
89
|
+
- @backstage/plugin-catalog-node@1.16.1
|
|
90
|
+
|
|
3
91
|
## 0.24.4-next.2
|
|
4
92
|
|
|
5
93
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-auth-backend",
|
|
3
|
-
"version": "0.24.
|
|
3
|
+
"version": "0.24.5-next.0",
|
|
4
4
|
"description": "A Backstage backend plugin that handles authentication",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -47,30 +47,30 @@
|
|
|
47
47
|
},
|
|
48
48
|
"dependencies": {
|
|
49
49
|
"@backstage/backend-common": "^0.25.0",
|
|
50
|
-
"@backstage/backend-plugin-api": "1.2.1
|
|
50
|
+
"@backstage/backend-plugin-api": "1.2.1",
|
|
51
51
|
"@backstage/catalog-client": "1.9.1",
|
|
52
52
|
"@backstage/catalog-model": "1.7.3",
|
|
53
53
|
"@backstage/config": "1.3.2",
|
|
54
54
|
"@backstage/errors": "1.2.7",
|
|
55
|
-
"@backstage/plugin-auth-backend-module-atlassian-provider": "0.4.1
|
|
56
|
-
"@backstage/plugin-auth-backend-module-auth0-provider": "0.2.1
|
|
57
|
-
"@backstage/plugin-auth-backend-module-aws-alb-provider": "0.4.
|
|
58
|
-
"@backstage/plugin-auth-backend-module-azure-easyauth-provider": "0.2.6
|
|
59
|
-
"@backstage/plugin-auth-backend-module-bitbucket-provider": "0.3.1
|
|
60
|
-
"@backstage/plugin-auth-backend-module-bitbucket-server-provider": "0.2.1
|
|
61
|
-
"@backstage/plugin-auth-backend-module-cloudflare-access-provider": "0.4.1
|
|
62
|
-
"@backstage/plugin-auth-backend-module-gcp-iap-provider": "0.4.1
|
|
63
|
-
"@backstage/plugin-auth-backend-module-github-provider": "0.3.1
|
|
64
|
-
"@backstage/plugin-auth-backend-module-gitlab-provider": "0.3.1
|
|
65
|
-
"@backstage/plugin-auth-backend-module-google-provider": "0.3.1
|
|
66
|
-
"@backstage/plugin-auth-backend-module-microsoft-provider": "0.3.1
|
|
67
|
-
"@backstage/plugin-auth-backend-module-oauth2-provider": "0.4.1
|
|
68
|
-
"@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "0.2.6
|
|
69
|
-
"@backstage/plugin-auth-backend-module-oidc-provider": "0.4.
|
|
70
|
-
"@backstage/plugin-auth-backend-module-okta-provider": "0.2.1
|
|
71
|
-
"@backstage/plugin-auth-backend-module-onelogin-provider": "0.3.1
|
|
72
|
-
"@backstage/plugin-auth-node": "0.6.1
|
|
73
|
-
"@backstage/plugin-catalog-node": "1.16.1
|
|
55
|
+
"@backstage/plugin-auth-backend-module-atlassian-provider": "0.4.1",
|
|
56
|
+
"@backstage/plugin-auth-backend-module-auth0-provider": "0.2.1",
|
|
57
|
+
"@backstage/plugin-auth-backend-module-aws-alb-provider": "0.4.2-next.0",
|
|
58
|
+
"@backstage/plugin-auth-backend-module-azure-easyauth-provider": "0.2.6",
|
|
59
|
+
"@backstage/plugin-auth-backend-module-bitbucket-provider": "0.3.1",
|
|
60
|
+
"@backstage/plugin-auth-backend-module-bitbucket-server-provider": "0.2.1",
|
|
61
|
+
"@backstage/plugin-auth-backend-module-cloudflare-access-provider": "0.4.1",
|
|
62
|
+
"@backstage/plugin-auth-backend-module-gcp-iap-provider": "0.4.1",
|
|
63
|
+
"@backstage/plugin-auth-backend-module-github-provider": "0.3.1",
|
|
64
|
+
"@backstage/plugin-auth-backend-module-gitlab-provider": "0.3.1",
|
|
65
|
+
"@backstage/plugin-auth-backend-module-google-provider": "0.3.1",
|
|
66
|
+
"@backstage/plugin-auth-backend-module-microsoft-provider": "0.3.1",
|
|
67
|
+
"@backstage/plugin-auth-backend-module-oauth2-provider": "0.4.1",
|
|
68
|
+
"@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "0.2.6",
|
|
69
|
+
"@backstage/plugin-auth-backend-module-oidc-provider": "0.4.2-next.0",
|
|
70
|
+
"@backstage/plugin-auth-backend-module-okta-provider": "0.2.1",
|
|
71
|
+
"@backstage/plugin-auth-backend-module-onelogin-provider": "0.3.1",
|
|
72
|
+
"@backstage/plugin-auth-node": "0.6.1",
|
|
73
|
+
"@backstage/plugin-catalog-node": "1.16.1",
|
|
74
74
|
"@backstage/types": "1.2.1",
|
|
75
75
|
"@google-cloud/firestore": "^7.0.0",
|
|
76
76
|
"@node-saml/passport-saml": "^5.0.0",
|
|
@@ -105,9 +105,9 @@
|
|
|
105
105
|
"yn": "^4.0.0"
|
|
106
106
|
},
|
|
107
107
|
"devDependencies": {
|
|
108
|
-
"@backstage/backend-defaults": "0.
|
|
109
|
-
"@backstage/backend-test-utils": "1.3.
|
|
110
|
-
"@backstage/cli": "0.
|
|
108
|
+
"@backstage/backend-defaults": "0.9.0-next.0",
|
|
109
|
+
"@backstage/backend-test-utils": "1.3.2-next.0",
|
|
110
|
+
"@backstage/cli": "0.32.0-next.0",
|
|
111
111
|
"@types/body-parser": "^1.19.0",
|
|
112
112
|
"@types/cookie-parser": "^1.4.2",
|
|
113
113
|
"@types/express-session": "^1.17.2",
|