@backstage/plugin-user-settings-backend 0.0.0-nightly-20220926030152 → 0.0.0-nightly-20220928030111

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 CHANGED
@@ -1,15 +1,28 @@
1
1
  # @backstage/plugin-user-settings-backend
2
2
 
3
- ## 0.0.0-nightly-20220926030152
3
+ ## 0.0.0-nightly-20220928030111
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 82ac9bcfe5: Fix wrong import statement in `README.md`.
7
8
  - Updated dependencies
8
- - @backstage/catalog-model@0.0.0-nightly-20220926030152
9
- - @backstage/backend-common@0.0.0-nightly-20220926030152
10
- - @backstage/errors@0.0.0-nightly-20220926030152
9
+ - @backstage/catalog-model@0.0.0-nightly-20220928030111
10
+ - @backstage/backend-common@0.0.0-nightly-20220928030111
11
+ - @backstage/plugin-auth-node@0.0.0-nightly-20220928030111
12
+ - @backstage/errors@0.0.0-nightly-20220928030111
13
+ - @backstage/types@1.0.0
14
+
15
+ ## 0.1.1-next.0
16
+
17
+ ### Patch Changes
18
+
19
+ - 82ac9bcfe5: Fix wrong import statement in `README.md`.
20
+ - Updated dependencies
21
+ - @backstage/catalog-model@1.1.2-next.0
22
+ - @backstage/backend-common@0.15.2-next.0
23
+ - @backstage/plugin-auth-node@0.2.6-next.0
24
+ - @backstage/errors@1.1.2-next.0
11
25
  - @backstage/types@1.0.0
12
- - @backstage/plugin-auth-node@0.0.0-nightly-20220926030152
13
26
 
14
27
  ## 0.1.0
15
28
 
package/README.md CHANGED
@@ -54,7 +54,7 @@ To make use of the user settings backend, replace the `WebStorage` with the
54
54
  + discoveryApiRef,
55
55
  + fetchApiRef,
56
56
  errorApiRef,
57
- + identityApi,
57
+ + identityApiRef,
58
58
  + storageApiRef,
59
59
  } from '@backstage/core-plugin-api';
60
60
  +import { UserSettingsStorage } from '@backstage/plugin-user-settings';
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-user-settings-backend",
3
3
  "description": "The Backstage backend plugin to manage user settings",
4
- "version": "0.0.0-nightly-20220926030152",
4
+ "version": "0.0.0-nightly-20220928030111",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -28,10 +28,10 @@
28
28
  "clean": "backstage-cli package clean"
29
29
  },
30
30
  "dependencies": {
31
- "@backstage/backend-common": "^0.0.0-nightly-20220926030152",
32
- "@backstage/catalog-model": "^0.0.0-nightly-20220926030152",
33
- "@backstage/errors": "^0.0.0-nightly-20220926030152",
34
- "@backstage/plugin-auth-node": "^0.0.0-nightly-20220926030152",
31
+ "@backstage/backend-common": "^0.0.0-nightly-20220928030111",
32
+ "@backstage/catalog-model": "^0.0.0-nightly-20220928030111",
33
+ "@backstage/errors": "^0.0.0-nightly-20220928030111",
34
+ "@backstage/plugin-auth-node": "^0.0.0-nightly-20220928030111",
35
35
  "@backstage/types": "^1.0.0",
36
36
  "@types/express": "^4.17.6",
37
37
  "express": "^4.17.1",
@@ -41,8 +41,8 @@
41
41
  "yn": "^4.0.0"
42
42
  },
43
43
  "devDependencies": {
44
- "@backstage/backend-test-utils": "^0.0.0-nightly-20220926030152",
45
- "@backstage/cli": "^0.0.0-nightly-20220926030152",
44
+ "@backstage/backend-test-utils": "^0.0.0-nightly-20220928030111",
45
+ "@backstage/cli": "^0.0.0-nightly-20220928030111",
46
46
  "@types/supertest": "^2.0.8",
47
47
  "supertest": "^6.1.3"
48
48
  },