@backstage/plugin-auth-backend 0.22.4-next.1 → 0.22.4
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 +34 -0
- package/config.d.ts +0 -9
- package/dist/index.cjs.js +101 -509
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +25 -14
- package/package.json +23 -21
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,39 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
+
## 0.22.4
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- f02fe79: Refactored the `azure-easyauth` provider to use the implementation from `@backstage/plugin-auth-backend-module-azure-easyauth-provider`.
|
|
8
|
+
- d62bc51: Added token type header parameter and user identity proof to issued user tokens.
|
|
9
|
+
- ba763b6: Migrate the Bitbucket auth provider to the new `@backstage/plugin-auth-backend-module-bitbucket-provider` module package.
|
|
10
|
+
- bf4d71a: Initial implementation of the `/v1/userinfo` endpoint, which is now able to parse and return the `sub` and `ent` claims from a Backstage user token.
|
|
11
|
+
- c26218d: Deprecated some of the Cloudflare Access types and used the implementation from `@backstage/plugin-auth-backend-module-cloudflare-access-provider`
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/backend-common@0.21.7
|
|
14
|
+
- @backstage/plugin-auth-backend-module-atlassian-provider@0.1.9
|
|
15
|
+
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.0
|
|
16
|
+
- @backstage/backend-plugin-api@0.6.17
|
|
17
|
+
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.0
|
|
18
|
+
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.9
|
|
19
|
+
- @backstage/plugin-auth-node@0.4.12
|
|
20
|
+
- @backstage/plugin-auth-backend-module-oidc-provider@0.1.8
|
|
21
|
+
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.12
|
|
22
|
+
- @backstage/catalog-client@1.6.4
|
|
23
|
+
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.0
|
|
24
|
+
- @backstage/plugin-catalog-node@1.11.1
|
|
25
|
+
- @backstage/catalog-model@1.4.5
|
|
26
|
+
- @backstage/config@1.2.0
|
|
27
|
+
- @backstage/errors@1.2.4
|
|
28
|
+
- @backstage/types@1.1.1
|
|
29
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.1.14
|
|
30
|
+
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.14
|
|
31
|
+
- @backstage/plugin-auth-backend-module-google-provider@0.1.14
|
|
32
|
+
- @backstage/plugin-auth-backend-module-microsoft-provider@0.1.12
|
|
33
|
+
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.14
|
|
34
|
+
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.10
|
|
35
|
+
- @backstage/plugin-auth-backend-module-okta-provider@0.0.10
|
|
36
|
+
|
|
3
37
|
## 0.22.4-next.1
|
|
4
38
|
|
|
5
39
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -182,15 +182,6 @@ export interface Config {
|
|
|
182
182
|
iss?: string;
|
|
183
183
|
region: string;
|
|
184
184
|
};
|
|
185
|
-
/** @visibility frontend */
|
|
186
|
-
cfaccess?: {
|
|
187
|
-
teamName: string;
|
|
188
|
-
/** @deepVisibility secret */
|
|
189
|
-
serviceTokens?: Array<{
|
|
190
|
-
token: string;
|
|
191
|
-
subject: string;
|
|
192
|
-
}>;
|
|
193
|
-
};
|
|
194
185
|
/**
|
|
195
186
|
* The backstage token expiration.
|
|
196
187
|
*/
|