@backstage/core-app-api 1.0.0 → 1.0.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @backstage/core-app-api
2
2
 
3
+ ## 1.0.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - a7bb762dab: fixed empty body issue for POST requests using FetchAPI with 'plugin://' prefix
8
+ - c47509e1a0: Implemented changes suggested by Deepsource.io including multiple double non-null assertion operators and unexpected awaits for non-promise values.
9
+
3
10
  ## 1.0.0
4
11
 
5
12
  ### Major Changes
package/dist/index.esm.js CHANGED
@@ -1402,7 +1402,7 @@ class PluginProtocolResolverFetchMiddleware {
1402
1402
  base = `${baseUrl.protocol}//${authority}${baseUrl.host}${baseUrl.pathname}`;
1403
1403
  }
1404
1404
  const target = `${join(base, pathname)}${search}${hash}`;
1405
- return next(target, request);
1405
+ return next(target, typeof input === "string" ? init : input);
1406
1406
  };
1407
1407
  }
1408
1408
  }