@backstage/plugin-auth-backend 0.20.0 → 0.20.1-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,29 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.20.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - 2a5891e816: Migrate the atlassian auth provider to be implemented using the new `@backstage/plugin-auth-backend-module-atlassian-provider` module
8
+ - e1c189b524: The Okta provider implementation is moved to the new module
9
+ - Updated dependencies
10
+ - @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0-next.0
11
+ - @backstage/backend-common@0.20.0-next.0
12
+ - @backstage/plugin-auth-backend-module-okta-provider@0.0.1-next.0
13
+ - @backstage/plugin-auth-backend-module-github-provider@0.1.5-next.0
14
+ - @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5-next.0
15
+ - @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5-next.0
16
+ - @backstage/plugin-auth-node@0.4.2-next.0
17
+ - @backstage/plugin-catalog-node@1.5.1-next.0
18
+ - @backstage/plugin-auth-backend-module-google-provider@0.1.5-next.0
19
+ - @backstage/backend-plugin-api@0.6.8-next.0
20
+ - @backstage/catalog-client@1.4.6
21
+ - @backstage/catalog-model@1.4.3
22
+ - @backstage/config@1.1.1
23
+ - @backstage/errors@1.2.3
24
+ - @backstage/types@1.1.1
25
+ - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2-next.0
26
+
3
27
  ## 0.20.0
4
28
 
5
29
  ### Minor Changes
package/config.d.ts CHANGED
@@ -135,21 +135,6 @@ export interface Config {
135
135
  acceptedClockSkewMs?: number;
136
136
  };
137
137
  /** @visibility frontend */
138
- okta?: {
139
- [authEnv: string]: {
140
- clientId: string;
141
- /**
142
- * @visibility secret
143
- */
144
- clientSecret: string;
145
- audience: string;
146
- authServerId?: string;
147
- idp?: string;
148
- callbackUrl?: string;
149
- additionalScopes?: string;
150
- };
151
- };
152
- /** @visibility frontend */
153
138
  oauth2?: {
154
139
  [authEnv: string]: {
155
140
  clientId: string;