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