Version Packages

This commit is contained in:
github-actions[bot]
2025-03-18 12:55:57 +00:00
parent 2b1ae6611f
commit 127408219b
502 changed files with 5951 additions and 2249 deletions
+42
View File
@@ -1,5 +1,47 @@
# @backstage/app-defaults
## 1.6.0
### Minor Changes
- 12f8e01: **BREAKING**: The default `DiscoveryApi` implementation has been switched to use `FrontendHostDiscovery`, which adds support for the `discovery.endpoints` configuration.
This is marked as a breaking change because it will cause any existing `discovery.endpoints` configuration to be picked up and used, which may break existing setups.
For example, consider the following configuration:
```yaml
app:
baseUrl: https://backstage.acme.org
backend:
baseUrl: https://backstage.internal.acme.org
discovery:
endpoints:
- target: https://catalog.internal.acme.org/api/{{pluginId}}
plugins: [catalog]
```
This will now cause requests from the frontend towards the `catalog` plugin to be routed to `https://catalog.internal.acme.org/api/catalog`, but this might not be reachable from the frontend. To fix this, you should update the `discovery.endpoints` configuration to only override the internal URL of the plugin:
```yaml
discovery:
endpoints:
- target:
internal: https://catalog.internal.acme.org/api/{{pluginId}}
plugins: [catalog]
```
### Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.0
- @backstage/core-plugin-api@1.10.5
- @backstage/core-app-api@1.16.0
- @backstage/plugin-permission-react@0.4.32
- @backstage/theme@0.6.4
## 1.6.0-next.1
### Minor Changes