@backstage/plugin-auth-backend 0.22.5-next.1 → 0.22.5
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 +40 -0
- package/config.d.ts +0 -42
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +2 -1
- package/package.json +24 -24
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,45 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
+
## 0.22.5
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- d229dc4: Move path utilities from `backend-common` to the `backend-plugin-api` package.
|
|
8
|
+
- 4a0577e: fix: Move config declarations to appropriate auth backend modules
|
|
9
|
+
- ea9262b: Allow overriding default ownership resolving with the new `AuthOwnershipResolutionExtensionPoint`
|
|
10
|
+
- Updated dependencies
|
|
11
|
+
- @backstage/plugin-catalog-node@1.12.0
|
|
12
|
+
- @backstage/catalog-model@1.5.0
|
|
13
|
+
- @backstage/backend-common@0.22.0
|
|
14
|
+
- @backstage/backend-plugin-api@0.6.18
|
|
15
|
+
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.10
|
|
16
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.1.15
|
|
17
|
+
- @backstage/plugin-auth-backend-module-oidc-provider@0.1.9
|
|
18
|
+
- @backstage/plugin-auth-node@0.4.13
|
|
19
|
+
- @backstage/catalog-client@1.6.5
|
|
20
|
+
- @backstage/plugin-auth-backend-module-atlassian-provider@0.1.10
|
|
21
|
+
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.1
|
|
22
|
+
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.1
|
|
23
|
+
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.1
|
|
24
|
+
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.13
|
|
25
|
+
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.15
|
|
26
|
+
- @backstage/plugin-auth-backend-module-google-provider@0.1.15
|
|
27
|
+
- @backstage/plugin-auth-backend-module-microsoft-provider@0.1.13
|
|
28
|
+
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.15
|
|
29
|
+
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.11
|
|
30
|
+
- @backstage/plugin-auth-backend-module-okta-provider@0.0.11
|
|
31
|
+
|
|
32
|
+
## 0.22.5-next.2
|
|
33
|
+
|
|
34
|
+
### Patch Changes
|
|
35
|
+
|
|
36
|
+
- 4a0577e: fix: Move config declarations to appropriate auth backend modules
|
|
37
|
+
- Updated dependencies
|
|
38
|
+
- @backstage/plugin-catalog-node@1.12.0-next.2
|
|
39
|
+
- @backstage/backend-common@0.22.0-next.2
|
|
40
|
+
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.10-next.2
|
|
41
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.1.15-next.2
|
|
42
|
+
|
|
3
43
|
## 0.22.5-next.1
|
|
4
44
|
|
|
5
45
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -89,29 +89,6 @@ export interface Config {
|
|
|
89
89
|
* @additionalProperties true
|
|
90
90
|
*/
|
|
91
91
|
providers?: {
|
|
92
|
-
/** @visibility frontend */
|
|
93
|
-
google?: {
|
|
94
|
-
[authEnv: string]: {
|
|
95
|
-
clientId: string;
|
|
96
|
-
/**
|
|
97
|
-
* @visibility secret
|
|
98
|
-
*/
|
|
99
|
-
clientSecret: string;
|
|
100
|
-
callbackUrl?: string;
|
|
101
|
-
};
|
|
102
|
-
};
|
|
103
|
-
/** @visibility frontend */
|
|
104
|
-
github?: {
|
|
105
|
-
[authEnv: string]: {
|
|
106
|
-
clientId: string;
|
|
107
|
-
/**
|
|
108
|
-
* @visibility secret
|
|
109
|
-
*/
|
|
110
|
-
clientSecret: string;
|
|
111
|
-
callbackUrl?: string;
|
|
112
|
-
enterpriseInstanceUrl?: string;
|
|
113
|
-
};
|
|
114
|
-
};
|
|
115
92
|
/** @visibility frontend */
|
|
116
93
|
saml?: {
|
|
117
94
|
entryPoint: string;
|
|
@@ -137,20 +114,6 @@ export interface Config {
|
|
|
137
114
|
acceptedClockSkewMs?: number;
|
|
138
115
|
};
|
|
139
116
|
/** @visibility frontend */
|
|
140
|
-
oauth2?: {
|
|
141
|
-
[authEnv: string]: {
|
|
142
|
-
clientId: string;
|
|
143
|
-
/**
|
|
144
|
-
* @visibility secret
|
|
145
|
-
*/
|
|
146
|
-
clientSecret: string;
|
|
147
|
-
authorizationUrl: string;
|
|
148
|
-
tokenUrl: string;
|
|
149
|
-
scope?: string;
|
|
150
|
-
disableRefresh?: boolean;
|
|
151
|
-
};
|
|
152
|
-
};
|
|
153
|
-
/** @visibility frontend */
|
|
154
117
|
auth0?: {
|
|
155
118
|
[authEnv: string]: {
|
|
156
119
|
clientId: string;
|
|
@@ -177,11 +140,6 @@ export interface Config {
|
|
|
177
140
|
callbackUrl?: string;
|
|
178
141
|
};
|
|
179
142
|
};
|
|
180
|
-
/** @visibility frontend */
|
|
181
|
-
awsalb?: {
|
|
182
|
-
iss?: string;
|
|
183
|
-
region: string;
|
|
184
|
-
};
|
|
185
143
|
/**
|
|
186
144
|
* The backstage token expiration.
|
|
187
145
|
*/
|
package/dist/index.cjs.js
CHANGED
|
@@ -2280,7 +2280,7 @@ var __privateSet = (obj, member, value, setter) => {
|
|
|
2280
2280
|
return value;
|
|
2281
2281
|
};
|
|
2282
2282
|
var _database, _promise;
|
|
2283
|
-
const migrationsDir =
|
|
2283
|
+
const migrationsDir = backendPluginApi.resolvePackagePath(
|
|
2284
2284
|
"@backstage/plugin-auth-backend",
|
|
2285
2285
|
"migrations"
|
|
2286
2286
|
);
|