@backstage/plugin-auth-backend 0.6.0 → 0.7.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 +63 -0
- package/dist/index.cjs.js +821 -630
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +158 -46
- package/package.json +14 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,68 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
+
## 0.7.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 6e92ee6267: Add new authentication provider to support the oauth2-proxy.
|
|
8
|
+
|
|
9
|
+
**BREAKING** The `AuthHandler` requires now an `AuthResolverContext` parameter. This aligns with the
|
|
10
|
+
behavior of the `SignInResolver`.
|
|
11
|
+
|
|
12
|
+
- f8496730ab: Switched the handling of the `BackstageIdentityResponse` so that the returned `identity.userEntityRef` is always a full entity reference. If `userEntityRef` was previously set to `jane`, it will now be `user:default/jane`. The `userEntityRef` in the response is parsed from the `sub` claim in the payload of the Backstage token.
|
|
13
|
+
- a53d7d8143: Update provider subs to return full entity ref.
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- f815b7e4a4: build(deps): bump `@google-cloud/firestore` from 4.15.1 to 5.0.2
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/backend-common@0.10.4
|
|
20
|
+
- @backstage/config@0.1.13
|
|
21
|
+
- @backstage/catalog-model@0.9.10
|
|
22
|
+
- @backstage/catalog-client@0.5.5
|
|
23
|
+
|
|
24
|
+
## 0.7.0-next.0
|
|
25
|
+
|
|
26
|
+
### Minor Changes
|
|
27
|
+
|
|
28
|
+
- 6e92ee6267: Add new authentication provider to support the oauth2-proxy.
|
|
29
|
+
|
|
30
|
+
**BREAKING** The `AuthHandler` requires now an `AuthResolverContext` parameter. This aligns with the
|
|
31
|
+
behavior of the `SignInResolver`.
|
|
32
|
+
|
|
33
|
+
### Patch Changes
|
|
34
|
+
|
|
35
|
+
- Updated dependencies
|
|
36
|
+
- @backstage/backend-common@0.10.4-next.0
|
|
37
|
+
- @backstage/config@0.1.13-next.0
|
|
38
|
+
- @backstage/catalog-model@0.9.10-next.0
|
|
39
|
+
- @backstage/catalog-client@0.5.5-next.0
|
|
40
|
+
|
|
41
|
+
## 0.6.2
|
|
42
|
+
|
|
43
|
+
### Patch Changes
|
|
44
|
+
|
|
45
|
+
- 5333451def: Cleaned up API exports
|
|
46
|
+
- da9c59d6e0: Removed `@backstage/test-utils` dependency.
|
|
47
|
+
- 20ca7cfa5f: Switched the secure cookie mode set on the `express-session` to use `'auto'` rather than `true`. This works around an issue where cookies would not be set if TLS termination was handled in a proxy rather than having the backend served directly with HTTPS.
|
|
48
|
+
|
|
49
|
+
The downside of this change is that secure cookies won't be used unless the backend is directly served with HTTPS. This will be remedied in a future update that allows the backend to configured for trusted proxy mode.
|
|
50
|
+
|
|
51
|
+
- Updated dependencies
|
|
52
|
+
- @backstage/config@0.1.12
|
|
53
|
+
- @backstage/backend-common@0.10.3
|
|
54
|
+
- @backstage/errors@0.2.0
|
|
55
|
+
- @backstage/catalog-client@0.5.4
|
|
56
|
+
- @backstage/catalog-model@0.9.9
|
|
57
|
+
|
|
58
|
+
## 0.6.1
|
|
59
|
+
|
|
60
|
+
### Patch Changes
|
|
61
|
+
|
|
62
|
+
- e0e57817d2: Added Google Cloud Identity-Aware Proxy as an identity provider.
|
|
63
|
+
- Updated dependencies
|
|
64
|
+
- @backstage/backend-common@0.10.2
|
|
65
|
+
|
|
3
66
|
## 0.6.0
|
|
4
67
|
|
|
5
68
|
### Minor Changes
|