@backstage/backend-app-api 1.5.0-next.1 → 1.5.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.
Files changed (2) hide show
  1. package/CHANGELOG.md +12 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 1.5.0
4
+
5
+ ### Minor Changes
6
+
7
+ - f1d29b4: Added support for extension point factories, along with the ability to report module startup failures via the extension point factory context.
8
+
9
+ ### Patch Changes
10
+
11
+ - 6bb2f21: Fixed memory leak by properly cleaning up process event listeners on backend shutdown.
12
+ - Updated dependencies
13
+ - @backstage/backend-plugin-api@1.7.0
14
+
3
15
  ## 1.5.0-next.1
4
16
 
5
17
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api",
3
- "version": "1.5.0-next.1",
3
+ "version": "1.5.0",
4
4
  "description": "Core API used by Backstage backend apps",
5
5
  "backstage": {
6
6
  "role": "node-library"
@@ -50,14 +50,14 @@
50
50
  "test": "backstage-cli package test"
51
51
  },
52
52
  "dependencies": {
53
- "@backstage/backend-plugin-api": "1.7.0-next.1",
54
- "@backstage/config": "1.3.6",
55
- "@backstage/errors": "1.2.7"
53
+ "@backstage/backend-plugin-api": "^1.7.0",
54
+ "@backstage/config": "^1.3.6",
55
+ "@backstage/errors": "^1.2.7"
56
56
  },
57
57
  "devDependencies": {
58
- "@backstage/backend-defaults": "0.15.2-next.1",
59
- "@backstage/backend-test-utils": "1.11.0-next.1",
60
- "@backstage/cli": "0.35.4-next.2"
58
+ "@backstage/backend-defaults": "^0.15.2",
59
+ "@backstage/backend-test-utils": "^1.11.0",
60
+ "@backstage/cli": "^0.35.4"
61
61
  },
62
62
  "configSchema": "config.d.ts"
63
63
  }