@backstage/plugin-auth-backend 0.20.3 → 0.20.4-next.1
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 +52 -0
- package/config.d.ts +0 -28
- package/dist/index.cjs.js +77 -537
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +21 -19
- package/package.json +21 -19
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
+
## 0.20.4-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 23a98f8: Migrated the AWS ALB auth provider to new `@backstage/plugin-auth-backend-module-aws-alb-provider` module package.
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/catalog-model@1.4.4-next.0
|
|
10
|
+
- @backstage/catalog-client@1.6.0-next.1
|
|
11
|
+
- @backstage/backend-plugin-api@0.6.10-next.1
|
|
12
|
+
- @backstage/backend-common@0.21.0-next.1
|
|
13
|
+
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.0-next.0
|
|
14
|
+
- @backstage/config@1.1.1
|
|
15
|
+
- @backstage/errors@1.2.3
|
|
16
|
+
- @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.1
|
|
17
|
+
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.1
|
|
18
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.1.7-next.1
|
|
19
|
+
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.1
|
|
20
|
+
- @backstage/plugin-auth-backend-module-google-provider@0.1.7-next.1
|
|
21
|
+
- @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.1
|
|
22
|
+
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.1
|
|
23
|
+
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.1
|
|
24
|
+
- @backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.1
|
|
25
|
+
- @backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.1
|
|
26
|
+
- @backstage/plugin-auth-node@0.4.4-next.1
|
|
27
|
+
- @backstage/plugin-catalog-node@1.6.2-next.1
|
|
28
|
+
|
|
29
|
+
## 0.20.4-next.0
|
|
30
|
+
|
|
31
|
+
### Patch Changes
|
|
32
|
+
|
|
33
|
+
- a3f1fa3: Use the externalized `auth-backend-module-microsoft-provider` again.
|
|
34
|
+
- 5d2fcba: Migrated oidc auth provider to new `@backstage/plugin-auth-backend-module-oidc-provider` module package.
|
|
35
|
+
- Updated dependencies
|
|
36
|
+
- @backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.0
|
|
37
|
+
- @backstage/backend-common@0.21.0-next.0
|
|
38
|
+
- @backstage/catalog-client@1.6.0-next.0
|
|
39
|
+
- @backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.0
|
|
40
|
+
- @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.0
|
|
41
|
+
- @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.0
|
|
42
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.1.7-next.0
|
|
43
|
+
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.0
|
|
44
|
+
- @backstage/plugin-auth-backend-module-google-provider@0.1.7-next.0
|
|
45
|
+
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.0
|
|
46
|
+
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.0
|
|
47
|
+
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.0
|
|
48
|
+
- @backstage/plugin-auth-node@0.4.4-next.0
|
|
49
|
+
- @backstage/plugin-catalog-node@1.6.2-next.0
|
|
50
|
+
- @backstage/backend-plugin-api@0.6.10-next.0
|
|
51
|
+
- @backstage/catalog-model@1.4.3
|
|
52
|
+
- @backstage/config@1.1.1
|
|
53
|
+
- @backstage/errors@1.2.3
|
|
54
|
+
|
|
3
55
|
## 0.20.3
|
|
4
56
|
|
|
5
57
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -149,22 +149,6 @@ export interface Config {
|
|
|
149
149
|
};
|
|
150
150
|
};
|
|
151
151
|
/** @visibility frontend */
|
|
152
|
-
oidc?: {
|
|
153
|
-
[authEnv: string]: {
|
|
154
|
-
clientId: string;
|
|
155
|
-
/**
|
|
156
|
-
* @visibility secret
|
|
157
|
-
*/
|
|
158
|
-
clientSecret: string;
|
|
159
|
-
callbackUrl?: string;
|
|
160
|
-
metadataUrl: string;
|
|
161
|
-
tokenEndpointAuthMethod?: string;
|
|
162
|
-
tokenSignedResponseAlg?: string;
|
|
163
|
-
scope?: string;
|
|
164
|
-
prompt?: string;
|
|
165
|
-
};
|
|
166
|
-
};
|
|
167
|
-
/** @visibility frontend */
|
|
168
152
|
auth0?: {
|
|
169
153
|
[authEnv: string]: {
|
|
170
154
|
clientId: string;
|
|
@@ -180,18 +164,6 @@ export interface Config {
|
|
|
180
164
|
};
|
|
181
165
|
};
|
|
182
166
|
/** @visibility frontend */
|
|
183
|
-
microsoft?: {
|
|
184
|
-
[authEnv: string]: {
|
|
185
|
-
clientId: string;
|
|
186
|
-
/**
|
|
187
|
-
* @visibility secret
|
|
188
|
-
*/
|
|
189
|
-
clientSecret: string;
|
|
190
|
-
tenantId: string;
|
|
191
|
-
callbackUrl?: string;
|
|
192
|
-
};
|
|
193
|
-
};
|
|
194
|
-
/** @visibility frontend */
|
|
195
167
|
onelogin?: {
|
|
196
168
|
[authEnv: string]: {
|
|
197
169
|
clientId: string;
|