@backstage/plugin-user-settings-backend 0.2.24-next.2 → 0.2.24
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/alpha/package.json +1 -1
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,24 @@
|
|
|
1
1
|
# @backstage/plugin-user-settings-backend
|
|
2
2
|
|
|
3
|
+
## 0.2.24
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- 5d1670f: Update README installation instructions
|
|
8
|
+
- 164ce3e: In preparation to stop supporting to the legacy backend system, the `createRouter` function is now deprecated and we strongly recommend you [migrate](https://backstage.io/docs/backend-system/building-backends/migrating) your backend to the new system.
|
|
9
|
+
- d425fc4: Modules, plugins, and services are now `BackendFeature`, not a function that returns a feature.
|
|
10
|
+
- 1b98099: Replaced usage of the deprecated identity service with the new HTTP auth service for the new backend system.
|
|
11
|
+
- c2b63ab: Updated dependency `supertest` to `^7.0.0`.
|
|
12
|
+
- Updated dependencies
|
|
13
|
+
- @backstage/backend-defaults@0.5.0
|
|
14
|
+
- @backstage/plugin-signals-node@0.1.11
|
|
15
|
+
- @backstage/backend-plugin-api@1.0.0
|
|
16
|
+
- @backstage/plugin-auth-node@0.5.2
|
|
17
|
+
- @backstage/config@1.2.0
|
|
18
|
+
- @backstage/errors@1.2.4
|
|
19
|
+
- @backstage/types@1.1.1
|
|
20
|
+
- @backstage/plugin-user-settings-common@0.0.1
|
|
21
|
+
|
|
3
22
|
## 0.2.24-next.2
|
|
4
23
|
|
|
5
24
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-user-settings-backend",
|
|
3
|
-
"version": "0.2.24
|
|
3
|
+
"version": "0.2.24",
|
|
4
4
|
"description": "The Backstage backend plugin to manage user settings",
|
|
5
5
|
"backstage": {
|
|
6
6
|
"role": "backend-plugin",
|
|
@@ -51,12 +51,12 @@
|
|
|
51
51
|
"test": "backstage-cli package test"
|
|
52
52
|
},
|
|
53
53
|
"dependencies": {
|
|
54
|
-
"@backstage/backend-defaults": "^0.5.0
|
|
55
|
-
"@backstage/backend-plugin-api": "^1.0.0
|
|
54
|
+
"@backstage/backend-defaults": "^0.5.0",
|
|
55
|
+
"@backstage/backend-plugin-api": "^1.0.0",
|
|
56
56
|
"@backstage/config": "^1.2.0",
|
|
57
57
|
"@backstage/errors": "^1.2.4",
|
|
58
|
-
"@backstage/plugin-auth-node": "^0.5.2
|
|
59
|
-
"@backstage/plugin-signals-node": "^0.1.11
|
|
58
|
+
"@backstage/plugin-auth-node": "^0.5.2",
|
|
59
|
+
"@backstage/plugin-signals-node": "^0.1.11",
|
|
60
60
|
"@backstage/plugin-user-settings-common": "^0.0.1",
|
|
61
61
|
"@backstage/types": "^1.1.1",
|
|
62
62
|
"@types/express": "^4.17.6",
|
|
@@ -66,9 +66,9 @@
|
|
|
66
66
|
"yn": "^4.0.0"
|
|
67
67
|
},
|
|
68
68
|
"devDependencies": {
|
|
69
|
-
"@backstage/backend-defaults": "^0.5.0
|
|
70
|
-
"@backstage/backend-test-utils": "^1.0.0
|
|
71
|
-
"@backstage/cli": "^0.27.1
|
|
69
|
+
"@backstage/backend-defaults": "^0.5.0",
|
|
70
|
+
"@backstage/backend-test-utils": "^1.0.0",
|
|
71
|
+
"@backstage/cli": "^0.27.1",
|
|
72
72
|
"@types/supertest": "^2.0.8",
|
|
73
73
|
"supertest": "^7.0.0"
|
|
74
74
|
}
|