@backstage/plugin-auth-backend 0.0.0-nightly-20220923026 → 0.0.0-nightly-202202022734
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 +54 -0
- package/dist/index.cjs.js +937 -842
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +65 -31
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,59 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend
|
|
2
2
|
|
|
3
|
+
## 0.0.0-nightly-202202022734
|
|
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
|
+
- a53d7d8143: Update provider subs to return full entity ref.
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- f815b7e4a4: build(deps): bump `@google-cloud/firestore` from 4.15.1 to 5.0.2
|
|
17
|
+
- Updated dependencies
|
|
18
|
+
- @backstage/backend-common@0.0.0-nightly-202202022734
|
|
19
|
+
- @backstage/config@0.0.0-nightly-202202022734
|
|
20
|
+
- @backstage/catalog-model@0.0.0-nightly-202202022734
|
|
21
|
+
- @backstage/catalog-client@0.0.0-nightly-202202022734
|
|
22
|
+
|
|
23
|
+
## 0.7.0-next.0
|
|
24
|
+
|
|
25
|
+
### Minor Changes
|
|
26
|
+
|
|
27
|
+
- 6e92ee6267: Add new authentication provider to support the oauth2-proxy.
|
|
28
|
+
|
|
29
|
+
**BREAKING** The `AuthHandler` requires now an `AuthResolverContext` parameter. This aligns with the
|
|
30
|
+
behavior of the `SignInResolver`.
|
|
31
|
+
|
|
32
|
+
### Patch Changes
|
|
33
|
+
|
|
34
|
+
- Updated dependencies
|
|
35
|
+
- @backstage/backend-common@0.10.4-next.0
|
|
36
|
+
- @backstage/config@0.1.13-next.0
|
|
37
|
+
- @backstage/catalog-model@0.9.10-next.0
|
|
38
|
+
- @backstage/catalog-client@0.5.5-next.0
|
|
39
|
+
|
|
40
|
+
## 0.6.2
|
|
41
|
+
|
|
42
|
+
### Patch Changes
|
|
43
|
+
|
|
44
|
+
- 5333451def: Cleaned up API exports
|
|
45
|
+
- da9c59d6e0: Removed `@backstage/test-utils` dependency.
|
|
46
|
+
- 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.
|
|
47
|
+
|
|
48
|
+
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.
|
|
49
|
+
|
|
50
|
+
- Updated dependencies
|
|
51
|
+
- @backstage/config@0.1.12
|
|
52
|
+
- @backstage/backend-common@0.10.3
|
|
53
|
+
- @backstage/errors@0.2.0
|
|
54
|
+
- @backstage/catalog-client@0.5.4
|
|
55
|
+
- @backstage/catalog-model@0.9.9
|
|
56
|
+
|
|
3
57
|
## 0.6.1
|
|
4
58
|
|
|
5
59
|
### Patch Changes
|