@backstage/backend-app-api 1.0.2-next.2 → 1.0.3-next.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 CHANGED
@@ -1,5 +1,36 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 1.0.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - eef3ef1: Removed unused `express` dependencies.
8
+ - Updated dependencies
9
+ - @backstage/backend-plugin-api@1.0.3-next.0
10
+ - @backstage/plugin-auth-node@0.5.5-next.0
11
+ - @backstage/cli-common@0.1.15
12
+ - @backstage/config@1.3.0
13
+ - @backstage/config-loader@1.9.2
14
+ - @backstage/errors@1.2.5
15
+ - @backstage/types@1.2.0
16
+ - @backstage/plugin-permission-node@0.8.6-next.0
17
+
18
+ ## 1.0.2
19
+
20
+ ### Patch Changes
21
+
22
+ - 4e58bc7: Upgrade to uuid v11 internally
23
+ - 5d74716: Remove unused backend-common dependency
24
+ - Updated dependencies
25
+ - @backstage/config@1.3.0
26
+ - @backstage/types@1.2.0
27
+ - @backstage/config-loader@1.9.2
28
+ - @backstage/plugin-auth-node@0.5.4
29
+ - @backstage/backend-plugin-api@1.0.2
30
+ - @backstage/cli-common@0.1.15
31
+ - @backstage/errors@1.2.5
32
+ - @backstage/plugin-permission-node@0.8.5
33
+
3
34
  ## 1.0.2-next.2
4
35
 
5
36
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api",
3
- "version": "1.0.2-next.2",
3
+ "version": "1.0.3-next.0",
4
4
  "description": "Core API used by Backstage backend apps",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -33,11 +33,20 @@
33
33
  },
34
34
  "main": "./dist/index.cjs.js",
35
35
  "types": "./dist/index.d.ts",
36
+ "typesVersions": {
37
+ "*": {
38
+ "index": [
39
+ "dist/index.d.ts"
40
+ ],
41
+ "alpha": [
42
+ "dist/alpha.d.ts"
43
+ ]
44
+ }
45
+ },
36
46
  "files": [
37
47
  "dist",
38
48
  "config.d.ts",
39
- "migrations/**/*.{js,d.ts}",
40
- "alpha"
49
+ "migrations/**/*.{js,d.ts}"
41
50
  ],
42
51
  "scripts": {
43
52
  "build": "backstage-cli package build",
@@ -49,21 +58,18 @@
49
58
  "test": "backstage-cli package test"
50
59
  },
51
60
  "dependencies": {
52
- "@backstage/backend-common": "^0.25.0",
53
- "@backstage/backend-plugin-api": "1.0.2-next.2",
54
- "@backstage/cli-common": "0.1.15-next.0",
55
- "@backstage/config": "1.2.0",
56
- "@backstage/config-loader": "1.9.2-next.0",
57
- "@backstage/errors": "1.2.4",
58
- "@backstage/plugin-auth-node": "0.5.4-next.2",
59
- "@backstage/plugin-permission-node": "0.8.5-next.2",
60
- "@backstage/types": "1.1.1",
61
+ "@backstage/backend-plugin-api": "1.0.3-next.0",
62
+ "@backstage/cli-common": "0.1.15",
63
+ "@backstage/config": "1.3.0",
64
+ "@backstage/config-loader": "1.9.2",
65
+ "@backstage/errors": "1.2.5",
66
+ "@backstage/plugin-auth-node": "0.5.5-next.0",
67
+ "@backstage/plugin-permission-node": "0.8.6-next.0",
68
+ "@backstage/types": "1.2.0",
61
69
  "@manypkg/get-packages": "^1.1.3",
62
70
  "compression": "^1.7.4",
63
71
  "cookie": "^0.7.0",
64
72
  "cors": "^2.8.5",
65
- "express": "^4.17.1",
66
- "express-promise-router": "^4.1.0",
67
73
  "helmet": "^6.0.0",
68
74
  "jose": "^5.0.0",
69
75
  "knex": "^3.0.0",
@@ -79,14 +85,14 @@
79
85
  "selfsigned": "^2.0.0",
80
86
  "stoppable": "^1.1.0",
81
87
  "triple-beam": "^1.4.1",
82
- "uuid": "^9.0.0",
88
+ "uuid": "^11.0.0",
83
89
  "winston": "^3.2.1",
84
90
  "winston-transport": "^4.5.0"
85
91
  },
86
92
  "devDependencies": {
87
- "@backstage/backend-defaults": "0.5.3-next.2",
88
- "@backstage/backend-test-utils": "1.1.0-next.2",
89
- "@backstage/cli": "0.29.0-next.2",
93
+ "@backstage/backend-defaults": "0.6.0-next.0",
94
+ "@backstage/backend-test-utils": "1.2.0-next.0",
95
+ "@backstage/cli": "0.29.3-next.0",
90
96
  "@types/compression": "^1.7.0",
91
97
  "@types/http-errors": "^2.0.0",
92
98
  "@types/minimist": "^1.2.0",
@@ -1,6 +0,0 @@
1
- {
2
- "name": "@backstage/backend-app-api__alpha",
3
- "version": "1.0.2-next.2",
4
- "main": "../dist/alpha.cjs.js",
5
- "types": "../dist/alpha.d.ts"
6
- }