@backstage/plugin-auth-backend 0.21.0-next.2 → 0.21.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 CHANGED
@@ -1,5 +1,80 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.21.0
4
+
5
+ ### Minor Changes
6
+
7
+ - 7dd8463: **BREAKING**: The `saml` provider has been migrated from `passport-saml` to `@node-saml/passport-saml`.
8
+
9
+ This comes with breaking changes to config options:
10
+
11
+ - `audience` is now mandatory
12
+ - `wantAuthnResponseSigned` is now exposed and defaults to `true`
13
+ - `wantAssertionsSigned` is now exposed and defaults to `true`
14
+
15
+ ### Patch Changes
16
+
17
+ - 97f8724: Support additional algorithms in the `/.well-known/openid-configuration` endpoint.
18
+ - a3f1fa3: Use the externalized `auth-backend-module-microsoft-provider` again.
19
+ - a9e0107: The auth backend will now refuse to issue user tokens are excessively large.
20
+ - 5d2fcba: Migrated oidc auth provider to new `@backstage/plugin-auth-backend-module-oidc-provider` module package.
21
+ - d4cc552: The helper function `makeProfileInfo` and `PassportHelpers.transformProfile`
22
+ were refactored to use the `jose` library.
23
+ - 6bb6f3e: Updated dependency `fs-extra` to `^11.2.0`.
24
+ Updated dependency `@types/fs-extra` to `^11.0.0`.
25
+ - 23a98f8: Migrated the AWS ALB auth provider to new `@backstage/plugin-auth-backend-module-aws-alb-provider` module package.
26
+ - f5e04e3: Internal refactor to no longer use deprecated types
27
+ - 8321c97: Added `experimentalExtraAllowedOrigins` to config
28
+ - 8e8a25d: Ability for user to configure backstage token expiration
29
+ - Updated dependencies
30
+ - @backstage/backend-common@0.21.0
31
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.3
32
+ - @backstage/plugin-auth-node@0.4.4
33
+ - @backstage/plugin-auth-backend-module-oidc-provider@0.1.0
34
+ - @backstage/backend-plugin-api@0.6.10
35
+ - @backstage/catalog-model@1.4.4
36
+ - @backstage/catalog-client@1.6.0
37
+ - @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.0
38
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2
39
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2
40
+ - @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5
41
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.7
42
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7
43
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7
44
+ - @backstage/plugin-catalog-node@1.7.0
45
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.7
46
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4
47
+ - @backstage/config@1.1.1
48
+ - @backstage/errors@1.2.3
49
+ - @backstage/types@1.1.1
50
+
51
+ ## 0.21.0-next.3
52
+
53
+ ### Patch Changes
54
+
55
+ - 8321c97: Added `experimentalExtraAllowedOrigins` to config
56
+ - Updated dependencies
57
+ - @backstage/backend-common@0.21.0-next.3
58
+ - @backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.3
59
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.3
60
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.3
61
+ - @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.3
62
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.7-next.3
63
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.3
64
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.3
65
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.3
66
+ - @backstage/plugin-catalog-node@1.6.2-next.3
67
+ - @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.0-next.2
68
+ - @backstage/plugin-auth-node@0.4.4-next.3
69
+ - @backstage/backend-plugin-api@0.6.10-next.3
70
+ - @backstage/catalog-client@1.6.0-next.1
71
+ - @backstage/catalog-model@1.4.4-next.0
72
+ - @backstage/config@1.1.1
73
+ - @backstage/errors@1.2.3
74
+ - @backstage/types@1.1.1
75
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.3
76
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.7-next.3
77
+
3
78
  ## 0.21.0-next.2
4
79
 
5
80
  ### Minor Changes
package/config.d.ts CHANGED
@@ -191,5 +191,9 @@ export interface Config {
191
191
  */
192
192
  backstageTokenExpiration?: HumanDuration;
193
193
  };
194
+ /**
195
+ * Additional app origins to allow for authenticating
196
+ */
197
+ experimentalExtraAllowedOrigins?: string[];
194
198
  };
195
199
  }