@backstage/plugin-user-settings-backend 0.1.1-next.2 → 0.1.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +14 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @backstage/plugin-user-settings-backend
2
2
 
3
+ ## 0.1.1
4
+
5
+ ### Patch Changes
6
+
7
+ - f3463b176b: Use `Response.status` instead of `.send(number)`
8
+ - 2d3a5f09ab: Use `response.json` rather than `response.send` where appropriate, as outlined in `SECURITY.md`
9
+ - 82ac9bcfe5: Fix wrong import statement in `README.md`.
10
+ - Updated dependencies
11
+ - @backstage/catalog-model@1.1.2
12
+ - @backstage/backend-common@0.15.2
13
+ - @backstage/plugin-auth-node@0.2.6
14
+ - @backstage/errors@1.1.2
15
+ - @backstage/types@1.0.0
16
+
3
17
  ## 0.1.1-next.2
4
18
 
5
19
  ### Patch Changes
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.1.1-next.2",
4
+ "version": "0.1.1",
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.15.2-next.2",
32
- "@backstage/catalog-model": "^1.1.2-next.2",
33
- "@backstage/errors": "^1.1.2-next.2",
34
- "@backstage/plugin-auth-node": "^0.2.6-next.2",
31
+ "@backstage/backend-common": "^0.15.2",
32
+ "@backstage/catalog-model": "^1.1.2",
33
+ "@backstage/errors": "^1.1.2",
34
+ "@backstage/plugin-auth-node": "^0.2.6",
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.1.29-next.2",
45
- "@backstage/cli": "^0.20.0-next.2",
44
+ "@backstage/backend-test-utils": "^0.1.29",
45
+ "@backstage/cli": "^0.20.0",
46
46
  "@types/supertest": "^2.0.8",
47
47
  "supertest": "^6.1.3"
48
48
  },