@backstage/plugin-auth-backend 0.20.3-next.2 → 0.20.4-next.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,55 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.20.4-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - a3f1fa3: Use the externalized `auth-backend-module-microsoft-provider` again.
8
+ - 5d2fcba: Migrated oidc auth provider to new `@backstage/plugin-auth-backend-module-oidc-provider` module package.
9
+ - Updated dependencies
10
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.0
11
+ - @backstage/backend-common@0.21.0-next.0
12
+ - @backstage/catalog-client@1.6.0-next.0
13
+ - @backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.0
14
+ - @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.0
15
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.0
16
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.7-next.0
17
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.0
18
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.7-next.0
19
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.0
20
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.0
21
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.0
22
+ - @backstage/plugin-auth-node@0.4.4-next.0
23
+ - @backstage/plugin-catalog-node@1.6.2-next.0
24
+ - @backstage/backend-plugin-api@0.6.10-next.0
25
+ - @backstage/catalog-model@1.4.3
26
+ - @backstage/config@1.1.1
27
+ - @backstage/errors@1.2.3
28
+
29
+ ## 0.20.3
30
+
31
+ ### Patch Changes
32
+
33
+ - 004499c: Fixed an issue where some Okta's resolvers were missing
34
+ - 4016f21: Remove some unused dependencies
35
+ - Updated dependencies
36
+ - @backstage/backend-common@0.20.1
37
+ - @backstage/catalog-client@1.5.2
38
+ - @backstage/backend-plugin-api@0.6.9
39
+ - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.1
40
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.1
41
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.3
42
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.6
43
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.6
44
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.6
45
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.6
46
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.2
47
+ - @backstage/plugin-catalog-node@1.6.1
48
+ - @backstage/plugin-auth-node@0.4.3
49
+ - @backstage/catalog-model@1.4.3
50
+ - @backstage/config@1.1.1
51
+ - @backstage/errors@1.2.3
52
+
3
53
  ## 0.20.3-next.2
4
54
 
5
55
  ### 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;