Version Packages

This commit is contained in:
github-actions[bot]
2020-11-12 10:52:23 +00:00
parent 752808090b
commit 76a8099029
91 changed files with 776 additions and 346 deletions
-29
View File
@@ -1,29 +0,0 @@
---
'@backstage/core-api': patch
---
Updated the AuthApi `.create` methods to configure the default scope of the corresponding Auth Api. As a result the
default scope is configurable when overwriting the Core Api in the app.
```
GithubAuth.create({
discoveryApi,
oauthRequestApi,
defaultScopes: ['read:user', 'repo'],
}),
```
Replaced redundant CreateOptions of each Auth Api with the OAuthApiCreateOptions type.
```
export type OAuthApiCreateOptions = AuthApiCreateOptions & {
oauthRequestApi: OAuthRequestApi;
defaultScopes?: string[];
};
export type AuthApiCreateOptions = {
discoveryApi: DiscoveryApi;
environment?: string;
provider?: AuthProvider & { id: string };
};
```
-16
View File
@@ -1,16 +0,0 @@
---
'@backstage/core': patch
---
Adds the MarkdownContent component to render and display Markdown content with the default
[GFM](https://github.github.com/gfm/) (Github flavored Markdown) dialect.
```
<MarkdownContent content={markdownGithubFlavored} />
```
To render the Markdown content with plain [CommonMark](https://commonmark.org/), set the dialect to `common-mark`
```
<MarkdownContent content={markdown} dialect='common-mark />
```
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/core': patch
---
Extend default config loader to read config from the window object.
Config will be read from `window.__APP_CONFIG__` which should be an object.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-jenkins': minor
---
Add tooltip for Jenkins rerun button
@@ -1,5 +0,0 @@
---
'@backstage/plugin-cost-insights': patch
---
Fix styling issue on Cost Insights product panels with no cost
@@ -1,10 +0,0 @@
---
'@backstage/plugin-cost-insights': minor
---
rename: Tooltip -> BarChartTooltip
rename: TooltipItem -> BarChartTooltipItem
Deprecate BarChartData in favor of BarChartOptions
Export BarChartLegend component
Update BarChart props to accept options prop
Deprecate ProductCost type in favor of Entity. Update CostInsightsApi
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/core': patch
---
- The BottomLink is now able to handle with internal routes.
- @backstage/core Link component detect whether it's an external link or not, and render accordingly
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core': patch
---
Extend the table to share its current filter state. The filter state can be used together with the new `useQueryParamState` hook to store the current filter state to the browser history and restore it after navigating to other routes.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/create-app': patch
---
Fix missing api-docs plugin registration in app template
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-auth-backend': patch
---
Handle non-7-bit safe characters in the posted message data
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-user-settings': patch
---
Export `AuthProviders`, `DefaultProviderSettings` and `ProviderSettingsItem`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-api-docs': patch
---
Persist table state of the API Explorer to the browser history. This allows to navigate between pages and come back to the previous filter state.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-api-docs': patch
---
Use dense table style and outlined chips in the API Explorer.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core': patch
---
Make the selected state of Select and CheckboxTree controllable from outside.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core': minor
---
New DependencyGraph component added to core package.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core': patch
---
Fix divider prop not respected on InfoCard
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-tech-radar': patch
---
Make the footer color of the tech-radar work in both light and dark theme.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-api-docs': patch
---
Upgrade @kyma-project/asyncapi-react to 0.14.2
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/theme': patch
---
Improve styling of outlined chips in dark mode.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog': patch
---
Improved the edit link to open the component yaml in edit mode in corresponding SCM. Broke out logic for createEditLink to be reused.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-auth-backend': patch
---
Encode the OAuth state parameter using URL safe chars only, so that providers have an easier time forming the callback URL.
-16
View File
@@ -1,16 +0,0 @@
---
'@backstage/plugin-scaffolder': minor
'@backstage/plugin-scaffolder-backend': minor
---
`createRouter` of scaffolder backend will now require additional option as `entityClient` which could be generated by `CatalogEntityClient` in `plugin-scaffolder-backend` package. Here is example to generate `entityClient`.
```js
import { CatalogEntityClient } from '@backstage/plugin-scaffolder-backend';
import { SingleHostDiscovery } from '@backstage/backend-common';
const discovery = SingleHostDiscovery.fromConfig(config);
const entityClient = new CatalogEntityClient({ discovery });
```
- Scaffolder's API `/v1/jobs` will accept `templateName` instead of `template` Entity.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-common': patch
---
Capture plugin name under the /api/ prefix for http metrics
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-tech-radar': minor
---
Added tech radar blip history backend support and normalized the data structure