Version Packages

This commit is contained in:
github-actions[bot]
2023-03-14 14:31:40 +00:00
parent 045d29c68f
commit 24632ad94b
551 changed files with 6060 additions and 1877 deletions
+24
View File
@@ -1,5 +1,29 @@
# @backstage/plugin-proxy-backend
## 0.2.37
### Patch Changes
- 52b0022dab7: Updated dependency `msw` to `^1.0.0`.
- 3e3eea4bc7e: The proxy-backend plugin now supports reviving request bodies that have previously been consumed by an express middleware (e.g. `express.json()`). This is done by setting `reviveConsumedRequestBodies: true` on the proxy `RouterOptions`. In order to preserve the current behavior, the proxy will **not** revive request bodies by default.
The following is an example of a proxy `createRouter` invocation that revives request bodies:
```diff
const router = await createRouter({
config,
logger,
discovery,
+ reviveConsumedRequestBodies: true,
});
```
- 4acd93dae1d: Ensure that `@backstage/plugin-proxy-backend` logs the requests that it proxies when log level is set to `debug`.
- Updated dependencies
- @backstage/backend-common@0.18.3
- @backstage/backend-plugin-api@0.5.0
- @backstage/config@1.0.7
## 0.2.37-next.2
### Patch Changes
+1 -1
View File
@@ -1,7 +1,7 @@
{
"name": "@backstage/plugin-proxy-backend",
"description": "A Backstage backend plugin that helps you set up proxy endpoints in the backend",
"version": "0.2.37-next.2",
"version": "0.2.37",
"main": "src/index.ts",
"types": "src/index.ts",
"license": "Apache-2.0",