@backstage/plugin-user-settings-backend 0.3.0-next.2 → 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.
- package/CHANGELOG.md +19 -0
- package/package.json +11 -11
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
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
|
+
|
|
3
22
|
## 0.3.0-next.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-user-settings-backend",
|
|
3
|
-
"version": "0.3.0
|
|
3
|
+
"version": "0.3.0",
|
|
4
4
|
"description": "The Backstage backend plugin to manage user settings",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -49,21 +49,21 @@
|
|
|
49
49
|
"test": "backstage-cli package test"
|
|
50
50
|
},
|
|
51
51
|
"dependencies": {
|
|
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",
|
|
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",
|
|
59
59
|
"express": "^4.17.1",
|
|
60
60
|
"express-promise-router": "^4.1.0",
|
|
61
61
|
"knex": "^3.0.0"
|
|
62
62
|
},
|
|
63
63
|
"devDependencies": {
|
|
64
|
-
"@backstage/backend-defaults": "0.8.2
|
|
65
|
-
"@backstage/backend-test-utils": "1.3.1
|
|
66
|
-
"@backstage/cli": "0.31.0
|
|
64
|
+
"@backstage/backend-defaults": "^0.8.2",
|
|
65
|
+
"@backstage/backend-test-utils": "^1.3.1",
|
|
66
|
+
"@backstage/cli": "^0.31.0",
|
|
67
67
|
"@types/express": "^4.17.6",
|
|
68
68
|
"@types/supertest": "^2.0.8",
|
|
69
69
|
"supertest": "^7.0.0"
|