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

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,5 +1,32 @@
1
1
  # @backstage/plugin-user-settings-backend
2
2
 
3
+ ## 0.2.6
4
+
5
+ ### Patch Changes
6
+
7
+ - dd0350379b: Added dependency on `@backstage/config`
8
+ - 013611b42e: `knex` has been bumped to major version 3 and `better-sqlite3` to major version 9, which deprecate node 16 support.
9
+ - 8613ba3928: Switched to using `"exports"` field for `/alpha` subpath export.
10
+ - Updated dependencies
11
+ - @backstage/backend-common@0.19.9
12
+ - @backstage/backend-plugin-api@0.6.7
13
+ - @backstage/catalog-model@1.4.3
14
+ - @backstage/config@1.1.1
15
+ - @backstage/errors@1.2.3
16
+ - @backstage/types@1.1.1
17
+ - @backstage/plugin-auth-node@0.4.1
18
+
19
+ ## 0.2.6-next.2
20
+
21
+ ### Patch Changes
22
+
23
+ - [#20570](https://github.com/backstage/backstage/pull/20570) [`013611b42e`](https://github.com/backstage/backstage/commit/013611b42ed457fefa9bb85fddf416cf5e0c1f76) Thanks [@freben](https://github.com/freben)! - `knex` has been bumped to major version 3 and `better-sqlite3` to major version 9, which deprecate node 16 support.
24
+
25
+ - Updated dependencies
26
+ - @backstage/backend-plugin-api@0.6.7-next.2
27
+ - @backstage/backend-common@0.19.9-next.2
28
+ - @backstage/plugin-auth-node@0.4.1-next.2
29
+
3
30
  ## 0.2.6-next.1
4
31
 
5
32
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-user-settings-backend",
3
- "version": "0.2.6-next.1",
3
+ "version": "0.2.6",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
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.2.6-next.1",
4
+ "version": "0.2.6",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -40,23 +40,23 @@
40
40
  "clean": "backstage-cli package clean"
41
41
  },
42
42
  "dependencies": {
43
- "@backstage/backend-common": "^0.19.9-next.1",
44
- "@backstage/backend-plugin-api": "^0.6.7-next.1",
43
+ "@backstage/backend-common": "^0.19.9",
44
+ "@backstage/backend-plugin-api": "^0.6.7",
45
45
  "@backstage/catalog-model": "^1.4.3",
46
46
  "@backstage/config": "^1.1.1",
47
47
  "@backstage/errors": "^1.2.3",
48
- "@backstage/plugin-auth-node": "^0.4.1-next.1",
48
+ "@backstage/plugin-auth-node": "^0.4.1",
49
49
  "@backstage/types": "^1.1.1",
50
50
  "@types/express": "^4.17.6",
51
51
  "express": "^4.17.1",
52
52
  "express-promise-router": "^4.1.0",
53
- "knex": "^2.0.0",
53
+ "knex": "^3.0.0",
54
54
  "winston": "^3.2.1",
55
55
  "yn": "^4.0.0"
56
56
  },
57
57
  "devDependencies": {
58
- "@backstage/backend-test-utils": "^0.2.8-next.1",
59
- "@backstage/cli": "^0.24.0-next.1",
58
+ "@backstage/backend-test-utils": "^0.2.8",
59
+ "@backstage/cli": "^0.24.0",
60
60
  "@types/supertest": "^2.0.8",
61
61
  "supertest": "^6.1.3"
62
62
  },