@backstage/plugin-auth-backend 0.20.0-next.2 → 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 +52 -0
- package/config.d.ts +0 -14
- package/dist/index.cjs.js +179 -510
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +0 -2
- package/package.json +16 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,57 @@
|
|
|
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
|
+
|
|
27
|
+
## 0.20.0
|
|
28
|
+
|
|
29
|
+
### Minor Changes
|
|
30
|
+
|
|
31
|
+
- bdf08ad04a: Adds the StaticTokenIssuer and StaticKeyStore, an alternative token issuer that can be used to sign the Authorization header using a predefined public/private key pair.
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- 243c655a68: JSDoc and Error message updates to handle `Azure Active Directory` re-brand to `Entra ID`
|
|
36
|
+
- 013611b42e: `knex` has been bumped to major version 3 and `better-sqlite3` to major version 9, which deprecate node 16 support.
|
|
37
|
+
- f2fc5acca6: Added an optional `additionalScopes` configuration parameter to `okta` providers, that lets you add additional scopes on top of the default ones.
|
|
38
|
+
- 96c4f54bf6: Reverted the Microsoft auth provider to the previous implementation.
|
|
39
|
+
- Updated dependencies
|
|
40
|
+
- @backstage/plugin-catalog-node@1.5.0
|
|
41
|
+
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.4
|
|
42
|
+
- @backstage/backend-common@0.19.9
|
|
43
|
+
- @backstage/backend-plugin-api@0.6.7
|
|
44
|
+
- @backstage/catalog-client@1.4.6
|
|
45
|
+
- @backstage/catalog-model@1.4.3
|
|
46
|
+
- @backstage/config@1.1.1
|
|
47
|
+
- @backstage/errors@1.2.3
|
|
48
|
+
- @backstage/types@1.1.1
|
|
49
|
+
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.1
|
|
50
|
+
- @backstage/plugin-auth-backend-module-github-provider@0.1.4
|
|
51
|
+
- @backstage/plugin-auth-backend-module-google-provider@0.1.4
|
|
52
|
+
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.4
|
|
53
|
+
- @backstage/plugin-auth-node@0.4.1
|
|
54
|
+
|
|
3
55
|
## 0.20.0-next.2
|
|
4
56
|
|
|
5
57
|
### Patch Changes
|
package/config.d.ts
CHANGED
|
@@ -135,20 +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
|
-
};
|
|
150
|
-
};
|
|
151
|
-
/** @visibility frontend */
|
|
152
138
|
oauth2?: {
|
|
153
139
|
[authEnv: string]: {
|
|
154
140
|
clientId: string;
|