@backstage/plugin-auth-backend 0.21.0-next.3 → 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 +48 -0
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +85 -85
- package/package.json +22 -22
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,53 @@
|
|
|
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
|
+
|
|
3
51
|
## 0.21.0-next.3
|
|
4
52
|
|
|
5
53
|
### Patch Changes
|