@backstage/backend-app-api 0.10.0-next.1 → 1.0.0-next.2

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,30 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 1.0.0-next.2
4
+
5
+ ### Major Changes
6
+
7
+ - ec1b4be: Release 1.0 of the new backend system! :tada:
8
+
9
+ The backend system is finally getting promoted to 1.0.0. This means that the API is now stable and breaking changes should not occur until version 2.0.0, see our [package versioning policy](https://backstage.io/docs/overview/versioning-policy/#package-versioning-policy) for more information what this means.
10
+
11
+ This release also marks the end of the old backend system based on `createRouter` exports. Going forward backend plugins packages will start to deprecate and later this year remove exports supporting the old backend system. If you would like to help out with this transition, see https://github.com/backstage/backstage/issues/26353 or consult the [migration guide](https://backstage.io/docs/backend-system/building-plugins-and-modules/migrating/#remove-support-for-the-old-backend-system).
12
+
13
+ ### Patch Changes
14
+
15
+ - 6ed9264: chore(deps): bump `path-to-regexp` from 6.2.2 to 8.0.0
16
+ - c2b63ab: Updated dependency `supertest` to `^7.0.0`.
17
+ - Updated dependencies
18
+ - @backstage/backend-common@0.25.0-next.2
19
+ - @backstage/plugin-auth-node@0.5.2-next.2
20
+ - @backstage/backend-plugin-api@1.0.0-next.2
21
+ - @backstage/config-loader@1.9.1-next.0
22
+ - @backstage/plugin-permission-node@0.8.3-next.2
23
+ - @backstage/cli-common@0.1.14
24
+ - @backstage/config@1.2.0
25
+ - @backstage/errors@1.2.4
26
+ - @backstage/types@1.1.1
27
+
3
28
  ## 0.10.0-next.1
4
29
 
5
30
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api__alpha",
3
- "version": "0.10.0-next.1",
3
+ "version": "1.0.0-next.2",
4
4
  "main": "../dist/alpha.cjs.js",
5
5
  "types": "../dist/alpha.d.ts"
6
6
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api",
3
- "version": "0.10.0-next.1",
3
+ "version": "1.0.0-next.2",
4
4
  "description": "Core API used by Backstage backend apps",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -49,14 +49,14 @@
49
49
  "test": "backstage-cli package test"
50
50
  },
51
51
  "dependencies": {
52
- "@backstage/backend-common": "^0.25.0-next.1",
53
- "@backstage/backend-plugin-api": "^0.9.0-next.1",
52
+ "@backstage/backend-common": "^0.25.0-next.2",
53
+ "@backstage/backend-plugin-api": "^1.0.0-next.2",
54
54
  "@backstage/cli-common": "^0.1.14",
55
55
  "@backstage/config": "^1.2.0",
56
- "@backstage/config-loader": "^1.9.0",
56
+ "@backstage/config-loader": "^1.9.1-next.0",
57
57
  "@backstage/errors": "^1.2.4",
58
- "@backstage/plugin-auth-node": "^0.5.2-next.1",
59
- "@backstage/plugin-permission-node": "^0.8.3-next.1",
58
+ "@backstage/plugin-auth-node": "^0.5.2-next.2",
59
+ "@backstage/plugin-permission-node": "^0.8.3-next.2",
60
60
  "@backstage/types": "^1.1.1",
61
61
  "@manypkg/get-packages": "^1.1.3",
62
62
  "compression": "^1.7.4",
@@ -75,7 +75,7 @@
75
75
  "morgan": "^1.10.0",
76
76
  "node-fetch": "^2.7.0",
77
77
  "node-forge": "^1.3.1",
78
- "path-to-regexp": "^6.2.1",
78
+ "path-to-regexp": "^8.0.0",
79
79
  "selfsigned": "^2.0.0",
80
80
  "stoppable": "^1.1.0",
81
81
  "triple-beam": "^1.4.1",
@@ -84,9 +84,9 @@
84
84
  "winston-transport": "^4.5.0"
85
85
  },
86
86
  "devDependencies": {
87
- "@backstage/backend-defaults": "^0.5.0-next.1",
88
- "@backstage/backend-test-utils": "^0.6.0-next.1",
89
- "@backstage/cli": "^0.27.1-next.1",
87
+ "@backstage/backend-defaults": "^0.5.0-next.2",
88
+ "@backstage/backend-test-utils": "^1.0.0-next.2",
89
+ "@backstage/cli": "^0.27.1-next.2",
90
90
  "@types/compression": "^1.7.0",
91
91
  "@types/http-errors": "^2.0.0",
92
92
  "@types/minimist": "^1.2.0",
@@ -95,7 +95,7 @@
95
95
  "@types/stoppable": "^1.1.0",
96
96
  "http-errors": "^2.0.0",
97
97
  "msw": "^1.0.0",
98
- "supertest": "^6.1.3"
98
+ "supertest": "^7.0.0"
99
99
  },
100
100
  "configSchema": "config.d.ts"
101
101
  }