@backstage/plugin-auth-backend 0.0.0-nightly-20240827022616 → 0.0.0-nightly-20240828022712

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +60 -20
  2. package/package.json +23 -23
package/CHANGELOG.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
- ## 0.0.0-nightly-20240827022616
3
+ ## 0.0.0-nightly-20240828022712
4
4
 
5
5
  ### Minor Changes
6
6
 
@@ -15,25 +15,65 @@
15
15
  - 19ff127: Internal refactor to remove dependencies on the identity and token manager services, which have been removed. Public APIs no longer require the identity service or token manager to be provided.
16
16
  - 3c2d690: Allow users without defined email to be ingested by the `msgraph` catalog plugin and add `userIdMatchingUserEntityAnnotation` sign-in resolver for the Microsoft auth provider to support sign-in for users without defined email.
17
17
  - Updated dependencies
18
- - @backstage/plugin-auth-backend-module-aws-alb-provider@0.0.0-nightly-20240827022616
19
- - @backstage/backend-plugin-api@0.0.0-nightly-20240827022616
20
- - @backstage/backend-common@0.0.0-nightly-20240827022616
21
- - @backstage/plugin-auth-backend-module-microsoft-provider@0.0.0-nightly-20240827022616
22
- - @backstage/plugin-auth-backend-module-atlassian-provider@0.0.0-nightly-20240827022616
23
- - @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.0.0-nightly-20240827022616
24
- - @backstage/plugin-auth-backend-module-bitbucket-provider@0.0.0-nightly-20240827022616
25
- - @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.0.0-nightly-20240827022616
26
- - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.0.0-nightly-20240827022616
27
- - @backstage/plugin-auth-backend-module-github-provider@0.0.0-nightly-20240827022616
28
- - @backstage/plugin-auth-backend-module-gitlab-provider@0.0.0-nightly-20240827022616
29
- - @backstage/plugin-auth-backend-module-google-provider@0.0.0-nightly-20240827022616
30
- - @backstage/plugin-auth-backend-module-oauth2-provider@0.0.0-nightly-20240827022616
31
- - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.0.0-nightly-20240827022616
32
- - @backstage/plugin-auth-backend-module-oidc-provider@0.0.0-nightly-20240827022616
33
- - @backstage/plugin-auth-backend-module-okta-provider@0.0.0-nightly-20240827022616
34
- - @backstage/plugin-auth-backend-module-onelogin-provider@0.0.0-nightly-20240827022616
35
- - @backstage/plugin-auth-node@0.0.0-nightly-20240827022616
36
- - @backstage/plugin-catalog-node@0.0.0-nightly-20240827022616
18
+ - @backstage/plugin-auth-backend-module-aws-alb-provider@0.0.0-nightly-20240828022712
19
+ - @backstage/backend-plugin-api@0.0.0-nightly-20240828022712
20
+ - @backstage/backend-common@0.0.0-nightly-20240828022712
21
+ - @backstage/plugin-auth-backend-module-microsoft-provider@0.0.0-nightly-20240828022712
22
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.0.0-nightly-20240828022712
23
+ - @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.0.0-nightly-20240828022712
24
+ - @backstage/plugin-auth-backend-module-bitbucket-provider@0.0.0-nightly-20240828022712
25
+ - @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.0.0-nightly-20240828022712
26
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.0.0-nightly-20240828022712
27
+ - @backstage/plugin-auth-backend-module-github-provider@0.0.0-nightly-20240828022712
28
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.0.0-nightly-20240828022712
29
+ - @backstage/plugin-auth-backend-module-google-provider@0.0.0-nightly-20240828022712
30
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.0.0-nightly-20240828022712
31
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.0.0-nightly-20240828022712
32
+ - @backstage/plugin-auth-backend-module-oidc-provider@0.0.0-nightly-20240828022712
33
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.0-nightly-20240828022712
34
+ - @backstage/plugin-auth-backend-module-onelogin-provider@0.0.0-nightly-20240828022712
35
+ - @backstage/plugin-auth-node@0.0.0-nightly-20240828022712
36
+ - @backstage/plugin-catalog-node@0.0.0-nightly-20240828022712
37
+ - @backstage/catalog-client@1.6.6
38
+ - @backstage/catalog-model@1.6.0
39
+ - @backstage/config@1.2.0
40
+ - @backstage/errors@1.2.4
41
+ - @backstage/types@1.1.1
42
+
43
+ ## 0.23.0-next.0
44
+
45
+ ### Minor Changes
46
+
47
+ - d425fc4: **BREAKING**: The return values from `createBackendPlugin`, `createBackendModule`, and `createServiceFactory` are now simply `BackendFeature` and `ServiceFactory`, instead of the previously deprecated form of a function that returns them. For this reason, `createServiceFactory` also no longer accepts the callback form where you provide direct options to the service. This also affects all `coreServices.*` service refs.
48
+
49
+ This may in particular affect tests; if you were effectively doing `createBackendModule({...})()` (note the parentheses), you can now remove those extra parentheses at the end. You may encounter cases of this in your `packages/backend/src/index.ts` too, where you add plugins, modules, and services. If you were using `createServiceFactory` with a function as its argument for the purpose of passing in options, this pattern has been deprecated for a while and is no longer supported. You may want to explore the new multiton patterns to achieve your goals, or moving settings to app-config.
50
+
51
+ As part of this change, the `IdentityFactoryOptions` type was removed, and can no longer be used to tweak that service. The identity service was also deprecated some time ago, and you will want to [migrate to the new auth system](https://backstage.io/docs/tutorials/auth-service-migration) if you still rely on it.
52
+
53
+ ### Patch Changes
54
+
55
+ - 19ff127: Internal refactor to remove dependencies on the identity and token manager services, which have been removed. Public APIs no longer require the identity service or token manager to be provided.
56
+ - 3c2d690: Allow users without defined email to be ingested by the `msgraph` catalog plugin and add `userIdMatchingUserEntityAnnotation` sign-in resolver for the Microsoft auth provider to support sign-in for users without defined email.
57
+ - Updated dependencies
58
+ - @backstage/plugin-auth-backend-module-aws-alb-provider@0.2.0-next.0
59
+ - @backstage/backend-plugin-api@0.9.0-next.0
60
+ - @backstage/backend-common@0.25.0-next.0
61
+ - @backstage/plugin-auth-backend-module-microsoft-provider@0.2.0-next.0
62
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.3.0-next.0
63
+ - @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.0-next.0
64
+ - @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.0-next.0
65
+ - @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.0-next.0
66
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.0-next.0
67
+ - @backstage/plugin-auth-backend-module-github-provider@0.2.0-next.0
68
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.2.0-next.0
69
+ - @backstage/plugin-auth-backend-module-google-provider@0.2.0-next.0
70
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.3.0-next.0
71
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.0-next.0
72
+ - @backstage/plugin-auth-backend-module-oidc-provider@0.3.0-next.0
73
+ - @backstage/plugin-auth-backend-module-okta-provider@0.1.0-next.0
74
+ - @backstage/plugin-auth-backend-module-onelogin-provider@0.2.0-next.0
75
+ - @backstage/plugin-auth-node@0.5.2-next.0
76
+ - @backstage/plugin-catalog-node@1.12.7-next.0
37
77
  - @backstage/catalog-client@1.6.6
38
78
  - @backstage/catalog-model@1.6.0
39
79
  - @backstage/config@1.2.0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend",
3
- "version": "0.0.0-nightly-20240827022616",
3
+ "version": "0.0.0-nightly-20240828022712",
4
4
  "description": "A Backstage backend plugin that handles authentication",
5
5
  "backstage": {
6
6
  "role": "backend-plugin",
@@ -43,29 +43,29 @@
43
43
  "test": "backstage-cli package test"
44
44
  },
45
45
  "dependencies": {
46
- "@backstage/backend-common": "^0.0.0-nightly-20240827022616",
47
- "@backstage/backend-plugin-api": "^0.0.0-nightly-20240827022616",
46
+ "@backstage/backend-common": "^0.0.0-nightly-20240828022712",
47
+ "@backstage/backend-plugin-api": "^0.0.0-nightly-20240828022712",
48
48
  "@backstage/catalog-client": "^1.6.6",
49
49
  "@backstage/catalog-model": "^1.6.0",
50
50
  "@backstage/config": "^1.2.0",
51
51
  "@backstage/errors": "^1.2.4",
52
- "@backstage/plugin-auth-backend-module-atlassian-provider": "^0.0.0-nightly-20240827022616",
53
- "@backstage/plugin-auth-backend-module-aws-alb-provider": "^0.0.0-nightly-20240827022616",
54
- "@backstage/plugin-auth-backend-module-azure-easyauth-provider": "^0.0.0-nightly-20240827022616",
55
- "@backstage/plugin-auth-backend-module-bitbucket-provider": "^0.0.0-nightly-20240827022616",
56
- "@backstage/plugin-auth-backend-module-cloudflare-access-provider": "^0.0.0-nightly-20240827022616",
57
- "@backstage/plugin-auth-backend-module-gcp-iap-provider": "^0.0.0-nightly-20240827022616",
58
- "@backstage/plugin-auth-backend-module-github-provider": "^0.0.0-nightly-20240827022616",
59
- "@backstage/plugin-auth-backend-module-gitlab-provider": "^0.0.0-nightly-20240827022616",
60
- "@backstage/plugin-auth-backend-module-google-provider": "^0.0.0-nightly-20240827022616",
61
- "@backstage/plugin-auth-backend-module-microsoft-provider": "^0.0.0-nightly-20240827022616",
62
- "@backstage/plugin-auth-backend-module-oauth2-provider": "^0.0.0-nightly-20240827022616",
63
- "@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "^0.0.0-nightly-20240827022616",
64
- "@backstage/plugin-auth-backend-module-oidc-provider": "^0.0.0-nightly-20240827022616",
65
- "@backstage/plugin-auth-backend-module-okta-provider": "^0.0.0-nightly-20240827022616",
66
- "@backstage/plugin-auth-backend-module-onelogin-provider": "^0.0.0-nightly-20240827022616",
67
- "@backstage/plugin-auth-node": "^0.0.0-nightly-20240827022616",
68
- "@backstage/plugin-catalog-node": "^0.0.0-nightly-20240827022616",
52
+ "@backstage/plugin-auth-backend-module-atlassian-provider": "^0.0.0-nightly-20240828022712",
53
+ "@backstage/plugin-auth-backend-module-aws-alb-provider": "^0.0.0-nightly-20240828022712",
54
+ "@backstage/plugin-auth-backend-module-azure-easyauth-provider": "^0.0.0-nightly-20240828022712",
55
+ "@backstage/plugin-auth-backend-module-bitbucket-provider": "^0.0.0-nightly-20240828022712",
56
+ "@backstage/plugin-auth-backend-module-cloudflare-access-provider": "^0.0.0-nightly-20240828022712",
57
+ "@backstage/plugin-auth-backend-module-gcp-iap-provider": "^0.0.0-nightly-20240828022712",
58
+ "@backstage/plugin-auth-backend-module-github-provider": "^0.0.0-nightly-20240828022712",
59
+ "@backstage/plugin-auth-backend-module-gitlab-provider": "^0.0.0-nightly-20240828022712",
60
+ "@backstage/plugin-auth-backend-module-google-provider": "^0.0.0-nightly-20240828022712",
61
+ "@backstage/plugin-auth-backend-module-microsoft-provider": "^0.0.0-nightly-20240828022712",
62
+ "@backstage/plugin-auth-backend-module-oauth2-provider": "^0.0.0-nightly-20240828022712",
63
+ "@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "^0.0.0-nightly-20240828022712",
64
+ "@backstage/plugin-auth-backend-module-oidc-provider": "^0.0.0-nightly-20240828022712",
65
+ "@backstage/plugin-auth-backend-module-okta-provider": "^0.0.0-nightly-20240828022712",
66
+ "@backstage/plugin-auth-backend-module-onelogin-provider": "^0.0.0-nightly-20240828022712",
67
+ "@backstage/plugin-auth-node": "^0.0.0-nightly-20240828022712",
68
+ "@backstage/plugin-catalog-node": "^0.0.0-nightly-20240828022712",
69
69
  "@backstage/types": "^1.1.1",
70
70
  "@google-cloud/firestore": "^7.0.0",
71
71
  "@node-saml/passport-saml": "^4.0.4",
@@ -101,9 +101,9 @@
101
101
  "yn": "^4.0.0"
102
102
  },
103
103
  "devDependencies": {
104
- "@backstage/backend-defaults": "^0.0.0-nightly-20240827022616",
105
- "@backstage/backend-test-utils": "^0.0.0-nightly-20240827022616",
106
- "@backstage/cli": "^0.0.0-nightly-20240827022616",
104
+ "@backstage/backend-defaults": "^0.0.0-nightly-20240828022712",
105
+ "@backstage/backend-test-utils": "^0.0.0-nightly-20240828022712",
106
+ "@backstage/cli": "^0.0.0-nightly-20240828022712",
107
107
  "@types/body-parser": "^1.19.0",
108
108
  "@types/cookie-parser": "^1.4.2",
109
109
  "@types/express-session": "^1.17.2",