Version Packages (next)
This commit is contained in:
@@ -1,5 +1,35 @@
|
||||
# @backstage/plugin-proxy-backend
|
||||
|
||||
## 0.4.0-next.3
|
||||
|
||||
### Minor Changes
|
||||
|
||||
- 71114ac50e02: **BREAKING**: The export for the new backend system has been moved to be the `default` export.
|
||||
|
||||
For example, if you are currently importing the plugin using the following pattern:
|
||||
|
||||
```ts
|
||||
import { examplePlugin } from '@backstage/plugin-example-backend';
|
||||
|
||||
backend.add(examplePlugin);
|
||||
```
|
||||
|
||||
It should be migrated to this:
|
||||
|
||||
```ts
|
||||
backend.add(import('@backstage/plugin-example-backend'));
|
||||
```
|
||||
|
||||
### Patch Changes
|
||||
|
||||
- 02ba0a2efd2a: Add the route name to an error message that appears when the backend
|
||||
proxy wasn't well configured. This will help users to understand the
|
||||
issue and fix the right configuration.
|
||||
- Updated dependencies
|
||||
- @backstage/config@1.1.0-next.2
|
||||
- @backstage/backend-plugin-api@0.6.3-next.3
|
||||
- @backstage/backend-common@0.19.5-next.3
|
||||
|
||||
## 0.3.3-next.2
|
||||
|
||||
### Patch Changes
|
||||
|
||||
@@ -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.3.3-next.2",
|
||||
"version": "0.4.0-next.3",
|
||||
"main": "src/index.ts",
|
||||
"types": "src/index.ts",
|
||||
"license": "Apache-2.0",
|
||||
|
||||
Reference in New Issue
Block a user