@backstage/plugin-auth-backend 0.18.6-next.1 → 0.18.6
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 +26 -0
- package/config.d.ts +12 -0
- package/dist/index.cjs.js +1 -0
- package/dist/index.cjs.js.map +1 -1
- package/package.json +5 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,31 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
+
## 0.18.6
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 16452cd007ae: Updated `frameHandler` to return `undefined` when using the redirect flow instead of returning `postMessageReponse` which was causing errors
|
|
8
|
+
- 9dad4b0e61bd: Updated config schema to match what was being used in code
|
|
9
|
+
- bb70a9c3886a: Add frontend visibility to provider objects in `auth` config.
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/backend-common@0.19.2
|
|
12
|
+
- @backstage/plugin-auth-node@0.2.17
|
|
13
|
+
- @backstage/catalog-client@1.4.3
|
|
14
|
+
- @backstage/catalog-model@1.4.1
|
|
15
|
+
- @backstage/config@1.0.8
|
|
16
|
+
- @backstage/errors@1.2.1
|
|
17
|
+
- @backstage/types@1.1.0
|
|
18
|
+
|
|
19
|
+
## 0.18.6-next.2
|
|
20
|
+
|
|
21
|
+
### Patch Changes
|
|
22
|
+
|
|
23
|
+
- 16452cd007ae: Updated `frameHandler` to return `undefined` when using the redirect flow instead of returning `postMessageReponse` which was causing errors
|
|
24
|
+
- bb70a9c3886a: Add frontend visibility to provider objects in `auth` config.
|
|
25
|
+
- Updated dependencies
|
|
26
|
+
- @backstage/backend-common@0.19.2-next.2
|
|
27
|
+
- @backstage/plugin-auth-node@0.2.17-next.2
|
|
28
|
+
|
|
3
29
|
## 0.18.6-next.1
|
|
4
30
|
|
|
5
31
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -62,6 +62,7 @@ export interface Config {
|
|
|
62
62
|
* @additionalProperties true
|
|
63
63
|
*/
|
|
64
64
|
providers?: {
|
|
65
|
+
/** @visibility frontend */
|
|
65
66
|
google?: {
|
|
66
67
|
[authEnv: string]: {
|
|
67
68
|
clientId: string;
|
|
@@ -72,6 +73,7 @@ export interface Config {
|
|
|
72
73
|
callbackUrl?: string;
|
|
73
74
|
};
|
|
74
75
|
};
|
|
76
|
+
/** @visibility frontend */
|
|
75
77
|
github?: {
|
|
76
78
|
[authEnv: string]: {
|
|
77
79
|
clientId: string;
|
|
@@ -83,6 +85,7 @@ export interface Config {
|
|
|
83
85
|
enterpriseInstanceUrl?: string;
|
|
84
86
|
};
|
|
85
87
|
};
|
|
88
|
+
/** @visibility frontend */
|
|
86
89
|
gitlab?: {
|
|
87
90
|
[authEnv: string]: {
|
|
88
91
|
clientId: string;
|
|
@@ -94,6 +97,7 @@ export interface Config {
|
|
|
94
97
|
callbackUrl?: string;
|
|
95
98
|
};
|
|
96
99
|
};
|
|
100
|
+
/** @visibility frontend */
|
|
97
101
|
saml?: {
|
|
98
102
|
entryPoint: string;
|
|
99
103
|
logoutUrl?: string;
|
|
@@ -117,6 +121,7 @@ export interface Config {
|
|
|
117
121
|
digestAlgorithm?: string;
|
|
118
122
|
acceptedClockSkewMs?: number;
|
|
119
123
|
};
|
|
124
|
+
/** @visibility frontend */
|
|
120
125
|
okta?: {
|
|
121
126
|
[authEnv: string]: {
|
|
122
127
|
clientId: string;
|
|
@@ -130,6 +135,7 @@ export interface Config {
|
|
|
130
135
|
callbackUrl?: string;
|
|
131
136
|
};
|
|
132
137
|
};
|
|
138
|
+
/** @visibility frontend */
|
|
133
139
|
oauth2?: {
|
|
134
140
|
[authEnv: string]: {
|
|
135
141
|
clientId: string;
|
|
@@ -143,6 +149,7 @@ export interface Config {
|
|
|
143
149
|
disableRefresh?: boolean;
|
|
144
150
|
};
|
|
145
151
|
};
|
|
152
|
+
/** @visibility frontend */
|
|
146
153
|
oidc?: {
|
|
147
154
|
[authEnv: string]: {
|
|
148
155
|
clientId: string;
|
|
@@ -158,6 +165,7 @@ export interface Config {
|
|
|
158
165
|
prompt?: string;
|
|
159
166
|
};
|
|
160
167
|
};
|
|
168
|
+
/** @visibility frontend */
|
|
161
169
|
auth0?: {
|
|
162
170
|
[authEnv: string]: {
|
|
163
171
|
clientId: string;
|
|
@@ -172,6 +180,7 @@ export interface Config {
|
|
|
172
180
|
connectionScope?: string;
|
|
173
181
|
};
|
|
174
182
|
};
|
|
183
|
+
/** @visibility frontend */
|
|
175
184
|
microsoft?: {
|
|
176
185
|
[authEnv: string]: {
|
|
177
186
|
clientId: string;
|
|
@@ -183,6 +192,7 @@ export interface Config {
|
|
|
183
192
|
callbackUrl?: string;
|
|
184
193
|
};
|
|
185
194
|
};
|
|
195
|
+
/** @visibility frontend */
|
|
186
196
|
onelogin?: {
|
|
187
197
|
[authEnv: string]: {
|
|
188
198
|
clientId: string;
|
|
@@ -194,10 +204,12 @@ export interface Config {
|
|
|
194
204
|
callbackUrl?: string;
|
|
195
205
|
};
|
|
196
206
|
};
|
|
207
|
+
/** @visibility frontend */
|
|
197
208
|
awsalb?: {
|
|
198
209
|
iss?: string;
|
|
199
210
|
region: string;
|
|
200
211
|
};
|
|
212
|
+
/** @visibility frontend */
|
|
201
213
|
cfaccess?: {
|
|
202
214
|
teamName: string;
|
|
203
215
|
};
|