@backstage/backend-app-api 0.5.3-next.3 → 0.5.3

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.

Potentially problematic release.


This version of @backstage/backend-app-api might be problematic. Click here for more details.

package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 0.5.3
4
+
5
+ ### Patch Changes
6
+
7
+ - 154632d8753b: Add support for discovering additional service factories during startup.
8
+ - 37a20c7f14aa: Adds include and exclude configuration to feature discovery of backend packages
9
+ Adds alpha modules to feature discovery
10
+ - cb7fc410ed99: The experimental backend feature discovery now only considers default exports from packages. It no longer filters packages to include based on the package role, except that `'cli'` packages are ignored. However, the `"backstage"` field is still required in `package.json`.
11
+ - 3fc64b9e2f8f: Extension points are now tracked via their ID rather than reference, in order to support package duplication.
12
+ - 3b30b179cb38: Add support for installing features as package imports, for example `backend.add(import('my-plugin'))`.
13
+ - b219d097b3f4: Backend startup will now fail if any circular service dependencies are detected.
14
+ - Updated dependencies
15
+ - @backstage/backend-tasks@0.5.8
16
+ - @backstage/backend-common@0.19.5
17
+ - @backstage/plugin-auth-node@0.3.0
18
+ - @backstage/config@1.1.0
19
+ - @backstage/errors@1.2.2
20
+ - @backstage/types@1.1.1
21
+ - @backstage/plugin-permission-node@0.7.14
22
+ - @backstage/backend-plugin-api@0.6.3
23
+ - @backstage/config-loader@1.5.0
24
+ - @backstage/cli-common@0.1.12
25
+ - @backstage/cli-node@0.1.4
26
+
3
27
  ## 0.5.3-next.3
4
28
 
5
29
  ### Patch Changes
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api",
3
- "version": "0.5.3-next.3",
3
+ "version": "0.5.3",
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/backend-app-api",
3
3
  "description": "Core API used by Backstage backend apps",
4
- "version": "0.5.3-next.3",
4
+ "version": "0.5.3",
5
5
  "main": "./dist/index.cjs.js",
6
6
  "types": "./dist/index.d.ts",
7
7
  "publishConfig": {
@@ -43,17 +43,17 @@
43
43
  "start": "backstage-cli package start"
44
44
  },
45
45
  "dependencies": {
46
- "@backstage/backend-common": "^0.19.5-next.3",
47
- "@backstage/backend-plugin-api": "^0.6.3-next.3",
48
- "@backstage/backend-tasks": "^0.5.8-next.3",
46
+ "@backstage/backend-common": "^0.19.5",
47
+ "@backstage/backend-plugin-api": "^0.6.3",
48
+ "@backstage/backend-tasks": "^0.5.8",
49
49
  "@backstage/cli-common": "^0.1.12",
50
- "@backstage/cli-node": "^0.1.4-next.0",
51
- "@backstage/config": "^1.1.0-next.2",
52
- "@backstage/config-loader": "^1.5.0-next.3",
53
- "@backstage/errors": "^1.2.2-next.0",
54
- "@backstage/plugin-auth-node": "^0.3.0-next.3",
55
- "@backstage/plugin-permission-node": "^0.7.14-next.3",
56
- "@backstage/types": "^1.1.1-next.0",
50
+ "@backstage/cli-node": "^0.1.4",
51
+ "@backstage/config": "^1.1.0",
52
+ "@backstage/config-loader": "^1.5.0",
53
+ "@backstage/errors": "^1.2.2",
54
+ "@backstage/plugin-auth-node": "^0.3.0",
55
+ "@backstage/plugin-permission-node": "^0.7.14",
56
+ "@backstage/types": "^1.1.1",
57
57
  "@manypkg/get-packages": "^1.1.3",
58
58
  "@types/cors": "^2.8.6",
59
59
  "@types/express": "^4.17.6",
@@ -75,8 +75,8 @@
75
75
  "winston-transport": "^4.5.0"
76
76
  },
77
77
  "devDependencies": {
78
- "@backstage/backend-test-utils": "^0.2.3-next.3",
79
- "@backstage/cli": "^0.22.13-next.3",
78
+ "@backstage/backend-test-utils": "^0.2.3",
79
+ "@backstage/cli": "^0.22.13",
80
80
  "@types/compression": "^1.7.0",
81
81
  "@types/fs-extra": "^9.0.3",
82
82
  "@types/http-errors": "^2.0.0",