@backstage/backend-app-api 1.7.0-next.0 → 1.7.1-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.
Files changed (2) hide show
  1. package/CHANGELOG.md +20 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,25 @@
1
1
  # @backstage/backend-app-api
2
2
 
3
+ ## 1.7.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-plugin-api@1.9.2-next.0
9
+
10
+ ## 1.7.0
11
+
12
+ ### Minor Changes
13
+
14
+ - 3595c97: Added `ExtensionPointFactoryMiddleware` type and `createExtensionPointFactoryMiddleware` helper to reimplement extension point outputs at backend creation time.
15
+
16
+ ### Patch Changes
17
+
18
+ - Updated dependencies
19
+ - @backstage/errors@1.3.1
20
+ - @backstage/backend-plugin-api@1.9.1
21
+ - @backstage/config@1.3.8
22
+
3
23
  ## 1.7.0-next.0
4
24
 
5
25
  ### Minor Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/backend-app-api",
3
- "version": "1.7.0-next.0",
3
+ "version": "1.7.1-next.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.9.1-next.0",
54
- "@backstage/config": "1.3.8-next.0",
55
- "@backstage/errors": "1.3.1-next.0"
53
+ "@backstage/backend-plugin-api": "1.9.2-next.0",
54
+ "@backstage/config": "1.3.8",
55
+ "@backstage/errors": "1.3.1"
56
56
  },
57
57
  "devDependencies": {
58
- "@backstage/backend-defaults": "0.17.1-next.0",
59
- "@backstage/backend-test-utils": "1.11.3-next.0",
60
- "@backstage/cli": "0.36.2-next.0"
58
+ "@backstage/backend-defaults": "0.17.2-next.0",
59
+ "@backstage/backend-test-utils": "1.11.4-next.0",
60
+ "@backstage/cli": "0.36.3-next.0"
61
61
  },
62
62
  "configSchema": "config.d.ts"
63
63
  }