@backstage/plugin-user-settings 0.5.0-next.1 → 0.5.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 +37 -0
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,42 @@
|
|
|
1
1
|
# @backstage/plugin-user-settings
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- 5543e86660: **BREAKING**: The `apiRef` passed to `ProviderSettingsItem` now needs to
|
|
8
|
+
implement `ProfileInfoApi & SessionApi`, rather than just the latter. This is
|
|
9
|
+
unlikely to have an effect on most users though, since the builtin auth
|
|
10
|
+
providers generally implement both.
|
|
11
|
+
|
|
12
|
+
Fixed settings page showing providers as logged out when the user is using more
|
|
13
|
+
than one provider, and displayed some additional login information.
|
|
14
|
+
|
|
15
|
+
### Patch Changes
|
|
16
|
+
|
|
17
|
+
- 06d61d1266: Handle errors that may occur when the user logs out
|
|
18
|
+
- 44c9a95dcf: Prevent `.set()` to execute a request to the StorageClient if the user is `guest`
|
|
19
|
+
- 174f02a00a: Update installation instructions
|
|
20
|
+
- Updated dependencies
|
|
21
|
+
- @backstage/core-components@0.11.2
|
|
22
|
+
- @backstage/core-app-api@1.1.1
|
|
23
|
+
- @backstage/core-plugin-api@1.0.7
|
|
24
|
+
- @backstage/errors@1.1.2
|
|
25
|
+
- @backstage/theme@0.2.16
|
|
26
|
+
- @backstage/types@1.0.0
|
|
27
|
+
|
|
28
|
+
## 0.5.0-next.2
|
|
29
|
+
|
|
30
|
+
### Patch Changes
|
|
31
|
+
|
|
32
|
+
- Updated dependencies
|
|
33
|
+
- @backstage/core-app-api@1.1.1-next.2
|
|
34
|
+
- @backstage/core-components@0.11.2-next.2
|
|
35
|
+
- @backstage/core-plugin-api@1.0.7-next.2
|
|
36
|
+
- @backstage/errors@1.1.2-next.2
|
|
37
|
+
- @backstage/theme@0.2.16
|
|
38
|
+
- @backstage/types@1.0.0
|
|
39
|
+
|
|
3
40
|
## 0.5.0-next.1
|
|
4
41
|
|
|
5
42
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-user-settings",
|
|
3
3
|
"description": "A Backstage plugin that provides a settings page",
|
|
4
|
-
"version": "0.5.0
|
|
4
|
+
"version": "0.5.0",
|
|
5
5
|
"main": "dist/index.esm.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -32,10 +32,10 @@
|
|
|
32
32
|
"clean": "backstage-cli package clean"
|
|
33
33
|
},
|
|
34
34
|
"dependencies": {
|
|
35
|
-
"@backstage/core-app-api": "^1.1.1
|
|
36
|
-
"@backstage/core-components": "^0.11.2
|
|
37
|
-
"@backstage/core-plugin-api": "^1.0.7
|
|
38
|
-
"@backstage/errors": "^1.1.2
|
|
35
|
+
"@backstage/core-app-api": "^1.1.1",
|
|
36
|
+
"@backstage/core-components": "^0.11.2",
|
|
37
|
+
"@backstage/core-plugin-api": "^1.0.7",
|
|
38
|
+
"@backstage/errors": "^1.1.2",
|
|
39
39
|
"@backstage/theme": "^0.2.16",
|
|
40
40
|
"@backstage/types": "^1.0.0",
|
|
41
41
|
"@material-ui/core": "^4.12.2",
|
|
@@ -50,9 +50,9 @@
|
|
|
50
50
|
"react-router": "6.0.0-beta.0 || ^6.3.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@backstage/cli": "^0.20.0
|
|
54
|
-
"@backstage/dev-utils": "^1.0.7
|
|
55
|
-
"@backstage/test-utils": "^1.2.1
|
|
53
|
+
"@backstage/cli": "^0.20.0",
|
|
54
|
+
"@backstage/dev-utils": "^1.0.7",
|
|
55
|
+
"@backstage/test-utils": "^1.2.1",
|
|
56
56
|
"@testing-library/jest-dom": "^5.10.1",
|
|
57
57
|
"@testing-library/react": "^12.1.3",
|
|
58
58
|
"@testing-library/user-event": "^14.0.0",
|