@backstage/plugin-auth-backend 0.20.0 → 0.20.1-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 +49 -0
- package/config.d.ts +0 -15
- package/dist/index.cjs.js +179 -592
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +6 -42
- package/package.json +18 -16
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,54 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
+
## 0.20.1-next.1
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 7ac25759a5: `oauth2-proxy` auth implementation has been moved to `@backstage/plugin-auth-backend-module-oauth2-proxy-provider`
|
|
8
|
+
- bcbbf8e042: Updated dependency `@google-cloud/firestore` to `^7.0.0`.
|
|
9
|
+
- Updated dependencies
|
|
10
|
+
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.0-next.0
|
|
11
|
+
- @backstage/catalog-client@1.5.0-next.0
|
|
12
|
+
- @backstage/backend-common@0.20.0-next.1
|
|
13
|
+
- @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0-next.1
|
|
14
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.1.5-next.1
|
|
15
|
+
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5-next.1
|
|
16
|
+
- @backstage/plugin-auth-backend-module-google-provider@0.1.5-next.1
|
|
17
|
+
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5-next.1
|
|
18
|
+
- @backstage/plugin-auth-backend-module-okta-provider@0.0.1-next.1
|
|
19
|
+
- @backstage/backend-plugin-api@0.6.8-next.1
|
|
20
|
+
- @backstage/catalog-model@1.4.3
|
|
21
|
+
- @backstage/config@1.1.1
|
|
22
|
+
- @backstage/errors@1.2.3
|
|
23
|
+
- @backstage/types@1.1.1
|
|
24
|
+
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2-next.1
|
|
25
|
+
- @backstage/plugin-auth-node@0.4.2-next.1
|
|
26
|
+
- @backstage/plugin-catalog-node@1.5.1-next.1
|
|
27
|
+
|
|
28
|
+
## 0.20.1-next.0
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- 2a5891e816: Migrate the atlassian auth provider to be implemented using the new `@backstage/plugin-auth-backend-module-atlassian-provider` module
|
|
33
|
+
- e1c189b524: The Okta provider implementation is moved to the new module
|
|
34
|
+
- Updated dependencies
|
|
35
|
+
- @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0-next.0
|
|
36
|
+
- @backstage/backend-common@0.20.0-next.0
|
|
37
|
+
- @backstage/plugin-auth-backend-module-okta-provider@0.0.1-next.0
|
|
38
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.1.5-next.0
|
|
39
|
+
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5-next.0
|
|
40
|
+
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5-next.0
|
|
41
|
+
- @backstage/plugin-auth-node@0.4.2-next.0
|
|
42
|
+
- @backstage/plugin-catalog-node@1.5.1-next.0
|
|
43
|
+
- @backstage/plugin-auth-backend-module-google-provider@0.1.5-next.0
|
|
44
|
+
- @backstage/backend-plugin-api@0.6.8-next.0
|
|
45
|
+
- @backstage/catalog-client@1.4.6
|
|
46
|
+
- @backstage/catalog-model@1.4.3
|
|
47
|
+
- @backstage/config@1.1.1
|
|
48
|
+
- @backstage/errors@1.2.3
|
|
49
|
+
- @backstage/types@1.1.1
|
|
50
|
+
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2-next.0
|
|
51
|
+
|
|
3
52
|
## 0.20.0
|
|
4
53
|
|
|
5
54
|
### 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;
|