Merge remote-tracking branch 'origin/master' into howlowck/non-blocking

Signed-off-by: Johan Haals <johan.haals@gmail.com>
This commit is contained in:
Johan Haals
2022-12-06 10:56:12 +01:00
1616 changed files with 51212 additions and 9099 deletions
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-scaffolder': patch
---
Basic analytics instrumentation is now in place:
- As users make their way through template steps, a `click` event is fired, including the step number.
- After a user clicks "Create" a `create` event is fired, including the name of the software that was just created. The template used at creation is set on the `entityRef` context key.
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
Both `EntityProvider` and `AsyncEntityProvider` contexts now wrap all children with an `AnalyticsContext` containing the corresponding `entityRef`; this opens up the possibility for all events underneath these contexts to be associated with and aggregated by the corresponding entity.
+9
View File
@@ -0,0 +1,9 @@
---
'@backstage/plugin-catalog-graph': patch
'@backstage/plugin-pagerduty': patch
'@backstage/plugin-scaffolder-backend': patch
'@backstage/plugin-splunk-on-call': patch
'@backstage/plugin-techdocs-react': patch
---
Internal refactor to improve tests
+11
View File
@@ -0,0 +1,11 @@
---
'@backstage/plugin-scaffolder': patch
---
Enabling the customization of the last step in the scaffolder template.
To override the content you have to do the next:
```typescript jsx
<TemplatePage ReviewStepComponent={YourCustomComponent} />
```
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend-module-bitbucket-cloud': patch
---
Refresh (potentially) updated catalog files on `repo:push` more efficiently.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs': patch
---
Fix logic bug that broke techdocs-cli-embedded-app
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-components': patch
---
Set the `searchTooltip` to "Filter" to follow how the `searchPlaceholder` is set making this more consistent
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-azure-devops-backend': patch
---
Updated installation documentation
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-app-api': minor
---
Updated the React Router wiring to make use of the new `basename` property of the router components in React Router v6 stable. To implement this, a new optional `basename` property has been added to the `Router` app component, which can be forwarded to the concrete router implementation in order to support this new behavior. This is done by default in any app that does not have a `Router` component override.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-tech-insights': patch
---
Fixed bug when sending data by Post in `runChecks` and `runBulkChecks` functions of the `TechInsightsClient` class, the default `Content-Type` used was `plain/text`
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/backend-common': minor
---
**BREAKING CHANGE**: The `UrlReader` interface has been updated to require that `readUrl` is implemented. `readUrl` has previously been optional to implement but a warning has been logged when calling its predecessor `read`.
The `read` method is now deprecated and will be removed in a future release.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-gitlab': patch
---
Add `gitlabDiscoveryEntityProviderCatalogModule` (new backend-plugin-api, alpha).
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/catalog-client': minor
---
**BREAKING PRODUCERS**: Added a new `getEntitiesByRefs` endpoint to `CatalogApi`, for efficient batch fetching of entities by ref.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-github-issues': patch
---
Stripping specific issues URL already present to target base issues URL.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/repo-tools': minor
---
Introducing repo-tools package
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-azure': patch
---
`AzureDevOpsEntityProvider`: Add option to configure schedule via `app-config.yaml` instead of in code.
Please find how to configure the schedule at the config at
https://backstage.io/docs/integrations/azure/discovery
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-search-react': minor
---
The `value` of a search analytics event is now set as the total number of search results (when available)
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend': patch
---
Do not use deprecated `LocationSpec` from the `@backstage/plugin-catalog-node` package
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend-module-github': patch
---
Fixes the assignment of group member references in `GithubMultiOrgProcessor` so membership relations are resolved correctly.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/create-app': patch
---
Bumped create-app version.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/create-app': patch
---
Bumped create-app version.
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-msgraph': patch
---
`MicrosoftGraphOrgEntityProvider`: Add option to configure schedule via `app-config.yaml` instead of in code.
Please find how to configure the schedule at the config at
https://github.com/backstage/backstage/tree/master/plugins/catalog-backend-module-msgraph#readme
+7
View File
@@ -0,0 +1,7 @@
---
'@backstage/plugin-search-backend': minor
'@backstage/plugin-search-backend-module-elasticsearch': minor
'@backstage/plugin-search-backend-node': minor
---
numberOfResults is now provided alongside the query result
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-explore': patch
---
Update search links to only have header as linkable text
-25
View File
@@ -1,25 +0,0 @@
---
'@backstage/plugin-techdocs': minor
---
Add ability to configure filters when using EntityListDocsGrid
The following example will render two sections of cards grid:
- One section for documentations tagged as `recommended`
- One section for documentations tagged as `runbook`
```js
<EntityListDocsGrid groups={{[
{
title: "Recommended Documentation",
filterPredicate: entity =>
entity?.metadata?.tags?.includes('recommended') ?? false,
},
{
title: "RunBooks Documentation",
filterPredicate: entity =>
entity?.metadata?.tags?.includes('runbook') ?? false,
}
]}} />
```
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
changed tests created by create-plugin to follow eslint-rules best practices particularly testing-library/prefer-screen-queries and testing-library/render-result-naming-convention
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
Initialize all `formData` in the `Stepper` in `/next`
+10
View File
@@ -0,0 +1,10 @@
---
'@backstage/plugin-bazaar-backend': patch
'@backstage/plugin-catalog-backend': patch
'@backstage/plugin-catalog-backend-module-incremental-ingestion': patch
'@backstage/plugin-playlist-backend': patch
'@backstage/plugin-search-backend-module-pg': patch
'@backstage/plugin-user-settings-backend': patch
---
Ensured typescript type checks in migration files.
-17
View File
@@ -1,17 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-github': minor
---
BREAKING: Support authenticated backends by including a server token for catalog requests. The constructor of `GithubLocationAnalyzer` now requires an instance of `TokenManager` to be supplied:
```diff
...
builder.addLocationAnalyzers(
new GitHubLocationAnalyzer({
discovery: env.discovery,
config: env.config,
+ tokenManager: env.tokenManager,
}),
);
...
```
+15
View File
@@ -0,0 +1,15 @@
---
'@backstage/backend-common': patch
'@backstage/core-app-api': patch
'@backstage/core-components': patch
'@backstage/version-bridge': patch
'@backstage/plugin-analytics-module-ga': patch
'@backstage/plugin-catalog': patch
'@backstage/plugin-cloudbuild': patch
'@backstage/plugin-gcp-projects': patch
'@backstage/plugin-github-actions': patch
'@backstage/plugin-graphiql': patch
'@backstage/plugin-techdocs': patch
---
Internal fixes to avoid implicit usage of globals
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend': patch
---
Optimize `Stitcher` process to be more memory efficient
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-plugin-api': minor
---
The app `Router` component now accepts an optional `basename` property.
+22
View File
@@ -0,0 +1,22 @@
---
'@backstage/backend-app-api': patch
'@backstage/plugin-app-backend': patch
'@backstage/plugin-catalog-backend': patch
'@backstage/plugin-catalog-backend-module-aws': patch
'@backstage/plugin-catalog-backend-module-azure': patch
'@backstage/plugin-catalog-backend-module-bitbucket-cloud': patch
'@backstage/plugin-catalog-backend-module-bitbucket-server': patch
'@backstage/plugin-catalog-backend-module-gerrit': patch
'@backstage/plugin-catalog-backend-module-github': patch
'@backstage/plugin-catalog-backend-module-gitlab': patch
'@backstage/plugin-catalog-backend-module-incremental-ingestion': patch
'@backstage/plugin-catalog-backend-module-msgraph': patch
'@backstage/plugin-catalog-node': patch
'@backstage/plugin-events-backend': patch
'@backstage/plugin-events-backend-module-aws-sqs': patch
'@backstage/plugin-events-backend-module-github': patch
'@backstage/plugin-events-backend-module-gitlab': patch
'@backstage/plugin-scaffolder-backend': patch
---
Refactored to use `coreServices` from `@backstage/backend-plugin-api`.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-org-react': patch
---
Bug fixes and adding the possibility to add a default value for the `GroupListPicker`. Fixes: Vertical size jump on text entry, left align for text, selecting a value closes the popup, auto focus on the popup when opening
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend-module-github': patch
---
Added the githubCredentialsProvider property to the GithubLocationAnalyzerOptions to be able to override the GithubCredentialsProvider.
+8
View File
@@ -0,0 +1,8 @@
---
'@backstage/plugin-catalog-backend': minor
---
Added new `POST /entities/by-refs` endpoint, which allows you to efficiently
batch-fetch entities by their entity ref. This can be useful e.g. in graphql
resolvers or similar contexts where you need to fetch many entities at the same
time.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
'@backstage/plugin-techdocs-node': patch
'@backstage/plugin-techdocs-backend': patch
---
Replace usage of deprecataed `UrlReader.read` with `UrlReader.readUrl`.
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-catalog-backend': patch
'@backstage/plugin-catalog-node': minor
---
Make it possible for entity providers to supply only entity refs, instead of full entities, in `delta` mutation deletions.
-38
View File
@@ -1,38 +0,0 @@
---
'@backstage/plugin-scaffolder-backend': minor
---
Added a set of default Prometheus metrics around scaffolding. See below for a list of metrics and an explanation of their labels:
- `scaffolder_task_count`: Tracks successful task runs.
Labels:
- `template`: The entity ref of the scaffolded template
- `user`: The entity ref of the user that invoked the template run
- `result`: A string describing whether the task ran successfully, failed, or was skipped
- `scaffolder_task_duration`: a histogram which tracks the duration of a task run
Labels:
- `template`: The entity ref of the scaffolded template
- `result`: A boolean describing whether the task ran successfully
- `scaffolder_step_count`: a count that tracks each step run
Labels:
- `template`: The entity ref of the scaffolded template
- `step`: The name of the step that was run
- `result`: A string describing whether the task ran successfully, failed, or was skipped
- `scaffolder_step_duration`: a histogram which tracks the duration of each step run
Labels:
- `template`: The entity ref of the scaffolded template
- `step`: The name of the step that was run
- `result`: A string describing whether the task ran successfully, failed, or was skipped
You can find a guide for running Prometheus metrics here: https://github.com/backstage/backstage/blob/master/contrib/docs/tutorials/prometheus-metrics.md
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-gitlab': patch
---
`GitlabDiscoveryEntityProvider`: Add option to configure schedule via `app-config.yaml` instead of in code.
Please find how to configure the schedule at the config at
https://backstage.io/docs/integrations/gitlab/discovery
+21
View File
@@ -0,0 +1,21 @@
---
'@backstage/plugin-events-backend': minor
---
**BREAKING:** Remove required field `router` at `HttpPostIngressEventPublisher.fromConfig`
and replace it with `bind(router: Router)`.
Additionally, the path prefix `/http` will be added inside `HttpPostIngressEventPublisher`.
```diff
// at packages/backend/src/plugins/events.ts
const eventsRouter = Router();
- const httpRouter = Router();
- eventsRouter.use('/http', httpRouter);
const http = HttpPostIngressEventPublisher.fromConfig({
config: env.config,
logger: env.logger,
- router: httpRouter,
});
+ http.bind(eventsRouter);
```
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-techdocs-node': patch
---
Bump dependency @azure/identity to next minor
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-common': patch
---
Generated development HTTPS backend certificate is now checked for expiration date instead of file age.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-openapi': patch
---
Added support to use the `UrlReaders` when `$ref` pointing to a URL.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-cost-insights': patch
---
Provide the ability to change the base currency from USD to any other currency in cost insights plugin
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog': patch
---
Handle refresh entity error in `AboutCard`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/integration': minor
---
This patch brings Gitea as a valid integration: target, via the ScmIntegration interface. It adds gitea to the relevant static properties (get integration by name, get integration by type) for plugins to be able to reference the same Gitea server.
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-bazaar': patch
---
`HomePageBazaarInfoCard` is now displaying `title` instead of `name`. Title is a string that doesn't have to be URL friendly.
The BazaarOverviewCard have the new property `fullHeight`. Link in `BazaarOverviewCard`is moved to header in card.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-common': patch
---
This patch adds GiteaURLReader to the available classes. It currently only reads single files via gitea's public repos api
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Use Json types from @backstage/types
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-app-api': patch
---
Tweak feature flag registration so that it happens immediately before the first rendering of the app, rather than just after.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Bump `msw` version in default plugin/app templates
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/test-utils': patch
---
The test utility for the plugin context called `MockPluginProvider` has been created. It will be handy in the cases when you use
`__experimentalConfigure` in your plugin. It is experimental and exported through `@backstage/test-utils/alpha`.
-9
View File
@@ -1,9 +0,0 @@
---
'@backstage/plugin-auth-backend': patch
'@backstage/plugin-cost-insights': patch
'@backstage/plugin-dynatrace': patch
'@backstage/plugin-stack-overflow-backend': patch
'@backstage/plugin-techdocs': patch
---
Tweak README
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-search-backend-node': patch
---
Wait for indexer initialization before finalizing indexing.
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-aws': patch
---
`AwsS3EntityProvider`: Add option to configure schedule via `app-config.yaml` instead of in code.
Please find how to configure the schedule at the config at
https://backstage.io/docs/integrations/aws-s3/discovery
-14
View File
@@ -1,14 +0,0 @@
---
'@backstage/integration': minor
---
Replaces in-code uses of `GitHub` with `Github` and deprecates old versions.
Deprecates:
- `getGitHubFileFetchUrl` replaced by `getGithubFileFetchUrl`
- `GitHubIntegrationConfig` replaced by `GithubIntegrationConfig`
- `GitHubIntegration` replaced by `GithubIntegration`
- `readGitHubIntegrationConfig` replaced by `readGithubIntegrationConfig`
- `readGitHubIntegrationConfigs` replaced by `readGithubIntegrationConfigs`
- `replaceGitHubUrlType` replaced by `replaceGithubUrlType`
-16
View File
@@ -1,16 +0,0 @@
---
'@backstage/cli': minor
---
Added a new ESLint rule that restricts imports of Link from @material-ui
The rule can be can be overridden in the following way:
```diff
module.exports = require('@backstage/cli/config/eslint-factory')(__dirname, {
+ restrictedImports: [
+ { name: '@material-ui/core', importNames: [] },
+ { name: '@material-ui/core/Link', importNames: [] },
+ ],
});
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-import': patch
---
Get rid of `this-is-undefined-in-esm` warning
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
Removed forced capitalization for Entity types in the catalog sidebar.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-kafka-backend': patch
---
Internal tweak to adapt to `kafkajs` 2.2.3
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-app-api': minor
---
Deprecated the `homepage` config as the component that used it - `HomepageTimer` - has been removed and replaced by the `HeaderWorldClock` in the home plugin
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-cost-insights': patch
---
Internal refactor to avoid usage of deprecated symbols
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-components': patch
---
Create a variable for minimum height and add a prop named 'fit' for determining if the graph height should grow or be contained.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-bazaar': patch
---
Add `title` as optional parameter to `BazaarOverviewCard`
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-azure': patch
---
Add `azureDevOpsEntityProviderCatalogModule` (new backend-plugin-api, alpha).
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-user-settings': minor
---
Added the ability to fully customize settings page. Deprecated UserSettingsTab in favour of SettingsLayout.Route
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-aws': patch
---
Add `awsS3EntityProviderCatalogModule` (new backend-plugin-api, alpha).
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-common': patch
---
exported KubernetesContainerRunner, KubernetesContainerRunnerOptions, KubernetesContainerRunnerMountBase
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-tasks': patch
---
Deprecated the `HumanDuration` type, which should now instead be imported from `@backstage/types`.
+16
View File
@@ -0,0 +1,16 @@
---
'@backstage/backend-common': minor
'@backstage/backend-tasks': minor
'@backstage/plugin-catalog-backend-module-incremental-ingestion': patch
'@backstage/plugin-search-backend-node': patch
---
Changed to use native `AbortController` and `AbortSignal` from Node.js, instead
of the one from `node-abort-controller`. This is possible now that the minimum
supported Node.js version of the project is 16.
Note that their interfaces are very slightly different, but typically not in a
way that matters to consumers. If you see any typescript errors as a direct
result from this, they are compatible with each other in the ways that we
interact with them, and should be possible to type-cast across without ill
effects.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend': patch
---
Fixed deprecated use of `substr` into `substring`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-tech-radar': patch
---
Fixed bug in Tech Radar where, on hover, the tech list quadrant would rerender and scroll top
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend-module-incremental-ingestion': minor
---
Introduces incremental entity providers, which are used for streaming very large data sources into the catalog.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-vault-backend': patch
---
Added (optional) config `vault.publicUrl` as alternative to `vault.baseUrl` for `editUrl` and `showUrl` in case `vault.baseUrl` is internal
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-common': patch
---
Small update to fix compatibility with newer versions of the `keyv` library
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Updated `@swc/core` to version 1.3.9 which fixes a `.tsx` parser bug
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-plugin-api': minor
---
**BREAKING**: All core service references are now exported via a single `coreServices` object. For example, the `loggerServiceRef` is now accessed via `coreServices.logger` instead.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-msgraph': patch
---
Add `microsoftGraphOrgEntityProviderCatalogModule` (new backend-plugin-api, alpha).
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-gerrit': patch
---
Add `gerritEntityProviderCatalogModule` (new backend-plugin-api, alpha).
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog': minor
---
Removed `CatalogKindHeader` from `DefaultCatalogPage`. Deprecated `CatalogKindHeader` in favour of `EntityKindPicker`.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-components': patch
---
Made AlertDisplay not crash on undefined messages
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-components': patch
---
Add items prop to SupportButton. This prop can be used to override the items that would otherwise be grabbed from the config.
-8
View File
@@ -1,8 +0,0 @@
---
'@backstage/plugin-github-pull-requests-board': patch
---
Add a new "Team" Filter Options to the Github Pull Requests Dashboard.
When toggling this option on, the dashboard will displays all of the PRs opened
by the members of that team on any repositories of the organization.
+12
View File
@@ -0,0 +1,12 @@
---
'@backstage/plugin-events-backend-module-github': patch
---
Add `createGithubSignatureValidator(config)` which can be used
to create a validator used at an ingress for topic `github`.
On top, there is a new `githubWebhookEventsModule` for the new backend plugin API
which auto-registers the `HttpPostIngress` for topic `github` incl. the validator.
Please find more information at
https://github.com/backstage/backstage/tree/master/plugins/events-backend-module-github/README.md.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-jenkins-backend': patch
---
Remove unnecessary dependency promise-any-polyfill
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-explore': patch
---
Adds styling to graph forcing it to always fill out the available space.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-app-api': patch
---
Prevent duplicate feature flag components from rendering in the settings when using <FeatureFlagged /> components
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/backend-common': patch
'@backstage/plugin-catalog-backend': patch
---
Adds MySQL support for the catalog-backend
+9
View File
@@ -0,0 +1,9 @@
---
'@backstage/plugin-events-backend': patch
'@backstage/plugin-events-node': minor
---
Introduce a new interface `RequestDetails` to abstract `Request`
providing access to request body and headers.
**BREAKING:** Replace `request: Request` with `request: RequestDetails` at `RequestValidator`.
+14
View File
@@ -0,0 +1,14 @@
---
'@backstage/plugin-catalog-backend-module-github': patch
---
Handle GitHub `push` events at the `GithubEntityProvider` by subscribing to the topic `github.push.`
Implements `EventSubscriber` to receive events for the topic `github.push`.
On `github.push`, the affected repository will be refreshed.
This includes adding new Location entities, refreshing existing ones,
and removing obsolete ones.
Please find more information at
https://backstage.io/docs/integrations/github/discovery#installation-with-events-support
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/backend-app-api': patch
---
Added `lifecycleFactory` implementation.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-cost-insights': patch
---
Internal refactor to avoid usage of deprecated symbols
+9
View File
@@ -0,0 +1,9 @@
---
'@backstage/plugin-adr': patch
'@backstage/plugin-catalog': patch
'@backstage/plugin-search-react': patch
'@backstage/plugin-stack-overflow': patch
'@backstage/plugin-techdocs': patch
---
Update search links to only have header as linkable text
-14
View File
@@ -1,14 +0,0 @@
---
'@backstage/catalog-model': patch
'@backstage/core-components': patch
'@backstage/integration': patch
'@backstage/plugin-auth-node': patch
'@backstage/plugin-gcalendar': patch
'@backstage/plugin-periskop': patch
'@backstage/plugin-permission-common': patch
'@backstage/plugin-scaffolder-backend': patch
'@backstage/plugin-techdocs': patch
'@backstage/plugin-xcmetrics': patch
---
Internal refactor of imports to avoid circular dependencies
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-github': patch
---
Properly derive Github credentials when making requests in `GithubLocationAnalyzer` to support Github App authentication
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-ilert': minor
---
Added support for multiple responders in alert list, added new tab with list to support iLert resource 'service', added new tab with list to support iLert resource 'status page'
+261 -233
View File
@@ -2,246 +2,274 @@
"mode": "pre",
"tag": "next",
"initialVersions": {
"example-app": "0.2.76",
"@backstage/app-defaults": "1.0.7",
"example-backend": "0.2.76",
"@backstage/backend-app-api": "0.2.2",
"@backstage/backend-common": "0.15.2",
"@backstage/backend-defaults": "0.1.2",
"example-backend-next": "0.0.4",
"@backstage/backend-plugin-api": "0.1.3",
"@backstage/backend-tasks": "0.3.6",
"@backstage/backend-test-utils": "0.1.29",
"@backstage/catalog-client": "1.1.1",
"@backstage/catalog-model": "1.1.2",
"@backstage/cli": "0.20.0",
"example-app": "0.2.77",
"@backstage/app-defaults": "1.0.8",
"example-backend": "0.2.77",
"@backstage/backend-app-api": "0.2.3",
"@backstage/backend-common": "0.16.0",
"@backstage/backend-defaults": "0.1.3",
"example-backend-next": "0.0.5",
"@backstage/backend-plugin-api": "0.1.4",
"@backstage/backend-tasks": "0.3.7",
"@backstage/backend-test-utils": "0.1.30",
"@backstage/catalog-client": "1.1.2",
"@backstage/catalog-model": "1.1.3",
"@backstage/cli": "0.21.0",
"@backstage/cli-common": "0.1.10",
"@backstage/codemods": "0.1.40",
"@backstage/config": "1.0.3",
"@backstage/config-loader": "1.1.5",
"@backstage/core-app-api": "1.1.1",
"@backstage/core-components": "0.11.2",
"@backstage/core-plugin-api": "1.0.7",
"@backstage/create-app": "0.4.32",
"@backstage/dev-utils": "1.0.7",
"@backstage/codemods": "0.1.41",
"@backstage/config": "1.0.4",
"@backstage/config-loader": "1.1.6",
"@backstage/core-app-api": "1.2.0",
"@backstage/core-components": "0.12.0",
"@backstage/core-plugin-api": "1.1.0",
"@backstage/create-app": "0.4.34",
"@backstage/dev-utils": "1.0.8",
"e2e-test": "0.2.0",
"@backstage/errors": "1.1.2",
"@backstage/integration": "1.3.2",
"@backstage/integration-react": "1.1.5",
"@backstage/release-manifests": "0.0.6",
"@techdocs/cli": "1.2.2",
"techdocs-cli-embedded-app": "0.2.75",
"@backstage/test-utils": "1.2.1",
"@backstage/errors": "1.1.3",
"@backstage/integration": "1.4.0",
"@backstage/integration-react": "1.1.6",
"@backstage/release-manifests": "0.0.7",
"@backstage/repo-tools": "0.0.0",
"@techdocs/cli": "1.2.3",
"techdocs-cli-embedded-app": "0.2.76",
"@backstage/test-utils": "1.2.2",
"@backstage/theme": "0.2.16",
"@backstage/types": "1.0.0",
"@backstage/version-bridge": "1.0.1",
"@backstage/plugin-adr": "0.2.2",
"@backstage/plugin-adr-backend": "0.2.2",
"@backstage/plugin-adr-common": "0.2.2",
"@backstage/plugin-airbrake": "0.3.10",
"@backstage/plugin-airbrake-backend": "0.2.10",
"@backstage/plugin-allure": "0.1.26",
"@backstage/plugin-analytics-module-ga": "0.1.21",
"@backstage/plugin-apache-airflow": "0.2.3",
"@backstage/plugin-api-docs": "0.8.10",
"@backstage/types": "1.0.1",
"@backstage/version-bridge": "1.0.2",
"@backstage/plugin-adr": "0.2.3",
"@backstage/plugin-adr-backend": "0.2.3",
"@backstage/plugin-adr-common": "0.2.3",
"@backstage/plugin-airbrake": "0.3.11",
"@backstage/plugin-airbrake-backend": "0.2.11",
"@backstage/plugin-allure": "0.1.27",
"@backstage/plugin-analytics-module-ga": "0.1.22",
"@backstage/plugin-apache-airflow": "0.2.4",
"@backstage/plugin-api-docs": "0.8.11",
"@backstage/plugin-api-docs-module-protoc-gen-doc": "0.1.0",
"@backstage/plugin-apollo-explorer": "0.1.3",
"@backstage/plugin-app-backend": "0.3.37",
"@backstage/plugin-auth-backend": "0.17.0",
"@backstage/plugin-auth-node": "0.2.6",
"@backstage/plugin-azure-devops": "0.2.1",
"@backstage/plugin-azure-devops-backend": "0.3.16",
"@backstage/plugin-apollo-explorer": "0.1.4",
"@backstage/plugin-app-backend": "0.3.38",
"@backstage/plugin-auth-backend": "0.17.1",
"@backstage/plugin-auth-node": "0.2.7",
"@backstage/plugin-azure-devops": "0.2.2",
"@backstage/plugin-azure-devops-backend": "0.3.17",
"@backstage/plugin-azure-devops-common": "0.3.0",
"@backstage/plugin-badges": "0.2.34",
"@backstage/plugin-badges-backend": "0.1.31",
"@backstage/plugin-bazaar": "0.1.25",
"@backstage/plugin-bazaar-backend": "0.2.0",
"@backstage/plugin-bitbucket-cloud-common": "0.2.0",
"@backstage/plugin-bitrise": "0.1.37",
"@backstage/plugin-catalog": "1.6.0",
"@backstage/plugin-catalog-backend": "1.5.0",
"@backstage/plugin-catalog-backend-module-aws": "0.1.10",
"@backstage/plugin-catalog-backend-module-azure": "0.1.8",
"@backstage/plugin-catalog-backend-module-bitbucket": "0.2.4",
"@backstage/plugin-catalog-backend-module-bitbucket-cloud": "0.1.4",
"@backstage/plugin-catalog-backend-module-bitbucket-server": "0.1.2",
"@backstage/plugin-catalog-backend-module-gerrit": "0.1.5",
"@backstage/plugin-catalog-backend-module-github": "0.1.8",
"@backstage/plugin-catalog-backend-module-gitlab": "0.1.8",
"@backstage/plugin-catalog-backend-module-ldap": "0.5.4",
"@backstage/plugin-catalog-backend-module-msgraph": "0.4.3",
"@backstage/plugin-catalog-backend-module-openapi": "0.1.3",
"@backstage/plugin-catalog-common": "1.0.7",
"@internal/plugin-catalog-customized": "0.0.3",
"@backstage/plugin-catalog-graph": "0.2.22",
"@backstage/plugin-catalog-graphql": "0.3.14",
"@backstage/plugin-catalog-import": "0.9.0",
"@backstage/plugin-catalog-node": "1.2.0",
"@backstage/plugin-catalog-react": "1.2.0",
"@backstage/plugin-cicd-statistics": "0.1.12",
"@backstage/plugin-cicd-statistics-module-gitlab": "0.1.6",
"@backstage/plugin-circleci": "0.3.10",
"@backstage/plugin-cloudbuild": "0.3.10",
"@backstage/plugin-code-climate": "0.1.10",
"@backstage/plugin-code-coverage": "0.2.3",
"@backstage/plugin-code-coverage-backend": "0.2.3",
"@backstage/plugin-codescene": "0.1.5",
"@backstage/plugin-config-schema": "0.1.33",
"@backstage/plugin-cost-insights": "0.11.32",
"@backstage/plugin-azure-sites": "0.1.0",
"@backstage/plugin-azure-sites-backend": "0.1.0",
"@backstage/plugin-azure-sites-common": "0.1.0",
"@backstage/plugin-badges": "0.2.35",
"@backstage/plugin-badges-backend": "0.1.32",
"@backstage/plugin-bazaar": "0.2.0",
"@backstage/plugin-bazaar-backend": "0.2.1",
"@backstage/plugin-bitbucket-cloud-common": "0.2.1",
"@backstage/plugin-bitrise": "0.1.38",
"@backstage/plugin-catalog": "1.6.1",
"@backstage/plugin-catalog-backend": "1.5.1",
"@backstage/plugin-catalog-backend-module-aws": "0.1.11",
"@backstage/plugin-catalog-backend-module-azure": "0.1.9",
"@backstage/plugin-catalog-backend-module-bitbucket": "0.2.5",
"@backstage/plugin-catalog-backend-module-bitbucket-cloud": "0.1.5",
"@backstage/plugin-catalog-backend-module-bitbucket-server": "0.1.3",
"@backstage/plugin-catalog-backend-module-gerrit": "0.1.6",
"@backstage/plugin-catalog-backend-module-github": "0.2.0",
"@backstage/plugin-catalog-backend-module-gitlab": "0.1.9",
"@backstage/plugin-catalog-backend-module-ldap": "0.5.5",
"@backstage/plugin-catalog-backend-module-msgraph": "0.4.4",
"@backstage/plugin-catalog-backend-module-openapi": "0.1.4",
"@backstage/plugin-catalog-common": "1.0.8",
"@internal/plugin-catalog-customized": "0.0.4",
"@backstage/plugin-catalog-graph": "0.2.23",
"@backstage/plugin-catalog-graphql": "0.3.15",
"@backstage/plugin-catalog-import": "0.9.1",
"@backstage/plugin-catalog-node": "1.2.1",
"@backstage/plugin-catalog-react": "1.2.1",
"@backstage/plugin-cicd-statistics": "0.1.13",
"@backstage/plugin-cicd-statistics-module-gitlab": "0.1.7",
"@backstage/plugin-circleci": "0.3.11",
"@backstage/plugin-cloudbuild": "0.3.11",
"@backstage/plugin-code-climate": "0.1.11",
"@backstage/plugin-code-coverage": "0.2.4",
"@backstage/plugin-code-coverage-backend": "0.2.4",
"@backstage/plugin-codescene": "0.1.6",
"@backstage/plugin-config-schema": "0.1.34",
"@backstage/plugin-cost-insights": "0.12.0",
"@backstage/plugin-cost-insights-common": "0.1.1",
"@backstage/plugin-dynatrace": "1.0.0",
"@internal/plugin-todo-list": "1.0.6",
"@internal/plugin-todo-list-backend": "1.0.6",
"@internal/plugin-todo-list-common": "1.0.5",
"@backstage/plugin-explore": "0.3.41",
"@backstage/plugin-explore-react": "0.0.22",
"@backstage/plugin-firehydrant": "0.1.27",
"@backstage/plugin-fossa": "0.2.42",
"@backstage/plugin-gcalendar": "0.3.6",
"@backstage/plugin-gcp-projects": "0.3.29",
"@backstage/plugin-git-release-manager": "0.3.23",
"@backstage/plugin-github-actions": "0.5.10",
"@backstage/plugin-github-deployments": "0.1.41",
"@backstage/plugin-github-issues": "0.1.2",
"@backstage/plugin-github-pull-requests-board": "0.1.4",
"@backstage/plugin-gitops-profiles": "0.3.28",
"@backstage/plugin-gocd": "0.1.16",
"@backstage/plugin-graphiql": "0.2.42",
"@backstage/plugin-graphql-backend": "0.1.27",
"@backstage/plugin-home": "0.4.26",
"@backstage/plugin-ilert": "0.1.36",
"@backstage/plugin-jenkins": "0.7.9",
"@backstage/plugin-jenkins-backend": "0.1.27",
"@backstage/plugin-jenkins-common": "0.1.9",
"@backstage/plugin-kafka": "0.3.10",
"@backstage/plugin-kafka-backend": "0.2.30",
"@backstage/plugin-kubernetes": "0.7.3",
"@backstage/plugin-kubernetes-backend": "0.7.3",
"@backstage/plugin-kubernetes-common": "0.4.3",
"@backstage/plugin-lighthouse": "0.3.10",
"@backstage/plugin-newrelic": "0.3.28",
"@backstage/plugin-newrelic-dashboard": "0.2.3",
"@backstage/plugin-org": "0.5.10",
"@backstage/plugin-pagerduty": "0.5.3",
"@backstage/plugin-periskop": "0.1.8",
"@backstage/plugin-periskop-backend": "0.1.8",
"@backstage/plugin-permission-backend": "0.5.12",
"@backstage/plugin-permission-common": "0.7.0",
"@backstage/plugin-permission-node": "0.7.0",
"@backstage/plugin-permission-react": "0.4.6",
"@backstage/plugin-playlist": "0.1.1",
"@backstage/plugin-playlist-backend": "0.2.0",
"@backstage/plugin-playlist-common": "0.1.1",
"@backstage/plugin-proxy-backend": "0.2.31",
"@backstage/plugin-rollbar": "0.4.10",
"@backstage/plugin-rollbar-backend": "0.1.34",
"@backstage/plugin-scaffolder": "1.7.0",
"@backstage/plugin-scaffolder-backend": "1.7.0",
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "0.2.12",
"@backstage/plugin-scaffolder-backend-module-rails": "0.4.5",
"@backstage/plugin-scaffolder-backend-module-yeoman": "0.2.10",
"@backstage/plugin-scaffolder-common": "1.2.1",
"@backstage/plugin-search": "1.0.3",
"@backstage/plugin-search-backend": "1.1.0",
"@backstage/plugin-search-backend-module-elasticsearch": "1.0.3",
"@backstage/plugin-search-backend-module-pg": "0.4.1",
"@backstage/plugin-search-backend-node": "1.0.3",
"@backstage/plugin-search-common": "1.1.0",
"@backstage/plugin-search-react": "1.2.0",
"@backstage/plugin-sentry": "0.4.3",
"@backstage/plugin-shortcuts": "0.3.2",
"@backstage/plugin-sonarqube": "0.4.2",
"@backstage/plugin-sonarqube-backend": "0.1.2",
"@backstage/plugin-splunk-on-call": "0.3.34",
"@backstage/plugin-stack-overflow": "0.1.6",
"@backstage/plugin-stack-overflow-backend": "0.1.6",
"@backstage/plugin-tech-insights": "0.3.1",
"@backstage/plugin-tech-insights-backend": "0.5.3",
"@backstage/plugin-tech-insights-backend-module-jsonfc": "0.1.21",
"@backstage/plugin-tech-insights-common": "0.2.7",
"@backstage/plugin-tech-insights-node": "0.3.5",
"@backstage/plugin-tech-radar": "0.5.17",
"@backstage/plugin-techdocs": "1.3.3",
"@backstage/plugin-techdocs-addons-test-utils": "1.0.5",
"@backstage/plugin-techdocs-backend": "1.4.0",
"@backstage/plugin-techdocs-module-addons-contrib": "1.0.5",
"@backstage/plugin-techdocs-node": "1.4.1",
"@backstage/plugin-techdocs-react": "1.0.5",
"@backstage/plugin-todo": "0.2.12",
"@backstage/plugin-todo-backend": "0.1.34",
"@backstage/plugin-user-settings": "0.5.0",
"@backstage/plugin-user-settings-backend": "0.1.1",
"@backstage/plugin-vault": "0.1.4",
"@backstage/plugin-vault-backend": "0.2.3",
"@backstage/plugin-xcmetrics": "0.2.30",
"@backstage/plugin-azure-sites": "0.0.0",
"@backstage/plugin-azure-sites-backend": "0.0.0",
"@backstage/plugin-azure-sites-common": "0.0.0"
"@backstage/plugin-dynatrace": "1.0.1",
"@backstage/plugin-events-backend": "0.1.0",
"@backstage/plugin-events-backend-module-aws-sqs": "0.1.0",
"@backstage/plugin-events-backend-module-azure": "0.1.0",
"@backstage/plugin-events-backend-module-bitbucket-cloud": "0.1.0",
"@backstage/plugin-events-backend-module-gerrit": "0.1.0",
"@backstage/plugin-events-backend-module-github": "0.1.0",
"@backstage/plugin-events-backend-module-gitlab": "0.1.0",
"@backstage/plugin-events-backend-test-utils": "0.1.0",
"@backstage/plugin-events-node": "0.1.0",
"@internal/plugin-todo-list": "1.0.7",
"@internal/plugin-todo-list-backend": "1.0.7",
"@internal/plugin-todo-list-common": "1.0.6",
"@backstage/plugin-explore": "0.3.42",
"@backstage/plugin-explore-react": "0.0.23",
"@backstage/plugin-firehydrant": "0.1.28",
"@backstage/plugin-fossa": "0.2.43",
"@backstage/plugin-gcalendar": "0.3.7",
"@backstage/plugin-gcp-projects": "0.3.30",
"@backstage/plugin-git-release-manager": "0.3.24",
"@backstage/plugin-github-actions": "0.5.11",
"@backstage/plugin-github-deployments": "0.1.42",
"@backstage/plugin-github-issues": "0.2.0",
"@backstage/plugin-github-pull-requests-board": "0.1.5",
"@backstage/plugin-gitops-profiles": "0.3.29",
"@backstage/plugin-gocd": "0.1.17",
"@backstage/plugin-graphiql": "0.2.43",
"@backstage/plugin-graphql-backend": "0.1.28",
"@backstage/plugin-home": "0.4.27",
"@backstage/plugin-ilert": "0.2.0",
"@backstage/plugin-jenkins": "0.7.10",
"@backstage/plugin-jenkins-backend": "0.1.28",
"@backstage/plugin-jenkins-common": "0.1.10",
"@backstage/plugin-kafka": "0.3.11",
"@backstage/plugin-kafka-backend": "0.2.31",
"@backstage/plugin-kubernetes": "0.7.4",
"@backstage/plugin-kubernetes-backend": "0.8.0",
"@backstage/plugin-kubernetes-common": "0.4.4",
"@backstage/plugin-lighthouse": "0.3.11",
"@backstage/plugin-newrelic": "0.3.29",
"@backstage/plugin-newrelic-dashboard": "0.2.4",
"@backstage/plugin-org": "0.6.0",
"@backstage/plugin-org-react": "0.1.0",
"@backstage/plugin-pagerduty": "0.5.4",
"@backstage/plugin-periskop": "0.1.9",
"@backstage/plugin-periskop-backend": "0.1.9",
"@backstage/plugin-permission-backend": "0.5.13",
"@backstage/plugin-permission-common": "0.7.1",
"@backstage/plugin-permission-node": "0.7.1",
"@backstage/plugin-permission-react": "0.4.7",
"@backstage/plugin-playlist": "0.1.2",
"@backstage/plugin-playlist-backend": "0.2.1",
"@backstage/plugin-playlist-common": "0.1.2",
"@backstage/plugin-proxy-backend": "0.2.32",
"@backstage/plugin-rollbar": "0.4.11",
"@backstage/plugin-rollbar-backend": "0.1.35",
"@backstage/plugin-scaffolder": "1.8.0",
"@backstage/plugin-scaffolder-backend": "1.8.0",
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "0.2.13",
"@backstage/plugin-scaffolder-backend-module-rails": "0.4.6",
"@backstage/plugin-scaffolder-backend-module-yeoman": "0.2.11",
"@backstage/plugin-scaffolder-common": "1.2.2",
"@backstage/plugin-search": "1.0.4",
"@backstage/plugin-search-backend": "1.1.1",
"@backstage/plugin-search-backend-module-elasticsearch": "1.0.4",
"@backstage/plugin-search-backend-module-pg": "0.4.2",
"@backstage/plugin-search-backend-node": "1.0.4",
"@backstage/plugin-search-common": "1.1.1",
"@backstage/plugin-search-react": "1.2.1",
"@backstage/plugin-sentry": "0.4.4",
"@backstage/plugin-shortcuts": "0.3.3",
"@backstage/plugin-sonarqube": "0.5.0",
"@backstage/plugin-sonarqube-backend": "0.1.3",
"@backstage/plugin-splunk-on-call": "0.4.0",
"@backstage/plugin-stack-overflow": "0.1.7",
"@backstage/plugin-stack-overflow-backend": "0.1.7",
"@backstage/plugin-tech-insights": "0.3.3",
"@backstage/plugin-tech-insights-backend": "0.5.4",
"@backstage/plugin-tech-insights-backend-module-jsonfc": "0.1.22",
"@backstage/plugin-tech-insights-common": "0.2.8",
"@backstage/plugin-tech-insights-node": "0.3.6",
"@backstage/plugin-tech-radar": "0.5.18",
"@backstage/plugin-techdocs": "1.4.0",
"@backstage/plugin-techdocs-addons-test-utils": "1.0.6",
"@backstage/plugin-techdocs-backend": "1.4.1",
"@backstage/plugin-techdocs-module-addons-contrib": "1.0.6",
"@backstage/plugin-techdocs-node": "1.4.2",
"@backstage/plugin-techdocs-react": "1.0.6",
"@backstage/plugin-todo": "0.2.13",
"@backstage/plugin-todo-backend": "0.1.35",
"@backstage/plugin-user-settings": "0.5.1",
"@backstage/plugin-user-settings-backend": "0.1.2",
"@backstage/plugin-vault": "0.1.5",
"@backstage/plugin-vault-backend": "0.2.4",
"@backstage/plugin-xcmetrics": "0.2.31",
"@backstage/plugin-catalog-backend-module-incremental-ingestion": "0.0.0",
"@backstage/plugin-explore-backend": "0.0.0",
"@backstage/plugin-explore-common": "0.0.0"
},
"changesets": [
"analyze-software-creation",
"analyze-software-exploration",
"big-islands-add",
"brave-eels-allow",
"brown-days-pretend",
"calm-bottles-happen",
"chatty-planets-flash",
"clean-feet-remain",
"clean-planets-rhyme",
"dirty-birds-burn",
"dull-oranges-tap",
"eight-pears-attack",
"eleven-pets-sneeze",
"few-books-remember",
"flat-items-perform",
"flat-kangaroos-kiss",
"forty-bags-trade",
"forty-jokes-lie",
"fresh-cooks-sing",
"fresh-weeks-share",
"gorgeous-balloons-sit",
"gorgeous-onions-thank",
"gorgeous-queens-pull",
"great-colts-invite",
"grumpy-pigs-reflect",
"happy-avocados-tan",
"heavy-elephants-nail",
"itchy-paws-protect",
"kind-emus-juggle",
"lazy-planes-repair",
"little-bikes-eat",
"lucky-cats-peel",
"lucky-spoons-hide",
"mean-files-fly",
"metal-dogs-swim",
"nasty-crabs-share",
"orange-trees-peel",
"popular-bulldogs-lie",
"popular-mails-wave",
"real-swans-repair",
"renovate-6fb5f1b",
"selfish-kiwis-matter",
"shaggy-birds-happen",
"shaggy-colts-watch",
"sharp-goats-itch",
"shiny-beers-relax",
"short-balloons-work",
"sixty-islands-develop",
"sixty-pigs-shave",
"sixty-singers-push",
"spicy-parents-lick",
"spotty-dryers-explain",
"stupid-pens-occur",
"sweet-readers-compare",
"tame-ads-appear",
"tasty-colts-hug",
"tasty-scissors-tickle",
"ten-pens-draw",
"three-houses-agree",
"three-poems-think",
"two-oranges-joke",
"two-yaks-wave",
"unlucky-buttons-poke",
"wet-cameras-call"
"angry-dingos-lick",
"angry-trees-relax",
"chilly-ads-lay",
"clean-paws-fry",
"clever-pillows-drive",
"clever-rivers-obey",
"create-app-1669131574",
"create-app-1669720399",
"early-hairs-switch",
"early-parrots-guess",
"eight-spiders-know",
"eight-tables-hunt",
"fair-walls-talk",
"famous-cobras-suffer",
"fast-lies-remain",
"fluffy-walls-approve",
"forty-baboons-burn",
"four-adults-provide",
"four-buttons-clean",
"fresh-news-push",
"funny-numbers-compete",
"gold-icons-cheat",
"gold-yaks-join",
"gorgeous-hairs-applaud",
"healthy-crabs-collect",
"hip-chairs-tap",
"hip-stingrays-kneel",
"itchy-walls-boil",
"kind-walls-share",
"light-snakes-exercise",
"light-turtles-yawn",
"loud-rockets-reply",
"modern-mugs-shout",
"nasty-melons-build",
"nervous-mice-flow",
"new-bugs-march",
"nine-ears-whisper",
"old-bulldogs-fry",
"old-keys-leave",
"old-tips-cough",
"pretty-eagles-matter",
"pretty-melons-taste",
"quick-horses-cry",
"renovate-3fe8460",
"renovate-4bb70f3",
"renovate-50ee0c3",
"renovate-778b2fa",
"renovate-a5f7839",
"rich-balloons-leave",
"rich-garlics-play",
"rude-pugs-deny",
"rude-sloths-cross",
"search-heavy-frogs-confess",
"search-om-manniskan-ginge",
"search-tofu-panaeng",
"serious-windows-occur",
"silly-wolves-remember",
"slow-dragons-promise",
"slow-eggs-grab",
"slow-flies-marinate",
"slow-flies-marry",
"smart-radios-change",
"soft-nails-arrive",
"sour-flowers-care",
"sour-plums-grow",
"sour-queens-wait",
"stupid-clocks-return",
"stupid-gifts-serve",
"tender-colts-greet",
"tender-parrots-cover",
"thin-donuts-join",
"twelve-meals-smell",
"twenty-dodos-wash",
"warm-parents-notice",
"weak-ears-jam",
"wicked-games-search",
"yellow-forks-knock",
"young-turkeys-relax"
]
}
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-bazaar-backend': patch
---
Column `title` has replaced column `name` for `BazaarProject` in database
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
JSX and React Fast Refresh transforms are no longer enabled when bundling backend code.

Some files were not shown because too many files have changed in this diff Show More