@backstage/plugin-user-settings-backend 0.3.0-next.1 → 0.3.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 +32 -0
  2. package/package.json +11 -18
package/CHANGELOG.md CHANGED
@@ -1,5 +1,37 @@
1
1
  # @backstage/plugin-user-settings-backend
2
2
 
3
+ ## 0.3.0
4
+
5
+ ### Minor Changes
6
+
7
+ - e202017: **BREAKING**: Removed support for the old backend system.
8
+
9
+ As part of this change the plugin export from `/alpha` as been removed. If you are currently importing `@backstage/plugin-user-settings-backend/alpha`, please update your import to `@backstage/plugin-user-settings-backend`.
10
+
11
+ ### Patch Changes
12
+
13
+ - Updated dependencies
14
+ - @backstage/backend-defaults@0.8.2
15
+ - @backstage/plugin-auth-node@0.6.1
16
+ - @backstage/backend-plugin-api@1.2.1
17
+ - @backstage/errors@1.2.7
18
+ - @backstage/types@1.2.1
19
+ - @backstage/plugin-signals-node@0.1.18
20
+ - @backstage/plugin-user-settings-common@0.0.1
21
+
22
+ ## 0.3.0-next.2
23
+
24
+ ### Patch Changes
25
+
26
+ - Updated dependencies
27
+ - @backstage/backend-defaults@0.8.2-next.2
28
+ - @backstage/backend-plugin-api@1.2.1-next.1
29
+ - @backstage/errors@1.2.7
30
+ - @backstage/types@1.2.1
31
+ - @backstage/plugin-auth-node@0.6.1-next.1
32
+ - @backstage/plugin-signals-node@0.1.18-next.2
33
+ - @backstage/plugin-user-settings-common@0.0.1
34
+
3
35
  ## 0.3.0-next.1
4
36
 
5
37
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-user-settings-backend",
3
- "version": "0.3.0-next.1",
3
+ "version": "0.3.0",
4
4
  "description": "The Backstage backend plugin to manage user settings",
5
5
  "backstage": {
6
6
  "role": "backend-plugin",
@@ -35,13 +35,6 @@
35
35
  },
36
36
  "main": "./dist/index.cjs.js",
37
37
  "types": "./dist/index.d.ts",
38
- "typesVersions": {
39
- "*": {
40
- "index": [
41
- "dist/index.d.ts"
42
- ]
43
- }
44
- },
45
38
  "files": [
46
39
  "dist",
47
40
  "migrations"
@@ -56,21 +49,21 @@
56
49
  "test": "backstage-cli package test"
57
50
  },
58
51
  "dependencies": {
59
- "@backstage/backend-defaults": "0.8.2-next.1",
60
- "@backstage/backend-plugin-api": "1.2.1-next.1",
61
- "@backstage/errors": "1.2.7",
62
- "@backstage/plugin-auth-node": "0.6.1-next.1",
63
- "@backstage/plugin-signals-node": "0.1.18-next.1",
64
- "@backstage/plugin-user-settings-common": "0.0.1",
65
- "@backstage/types": "1.2.1",
52
+ "@backstage/backend-defaults": "^0.8.2",
53
+ "@backstage/backend-plugin-api": "^1.2.1",
54
+ "@backstage/errors": "^1.2.7",
55
+ "@backstage/plugin-auth-node": "^0.6.1",
56
+ "@backstage/plugin-signals-node": "^0.1.18",
57
+ "@backstage/plugin-user-settings-common": "^0.0.1",
58
+ "@backstage/types": "^1.2.1",
66
59
  "express": "^4.17.1",
67
60
  "express-promise-router": "^4.1.0",
68
61
  "knex": "^3.0.0"
69
62
  },
70
63
  "devDependencies": {
71
- "@backstage/backend-defaults": "0.8.2-next.1",
72
- "@backstage/backend-test-utils": "1.3.1-next.1",
73
- "@backstage/cli": "0.30.1-next.0",
64
+ "@backstage/backend-defaults": "^0.8.2",
65
+ "@backstage/backend-test-utils": "^1.3.1",
66
+ "@backstage/cli": "^0.31.0",
74
67
  "@types/express": "^4.17.6",
75
68
  "@types/supertest": "^2.0.8",
76
69
  "supertest": "^7.0.0"