@backstage/backend-app-api 0.7.7 → 0.7.8
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 +18 -0
- package/alpha/package.json +1 -1
- package/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +1 -1
- package/dist/index.d.ts +1 -1
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,23 @@
|
|
|
1
1
|
# @backstage/backend-app-api
|
|
2
2
|
|
|
3
|
+
## 0.7.8
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- c5957b0: Fixing issue with `MiddlewareFactory` deprecation wrapping
|
|
8
|
+
- Updated dependencies
|
|
9
|
+
- @backstage/backend-common@0.23.1
|
|
10
|
+
- @backstage/backend-plugin-api@0.6.20
|
|
11
|
+
- @backstage/backend-tasks@0.5.25
|
|
12
|
+
- @backstage/cli-common@0.1.14
|
|
13
|
+
- @backstage/cli-node@0.2.6
|
|
14
|
+
- @backstage/config@1.2.0
|
|
15
|
+
- @backstage/config-loader@1.8.1
|
|
16
|
+
- @backstage/errors@1.2.4
|
|
17
|
+
- @backstage/types@1.1.1
|
|
18
|
+
- @backstage/plugin-auth-node@0.4.15
|
|
19
|
+
- @backstage/plugin-permission-node@0.7.31
|
|
20
|
+
|
|
3
21
|
## 0.7.7
|
|
4
22
|
|
|
5
23
|
### Patch Changes
|
package/alpha/package.json
CHANGED
package/dist/index.cjs.js
CHANGED
|
@@ -778,7 +778,7 @@ class MiddlewareFactory {
|
|
|
778
778
|
* Creates a new {@link MiddlewareFactory}.
|
|
779
779
|
*/
|
|
780
780
|
static create(options) {
|
|
781
|
-
return MiddlewareFactory$1.create(options);
|
|
781
|
+
return new MiddlewareFactory(MiddlewareFactory$1.create(options));
|
|
782
782
|
}
|
|
783
783
|
/**
|
|
784
784
|
* Returns a middleware that unconditionally produces a 404 error response.
|