@backstage/plugin-user-settings-backend 0.2.12 → 0.2.13-next.1

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,31 +1,28 @@
1
1
  # @backstage/plugin-user-settings-backend
2
2
 
3
- ## 0.2.12
3
+ ## 0.2.13-next.1
4
4
 
5
5
  ### Patch Changes
6
6
 
7
7
  - Updated dependencies
8
- - @backstage/backend-common@0.21.3
9
- - @backstage/plugin-auth-node@0.4.8
10
- - @backstage/backend-plugin-api@0.6.13
11
-
12
- ## 0.2.11
13
-
14
- ### Patch Changes
15
-
16
- - Updated dependencies
17
- - @backstage/backend-common@0.21.2
18
- - @backstage/plugin-auth-node@0.4.7
19
- - @backstage/backend-plugin-api@0.6.12
8
+ - @backstage/config@1.2.0-next.1
9
+ - @backstage/backend-common@0.21.4-next.1
10
+ - @backstage/backend-plugin-api@0.6.14-next.1
11
+ - @backstage/plugin-auth-node@0.4.9-next.1
12
+ - @backstage/errors@1.2.4-next.0
13
+ - @backstage/types@1.1.1
20
14
 
21
- ## 0.2.10
15
+ ## 0.2.12-next.0
22
16
 
23
17
  ### Patch Changes
24
18
 
25
19
  - Updated dependencies
26
- - @backstage/backend-common@0.21.1
27
- - @backstage/plugin-auth-node@0.4.6
28
- - @backstage/backend-plugin-api@0.6.11
20
+ - @backstage/backend-common@0.21.3-next.0
21
+ - @backstage/plugin-auth-node@0.4.8-next.0
22
+ - @backstage/errors@1.2.4-next.0
23
+ - @backstage/backend-plugin-api@0.6.13-next.0
24
+ - @backstage/config@1.1.2-next.0
25
+ - @backstage/types@1.1.1
29
26
 
30
27
  ## 0.2.9
31
28
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-user-settings-backend",
3
- "version": "0.2.12",
3
+ "version": "0.2.13-next.1",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,16 +1,20 @@
1
1
  {
2
2
  "name": "@backstage/plugin-user-settings-backend",
3
+ "version": "0.2.13-next.1",
3
4
  "description": "The Backstage backend plugin to manage user settings",
4
- "version": "0.2.12",
5
- "main": "./dist/index.cjs.js",
6
- "types": "./dist/index.d.ts",
7
- "license": "Apache-2.0",
8
5
  "backstage": {
9
6
  "role": "backend-plugin"
10
7
  },
11
8
  "publishConfig": {
12
9
  "access": "public"
13
10
  },
11
+ "homepage": "https://backstage.io",
12
+ "repository": {
13
+ "type": "git",
14
+ "url": "https://github.com/backstage/backstage",
15
+ "directory": "plugins/user-settings-backend"
16
+ },
17
+ "license": "Apache-2.0",
14
18
  "exports": {
15
19
  ".": {
16
20
  "require": "./dist/index.cjs.js",
@@ -24,27 +28,28 @@
24
28
  },
25
29
  "./package.json": "./package.json"
26
30
  },
27
- "homepage": "https://backstage.io",
28
- "repository": {
29
- "type": "git",
30
- "url": "https://github.com/backstage/backstage",
31
- "directory": "plugins/user-settings-backend"
32
- },
31
+ "main": "./dist/index.cjs.js",
32
+ "types": "./dist/index.d.ts",
33
+ "files": [
34
+ "dist",
35
+ "migrations",
36
+ "alpha"
37
+ ],
33
38
  "scripts": {
34
- "start": "backstage-cli package start",
35
39
  "build": "backstage-cli package build",
40
+ "clean": "backstage-cli package clean",
36
41
  "lint": "backstage-cli package lint",
37
- "test": "backstage-cli package test",
38
42
  "prepack": "backstage-cli package prepack",
39
43
  "postpack": "backstage-cli package postpack",
40
- "clean": "backstage-cli package clean"
44
+ "start": "backstage-cli package start",
45
+ "test": "backstage-cli package test"
41
46
  },
42
47
  "dependencies": {
43
- "@backstage/backend-common": "^0.21.3",
44
- "@backstage/backend-plugin-api": "^0.6.13",
45
- "@backstage/config": "^1.1.1",
46
- "@backstage/errors": "^1.2.3",
47
- "@backstage/plugin-auth-node": "^0.4.8",
48
+ "@backstage/backend-common": "^0.21.4-next.1",
49
+ "@backstage/backend-plugin-api": "^0.6.14-next.1",
50
+ "@backstage/config": "^1.2.0-next.1",
51
+ "@backstage/errors": "^1.2.4-next.0",
52
+ "@backstage/plugin-auth-node": "^0.4.9-next.1",
48
53
  "@backstage/types": "^1.1.1",
49
54
  "@types/express": "^4.17.6",
50
55
  "express": "^4.17.1",
@@ -54,14 +59,9 @@
54
59
  "yn": "^4.0.0"
55
60
  },
56
61
  "devDependencies": {
57
- "@backstage/backend-test-utils": "^0.3.3",
58
- "@backstage/cli": "^0.25.2",
62
+ "@backstage/backend-test-utils": "^0.3.4-next.1",
63
+ "@backstage/cli": "^0.25.3-next.1",
59
64
  "@types/supertest": "^2.0.8",
60
65
  "supertest": "^6.1.3"
61
- },
62
- "files": [
63
- "dist",
64
- "migrations",
65
- "alpha"
66
- ]
66
+ }
67
67
  }