Merge branch 'master' of https://github.com/backstage/backstage into fix-redirect-error-handling

This commit is contained in:
Stephen Glass
2024-10-01 23:12:47 -04:00
2566 changed files with 132470 additions and 57072 deletions
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-components': patch
---
Correct size of FavoriteToggle and inherit non-starred color from parent
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
Fix extra divider displayed in owner list picker on list tasks page
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-github': patch
---
Added examples for github:environment:create action and improve its test cases
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-search-backend-module-elasticsearch': patch
---
Align the configuration schema with the docs and actual behavior of the code
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/create-app': patch
---
Added the Kubernetes plugin to `create-app`
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
Create a separate route for the Scaffolder template editor and add the ability to refresh the page without closing the directory. Also, when the directory is closed, the user will stay on the editor page and can load a template folder from there.
-18
View File
@@ -1,18 +0,0 @@
---
'@backstage/plugin-auth-backend-module-cloudflare-access-provider': patch
'@backstage/plugin-auth-backend-module-vmware-cloud-provider': patch
'@backstage/plugin-auth-backend-module-atlassian-provider': patch
'@backstage/plugin-auth-backend-module-bitbucket-provider': patch
'@backstage/plugin-auth-backend-module-microsoft-provider': patch
'@backstage/plugin-auth-backend-module-onelogin-provider': patch
'@backstage/plugin-auth-backend-module-aws-alb-provider': patch
'@backstage/plugin-auth-backend-module-gcp-iap-provider': patch
'@backstage/plugin-auth-backend-module-github-provider': patch
'@backstage/plugin-auth-backend-module-gitlab-provider': patch
'@backstage/plugin-auth-backend-module-google-provider': patch
'@backstage/plugin-auth-backend-module-oauth2-provider': patch
'@backstage/plugin-auth-backend-module-oidc-provider': patch
'@backstage/plugin-auth-backend-module-okta-provider': patch
---
Add `signIn` to authentication provider configuration schema
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Add frontend-dynamic-container role to eslint config factory
+17
View File
@@ -0,0 +1,17 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Add `fetch:template:file` scaffolder action to download a single file and template the contents. Example usage:
```yaml
- id: fetch-file
name: Fetch File
action: fetch:template:file
input:
url: https://github.com/backstage/software-templates/blob/main/scaffolder-templates/create-react-app/skeleton/catalog-info.yaml
targetPath: './target/catalog-info.yaml'
values:
component_id: My Component
owner: Test
```
+9
View File
@@ -0,0 +1,9 @@
---
'@backstage/frontend-plugin-api': minor
---
Removed deprecated `namespace` option from `createExtension` and `createExtensionBlueprint`, including `.make` and `.makeWithOverides`, it's no longer necessary and will use the `pluginId` instead.
Removed deprecated `createExtensionOverrides` this should be replaced with `createFrontendModule` instead.
Removed deprecated `BackstagePlugin` type, use `FrontendPlugin` type instead from this same package.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog': minor
---
Updated default columns for location entities to remove description and tags from the catalog table view.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-events-backend-module-aws-sqs': patch
'@backstage/plugin-catalog-backend-module-aws': patch
'@backstage/backend-common': patch
---
Setup user agent header for AWS sdk clients, this enables users to better track API calls made from Backstage to AWS APIs through things like CloudTrail.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Added functionality to the prepack script that will append the default export type for entry points to the `exports` object before publishing. This is to help with identifying the declarative integration points for plugins without needing to fetch or run the plugins first.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': minor
---
**BREAKING**: The Jest configuration defined at `@backstage/cli/config/jest` no longer collects configuration defined in the `"jest"` field from all parent `package.json` files. Instead, it will only read and merge configuration from the `package.json` in the monorepo root if it exists, as well as the target package. In addition, configuration defined in the root `package.json` will now only be merged into each package configuration if it is a valid project-level configuration key.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-notifications': patch
---
Add examples for notification:send scaffolder action & improve related tests
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/create-app': patch
---
Bumped create-app version.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
Apply `defaultValue` props in `MultiEntityPicker`
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend-module-gerrit': patch
---
Fixed an issue preventing the provider's `schedule` config from being applied."
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
Create a separate route for the template form editor so we refresh it without being redirected to scaffolder edit page.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-backend': patch
---
Include step name and step id to checkpoint key
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
Change task list created at column to show timestamp
-27
View File
@@ -1,27 +0,0 @@
---
'@backstage/frontend-plugin-api': patch
---
Introduce a new way to encapsulate extension kinds that replaces the extension creator pattern with `createExtensionBlueprint`
This allows the creation of extension instances with the following pattern:
```tsx
// create the extension blueprint which is used to create instances
const EntityCardBlueprint = createExtensionBlueprint({
kind: 'entity-card',
attachTo: { id: 'test', input: 'default' },
output: [coreExtensionData.reactElement],
factory(params: { text: string }) {
return [coreExtensionData.reactElement(<h1>{params.text}</h1>)];
},
});
// create an instance of the extension blueprint with params
const testExtension = EntityCardBlueprint.make({
name: 'foo',
params: {
text: 'Hello World',
},
});
```
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
'@backstage/plugin-search-react': patch
'@backstage/plugin-home': patch
---
Updated alpha definitions of extension data references.
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-scaffolder-backend': minor
'@backstage/plugin-scaffolder-node': minor
---
Added pagination support for listing of tasks and the ability to filter on several users and task statuses.
+49
View File
@@ -0,0 +1,49 @@
---
'@backstage/plugin-signals-react': patch
'@backstage/plugin-signals': patch
'@backstage/plugin-api-docs-module-protoc-gen-doc': patch
'@backstage/plugin-techdocs-module-addons-contrib': patch
'@backstage/plugin-catalog-unprocessed-entities': patch
'@backstage/plugin-scaffolder-node-test-utils': patch
'@backstage/plugin-techdocs-addons-test-utils': patch
'@backstage/frontend-plugin-api': patch
'@backstage/frontend-test-utils': patch
'@backstage/integration-react': patch
'@backstage/plugin-kubernetes-cluster': patch
'@backstage/frontend-app-api': patch
'@backstage/core-compat-api': patch
'@backstage/core-components': patch
'@backstage/core-plugin-api': patch
'@backstage/plugin-kubernetes-react': patch
'@backstage/plugin-permission-react': patch
'@backstage/plugin-scaffolder-react': patch
'@backstage/version-bridge': patch
'@backstage/plugin-app-visualizer': patch
'@backstage/plugin-catalog-import': patch
'@backstage/plugin-techdocs-react': patch
'@backstage/app-defaults': patch
'@backstage/core-app-api': patch
'@backstage/plugin-catalog-graph': patch
'@backstage/plugin-catalog-react': patch
'@backstage/plugin-config-schema': patch
'@backstage/plugin-notifications': patch
'@backstage/plugin-user-settings': patch
'@backstage/plugin-search-react': patch
'@backstage/test-utils': patch
'@backstage/dev-utils': patch
'@backstage/plugin-auth-react': patch
'@backstage/plugin-home-react': patch
'@backstage/plugin-kubernetes': patch
'@backstage/plugin-scaffolder': patch
'@backstage/plugin-org-react': patch
'@backstage/plugin-api-docs': patch
'@backstage/plugin-devtools': patch
'@backstage/plugin-techdocs': patch
'@backstage/plugin-catalog': patch
'@backstage/theme': patch
'@backstage/plugin-search': patch
'@backstage/plugin-home': patch
'@backstage/plugin-org': patch
---
Move `@types/react` to a peer dependency.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/frontend-plugin-api': patch
---
The `ExtensionBoundary` now by default infers whether it's routable from whether it outputs a route path.
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-scaffolder-react': minor
'@backstage/plugin-scaffolder': minor
---
Added support for `FormFieldBlueprint` to create field extensions in the Scaffolder plugin
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/core-components': patch
---
Move the `Link` component to the `RoutedTabs` instead of the `HeaderTabs` component
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-api-docs': patch
'@backstage/plugin-catalog': patch
---
Empty states updated with external link icon for learn more links
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/frontend-app-api': minor
---
Removed deprecated `createApp` and `CreateAppFeatureLoader` from `@backstage/frontend-app-api`, use the same `createApp` and `CreateAppFeatureLoader` import from `@backstage/frontend-defaults` instead.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/eslint-plugin': patch
---
Internal refactor to deal with `estree` upgrade
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
Correct `EntityDisplayName`'s icon alignment with the text.
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-techdocs': patch
---
Make `emptyState` input optional on `entity-content:techdocs` extension so that
the default empty state extension works correctly.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
Create a separate route for the custom fields explorer so we refresh it without being redirected to scaffolder edit page.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/repo-tools': patch
---
Properly log instructions when APIs do not match
@@ -2,4 +2,4 @@
'@backstage/cli': patch
---
Use ES2022 in CLI bundler
Remove unknown dependency `diff`
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-react': patch
---
Add ability to customise form fields in the UI by exposing `uiSchema` and `formContext` in `FormProps`
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/repo-tools': minor
---
Update @microsoft/api-extractor and use their api report resolution.
Change api report format from `api-report.md` to `report.api.md`
-18
View File
@@ -1,18 +0,0 @@
---
'@backstage/frontend-plugin-api': patch
---
Added a new `IconBundleBlueprint` that lets you create icon bundle extensions that can be installed in an App in order to override or add new app icons.
```tsx
import { IconBundleBlueprint } from '@backstage/frontend-plugin-api';
const exampleIconBundle = IconBundleBlueprint.make({
name: 'example-bundle',
params: {
icons: {
user: MyOwnUserIcon,
},
},
});
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/frontend-app-api': patch
---
Support icon overriding with the new `IconBundleBlueprint` API.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/integration-react': patch
---
Revert of change #26430
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/cli': patch
---
Added support for a new experimental `EXPERIMENTAL_TRIM_NEXT_ENTRY` flag which removes any `./next` entry points present in packages when building and publishing.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-rails': patch
---
Add examples for fetch:rails scaffolder action & improve related tests
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/frontend-plugin-api': patch
'@backstage/frontend-test-utils': patch
---
Internal refactor of usage of opaque types.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/create-app': patch
---
Fixed lack of `.yarnrc.yml` in the template.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
The `createHealthRouter` utility that allows you to create a health check router is now exported via `@backstage/backend-defaults/rootHttpRouter`.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/app-defaults': patch
---
Added `externalLink` to icon defaults
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': minor
---
Improved the layout of the manage templates page (`/edit`) by adding icons and descriptions that better describe what each page is for. Updated the header menu to link back to the scaffolder create page.
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/plugin-scaffolder-react': patch
'@backstage/plugin-scaffolder': patch
---
Add support for pagination in scaffolder tasks list
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/frontend-test-utils': patch
'@backstage/frontend-app-api': patch
---
Added support for v2 extensions, which declare their inputs and outputs without using a data map.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-gitlab': patch
---
Allow the `createGitlabProjectVariableAction` to use oauth tokens
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/app-defaults': patch
---
Updated the `bitbucket-server-auth` default API to set its environment based on the `auth.environment` config option instead of being hardcoded to `development`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Updated default backend plugin to use `RootConfigService` instead of `Config`. This also removes the dependency on `@backstage/config` as it's no longer used.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
'@backstage/plugin-catalog-node': patch
---
Added setAllowedLocationTypes while introducing a new extension point called CatalogLocationsExtensionPoint
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-components': patch
---
Fixed a bug in the `SidebarSubmenu` core component that caused the nested menu to overlap with the sidebar when the user hovers over the pinned sidebar.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': patch
---
Change "Register Existing Component" CTA to outlined as it's not a primary action on the scaffolder pages
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': minor
---
Text field content of the `EntityPicker` is now more readable as it uses entity title instead of entity reference.
+30
View File
@@ -0,0 +1,30 @@
---
'@backstage/frontend-plugin-api': patch
---
It is now possible to override the blueprint parameters when overriding an extension created from a blueprint:
```ts
const myExtension = MyBlueprint.make({
params: {
myParam: 'myDefault',
},
});
const myOverride = myExtension.override({
params: {
myParam: 'myOverride',
},
});
const myFactoryOverride = myExtension.override({
factory(origFactory) {
return origFactory({
params: {
myParam: 'myOverride',
},
});
},
});
```
The provided parameters will be merged with the original parameters of the extension.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-react': minor
---
Add scaffolder option to display object items in separate rows on review page
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-graph': patch
---
Memoize entity graph nodes when applying an `entityFilter` to prevent repeated redraws
+54
View File
@@ -0,0 +1,54 @@
---
'@backstage/plugin-scaffolder-backend-module-confluence-to-markdown': patch
'@backstage/plugin-search-backend-module-stack-overflow-collator': patch
'@backstage/plugin-catalog-backend-module-incremental-ingestion': patch
'@backstage/plugin-scaffolder-backend-module-notifications': patch
'@backstage/plugin-catalog-backend-module-bitbucket-cloud': patch
'@backstage/plugin-scaffolder-backend-module-cookiecutter': patch
'@backstage/plugin-auth-backend-module-aws-alb-provider': patch
'@backstage/plugin-search-backend-module-elasticsearch': patch
'@backstage/plugin-auth-backend-module-guest-provider': patch
'@backstage/plugin-catalog-backend-module-unprocessed': patch
'@backstage/plugin-notifications-backend-module-email': patch
'@backstage/plugin-auth-backend-module-oidc-provider': patch
'@backstage/plugin-catalog-backend-module-gitlab-org': patch
'@backstage/backend-dynamic-feature-service': patch
'@backstage/plugin-scaffolder-backend-module-github': patch
'@backstage/plugin-scaffolder-backend-module-gitlab': patch
'@backstage/plugin-scaffolder-backend-module-yeoman': patch
'@backstage/plugin-scaffolder-backend-module-rails': patch
'@backstage/plugin-catalog-backend-module-openapi': patch
'@backstage/plugin-search-backend-module-techdocs': patch
'@backstage/plugin-catalog-backend-module-github': patch
'@backstage/plugin-events-backend-module-aws-sqs': patch
'@backstage/plugin-search-backend-module-catalog': patch
'@backstage/plugin-search-backend-module-explore': patch
'@backstage/plugin-scaffolder-node-test-utils': patch
'@backstage/plugin-search-backend-module-pg': patch
'@backstage/plugin-notifications-backend': patch
'@backstage/plugin-search-backend-node': patch
'@backstage/plugin-kubernetes-backend': patch
'@backstage/plugin-notifications-node': patch
'@backstage/plugin-permission-backend': patch
'@backstage/plugin-scaffolder-backend': patch
'@backstage/backend-defaults': patch
'@backstage/backend-app-api': patch
'@backstage/plugin-devtools-backend': patch
'@backstage/plugin-techdocs-backend': patch
'@backstage/plugin-catalog-backend': patch
'@backstage/plugin-kubernetes-node': patch
'@backstage/plugin-permission-node': patch
'@backstage/plugin-scaffolder-node': patch
'@backstage/plugin-signals-backend': patch
'@backstage/plugin-events-backend': patch
'@backstage/plugin-search-backend': patch
'@backstage/plugin-proxy-backend': patch
'@backstage/plugin-auth-backend': patch
'@backstage/plugin-signals-node': patch
'@backstage/plugin-app-backend': patch
'@backstage/plugin-events-node': patch
'@backstage/plugin-auth-node': patch
'@backstage/cli': patch
---
Remove references to in-repo backend-common
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
The experimental module federation build now has the ability to force the use of development versions of `react` and `react-dom` by setting the `FORCE_REACT_DEVELOPMENT` flag.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-msgraph': patch
---
Added option to ingest groups based on their group membership in Azure Entra ID
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': minor
---
Added ability to create a new local scaffolder template to ease onboarding when creating new templates.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-react': minor
---
Added a new prop, `disableTooltip` to the `EntityRefLink` component
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-kubernetes': patch
---
Adds support for Backstage's new frontend system, available via the `/alpha` sub-path export.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
Internal refactor to remove unnecessary `routable` prop in the implementation of the `createEntityContentExtension` alpha export.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-techdocs-node': patch
---
Update `patchMkdocsYmlPrebuild` to modify `repo_url` and `edit_uri` independently.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-react': patch
---
support `ajv-errors` for scaffolder validation to allow for customizing the error messages
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder': minor
---
Added ability to link to a specific action on the actions page
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/config-loader': patch
---
The `env` option of `ConfigSources.default` now correctly allows undefined members.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-devtools-backend': patch
---
Removed unused code for lockfile analysis.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-auth-backend-module-microsoft-provider': patch
---
Updated the Microsoft authenticator to accurately define required scopes, but to also omit the required and additional scopes when requesting resource scopes.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/repo-tools': minor
---
Adds a new command `backstage-repo-tools peer-deps` for validating your usage of peer dependencies in your plugins. It currently supports react related peer dependencies. It also has a `--fix` mode for quickly fixing any issues that it finds.
-6
View File
@@ -1,6 +0,0 @@
---
'@backstage/integration': minor
'@backstage/backend-defaults': patch
---
Updated `GitlabUrlReader.readUrl` and `GitlabUrlReader.readTree` to accept a user-provided token, supporting both bearer and private tokens.
-14
View File
@@ -1,14 +0,0 @@
---
'@backstage/backend-common': patch
---
The remaining exports in the package have now been deprecated:
- `cacheToPluginCacheManager`
- `createLegacyAuthAdapters`
- `LegacyCreateRouter`
- `legacyPlugin`
- `loggerToWinstonLogger`
- `makeLegacyPlugin`
Users of these export should fully [migrate to the new backend system](https://backstage.io/docs/backend-system/building-backends/migrating).
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-search-backend-module-pg': patch
---
Removing `@backstage/backend-app-api` dependency
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Remove usage of deprecated functionality from @backstage/config-loader
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend': patch
---
Preserve default `allowedLocationTypes` when `setAllowedLocationTypes()` of `CatalogLocationsExtensionPoint` is not called.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-react': patch
---
Fix extra divider displayed on user list picker component
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-gitlab': patch
---
Added test cases for gitlab:issue:edit examples
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/core-compat-api': patch
---
Internal update to remove deprecated `BackstagePlugin` type and move to `FrontendPlugin`
+246 -225
View File
@@ -2,241 +2,262 @@
"mode": "pre",
"tag": "next",
"initialVersions": {
"example-app": "0.2.99",
"@backstage/app-defaults": "1.5.8",
"example-app-next": "0.0.13",
"app-next-example-plugin": "0.0.13",
"example-backend": "0.0.28",
"@backstage/backend-app-api": "0.8.0",
"@backstage/backend-common": "0.23.3",
"@backstage/backend-defaults": "0.4.0",
"@backstage/backend-dev-utils": "0.1.4",
"@backstage/backend-dynamic-feature-service": "0.2.15",
"example-backend-legacy": "0.2.100",
"@backstage/backend-openapi-utils": "0.1.15",
"@backstage/backend-plugin-api": "0.7.0",
"@backstage/backend-tasks": "0.5.27",
"@backstage/backend-test-utils": "0.4.4",
"@backstage/catalog-client": "1.6.5",
"@backstage/catalog-model": "1.5.0",
"@backstage/cli": "0.26.11",
"example-app": "0.2.101",
"@backstage/app-defaults": "1.5.11",
"example-app-next": "0.0.15",
"app-next-example-plugin": "0.0.15",
"example-backend": "0.0.30",
"@backstage/backend-app-api": "1.0.0",
"@backstage/backend-defaults": "0.5.0",
"@backstage/backend-dev-utils": "0.1.5",
"@backstage/backend-dynamic-feature-service": "0.4.0",
"example-backend-legacy": "0.2.102",
"@backstage/backend-openapi-utils": "0.1.18",
"@backstage/backend-plugin-api": "1.0.0",
"@backstage/backend-test-utils": "1.0.0",
"@backstage/catalog-client": "1.7.0",
"@backstage/catalog-model": "1.7.0",
"@backstage/cli": "0.27.1",
"@backstage/cli-common": "0.1.14",
"@backstage/cli-node": "0.2.7",
"@backstage/codemods": "0.1.49",
"@backstage/cli-node": "0.2.8",
"@backstage/codemods": "0.1.50",
"@backstage/config": "1.2.0",
"@backstage/config-loader": "1.8.1",
"@backstage/core-app-api": "1.14.0",
"@backstage/core-compat-api": "0.2.7",
"@backstage/core-components": "0.14.9",
"@backstage/core-plugin-api": "1.9.3",
"@backstage/create-app": "0.5.17",
"@backstage/dev-utils": "1.0.35",
"e2e-test": "0.2.18",
"@backstage/config-loader": "1.9.1",
"@backstage/core-app-api": "1.15.0",
"@backstage/core-compat-api": "0.3.0",
"@backstage/core-components": "0.15.0",
"@backstage/core-plugin-api": "1.9.4",
"@backstage/create-app": "0.5.19",
"@backstage/dev-utils": "1.1.0",
"e2e-test": "0.2.20",
"@backstage/e2e-test-utils": "0.1.1",
"@backstage/errors": "1.2.4",
"@backstage/eslint-plugin": "0.1.8",
"@backstage/frontend-app-api": "0.7.3",
"@backstage/frontend-plugin-api": "0.6.7",
"@backstage/frontend-test-utils": "0.1.10",
"@backstage/integration": "1.13.0",
"@backstage/eslint-plugin": "0.1.9",
"@backstage/frontend-app-api": "0.9.0",
"@backstage/frontend-defaults": "0.1.0",
"@internal/frontend": "0.0.1",
"@backstage/frontend-plugin-api": "0.8.0",
"@backstage/frontend-test-utils": "0.2.0",
"@backstage/integration": "1.15.0",
"@backstage/integration-aws-node": "0.1.12",
"@backstage/integration-react": "1.1.29",
"@backstage/integration-react": "1.1.31",
"@internal/opaque": "0.0.1",
"@backstage/release-manifests": "0.0.11",
"@backstage/repo-tools": "0.9.4",
"@techdocs/cli": "1.8.16",
"techdocs-cli-embedded-app": "0.2.98",
"@backstage/test-utils": "1.5.8",
"@backstage/theme": "0.5.6",
"@backstage/repo-tools": "0.9.7",
"@techdocs/cli": "1.8.19",
"techdocs-cli-embedded-app": "0.2.100",
"@backstage/test-utils": "1.6.0",
"@backstage/theme": "0.5.7",
"@backstage/types": "1.1.1",
"@backstage/version-bridge": "1.0.8",
"yarn-plugin-backstage": "0.0.1",
"@backstage/plugin-api-docs": "0.11.7",
"@backstage/version-bridge": "1.0.9",
"yarn-plugin-backstage": "0.0.2",
"@backstage/plugin-api-docs": "0.11.9",
"@backstage/plugin-api-docs-module-protoc-gen-doc": "0.1.7",
"@backstage/plugin-app-backend": "0.3.71",
"@backstage/plugin-app-node": "0.1.22",
"@backstage/plugin-app-visualizer": "0.1.8",
"@backstage/plugin-auth-backend": "0.22.9",
"@backstage/plugin-auth-backend-module-atlassian-provider": "0.2.3",
"@backstage/plugin-auth-backend-module-aws-alb-provider": "0.1.14",
"@backstage/plugin-auth-backend-module-azure-easyauth-provider": "0.1.5",
"@backstage/plugin-auth-backend-module-bitbucket-provider": "0.1.5",
"@backstage/plugin-auth-backend-module-cloudflare-access-provider": "0.1.5",
"@backstage/plugin-auth-backend-module-gcp-iap-provider": "0.2.17",
"@backstage/plugin-auth-backend-module-github-provider": "0.1.19",
"@backstage/plugin-auth-backend-module-gitlab-provider": "0.1.19",
"@backstage/plugin-auth-backend-module-google-provider": "0.1.19",
"@backstage/plugin-auth-backend-module-guest-provider": "0.1.8",
"@backstage/plugin-auth-backend-module-microsoft-provider": "0.1.17",
"@backstage/plugin-auth-backend-module-oauth2-provider": "0.2.3",
"@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "0.1.15",
"@backstage/plugin-auth-backend-module-oidc-provider": "0.2.3",
"@backstage/plugin-auth-backend-module-okta-provider": "0.0.15",
"@backstage/plugin-auth-backend-module-onelogin-provider": "0.1.3",
"@backstage/plugin-auth-backend-module-pinniped-provider": "0.1.16",
"@backstage/plugin-auth-backend-module-vmware-cloud-provider": "0.2.3",
"@backstage/plugin-auth-node": "0.4.17",
"@backstage/plugin-auth-react": "0.1.4",
"@backstage/plugin-bitbucket-cloud-common": "0.2.21",
"@backstage/plugin-catalog": "1.21.1",
"@backstage/plugin-catalog-backend": "1.24.0",
"@backstage/plugin-catalog-backend-module-aws": "0.3.17",
"@backstage/plugin-catalog-backend-module-azure": "0.1.42",
"@backstage/plugin-catalog-backend-module-backstage-openapi": "0.2.5",
"@backstage/plugin-catalog-backend-module-bitbucket-cloud": "0.2.9",
"@backstage/plugin-catalog-backend-module-bitbucket-server": "0.1.36",
"@backstage/plugin-catalog-backend-module-gcp": "0.1.23",
"@backstage/plugin-catalog-backend-module-gerrit": "0.1.39",
"@backstage/plugin-catalog-backend-module-github": "0.6.5",
"@backstage/plugin-catalog-backend-module-github-org": "0.1.17",
"@backstage/plugin-catalog-backend-module-gitlab": "0.3.21",
"@backstage/plugin-catalog-backend-module-gitlab-org": "0.0.5",
"@backstage/plugin-catalog-backend-module-incremental-ingestion": "0.4.27",
"@backstage/plugin-catalog-backend-module-ldap": "0.7.0",
"@backstage/plugin-catalog-backend-module-logs": "0.0.1",
"@backstage/plugin-catalog-backend-module-msgraph": "0.5.30",
"@backstage/plugin-catalog-backend-module-openapi": "0.1.40",
"@backstage/plugin-catalog-backend-module-puppetdb": "0.1.28",
"@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "0.1.20",
"@backstage/plugin-catalog-backend-module-unprocessed": "0.4.9",
"@backstage/plugin-catalog-common": "1.0.25",
"@backstage/plugin-catalog-graph": "0.4.7",
"@backstage/plugin-catalog-import": "0.12.1",
"@backstage/plugin-catalog-node": "1.12.4",
"@backstage/plugin-catalog-react": "1.12.2",
"@backstage/plugin-catalog-unprocessed-entities": "0.2.6",
"@backstage/plugin-catalog-unprocessed-entities-common": "0.0.3",
"@backstage/plugin-config-schema": "0.1.57",
"@backstage/plugin-devtools": "0.1.16",
"@backstage/plugin-devtools-backend": "0.3.8",
"@backstage/plugin-devtools-common": "0.1.11",
"@backstage/plugin-events-backend": "0.3.9",
"@backstage/plugin-events-backend-module-aws-sqs": "0.3.8",
"@backstage/plugin-events-backend-module-azure": "0.2.8",
"@backstage/plugin-events-backend-module-bitbucket-cloud": "0.2.8",
"@backstage/plugin-events-backend-module-gerrit": "0.2.8",
"@backstage/plugin-events-backend-module-github": "0.2.8",
"@backstage/plugin-events-backend-module-gitlab": "0.2.8",
"@backstage/plugin-events-backend-test-utils": "0.1.32",
"@backstage/plugin-events-node": "0.3.8",
"@internal/plugin-todo-list": "1.0.29",
"@internal/plugin-todo-list-backend": "1.0.29",
"@internal/plugin-todo-list-common": "1.0.20",
"@backstage/plugin-home": "0.7.7",
"@backstage/plugin-home-react": "0.1.15",
"@backstage/plugin-kubernetes": "0.11.12",
"@backstage/plugin-kubernetes-backend": "0.18.3",
"@backstage/plugin-kubernetes-cluster": "0.0.13",
"@backstage/plugin-kubernetes-common": "0.8.1",
"@backstage/plugin-kubernetes-node": "0.1.16",
"@backstage/plugin-kubernetes-react": "0.4.1",
"@backstage/plugin-notifications": "0.2.3",
"@backstage/plugin-notifications-backend": "0.3.3",
"@backstage/plugin-notifications-backend-module-email": "0.1.3",
"@backstage/plugin-app": "0.1.0",
"@backstage/plugin-app-backend": "0.3.74",
"@backstage/plugin-app-node": "0.1.25",
"@backstage/plugin-app-visualizer": "0.1.10",
"@backstage/plugin-auth-backend": "0.23.0",
"@backstage/plugin-auth-backend-module-atlassian-provider": "0.3.0",
"@backstage/plugin-auth-backend-module-auth0-provider": "0.1.0",
"@backstage/plugin-auth-backend-module-aws-alb-provider": "0.2.0",
"@backstage/plugin-auth-backend-module-azure-easyauth-provider": "0.2.0",
"@backstage/plugin-auth-backend-module-bitbucket-provider": "0.2.0",
"@backstage/plugin-auth-backend-module-bitbucket-server-provider": "0.1.0",
"@backstage/plugin-auth-backend-module-cloudflare-access-provider": "0.3.0",
"@backstage/plugin-auth-backend-module-gcp-iap-provider": "0.3.0",
"@backstage/plugin-auth-backend-module-github-provider": "0.2.0",
"@backstage/plugin-auth-backend-module-gitlab-provider": "0.2.0",
"@backstage/plugin-auth-backend-module-google-provider": "0.2.0",
"@backstage/plugin-auth-backend-module-guest-provider": "0.2.0",
"@backstage/plugin-auth-backend-module-microsoft-provider": "0.2.0",
"@backstage/plugin-auth-backend-module-oauth2-provider": "0.3.0",
"@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "0.2.0",
"@backstage/plugin-auth-backend-module-oidc-provider": "0.3.0",
"@backstage/plugin-auth-backend-module-okta-provider": "0.1.0",
"@backstage/plugin-auth-backend-module-onelogin-provider": "0.2.0",
"@backstage/plugin-auth-backend-module-pinniped-provider": "0.2.0",
"@backstage/plugin-auth-backend-module-vmware-cloud-provider": "0.3.0",
"@backstage/plugin-auth-node": "0.5.2",
"@backstage/plugin-auth-react": "0.1.6",
"@backstage/plugin-bitbucket-cloud-common": "0.2.23",
"@backstage/plugin-catalog": "1.23.0",
"@backstage/plugin-catalog-backend": "1.26.0",
"@backstage/plugin-catalog-backend-module-aws": "0.4.2",
"@backstage/plugin-catalog-backend-module-azure": "0.2.2",
"@backstage/plugin-catalog-backend-module-backstage-openapi": "0.4.0",
"@backstage/plugin-catalog-backend-module-bitbucket-cloud": "0.3.2",
"@backstage/plugin-catalog-backend-module-bitbucket-server": "0.2.2",
"@backstage/plugin-catalog-backend-module-gcp": "0.3.0",
"@backstage/plugin-catalog-backend-module-gerrit": "0.2.2",
"@backstage/plugin-catalog-backend-module-github": "0.7.3",
"@backstage/plugin-catalog-backend-module-github-org": "0.3.0",
"@backstage/plugin-catalog-backend-module-gitlab": "0.4.2",
"@backstage/plugin-catalog-backend-module-gitlab-org": "0.2.0",
"@backstage/plugin-catalog-backend-module-incremental-ingestion": "0.5.3",
"@backstage/plugin-catalog-backend-module-ldap": "0.9.0",
"@backstage/plugin-catalog-backend-module-logs": "0.1.0",
"@backstage/plugin-catalog-backend-module-msgraph": "0.6.2",
"@backstage/plugin-catalog-backend-module-openapi": "0.2.0",
"@backstage/plugin-catalog-backend-module-puppetdb": "0.2.2",
"@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "0.2.0",
"@backstage/plugin-catalog-backend-module-unprocessed": "0.5.0",
"@backstage/plugin-catalog-common": "1.1.0",
"@backstage/plugin-catalog-graph": "0.4.9",
"@backstage/plugin-catalog-import": "0.12.3",
"@backstage/plugin-catalog-node": "1.13.0",
"@backstage/plugin-catalog-react": "1.13.0",
"@backstage/plugin-catalog-unprocessed-entities": "0.2.8",
"@backstage/plugin-catalog-unprocessed-entities-common": "0.0.4",
"@backstage/plugin-config-schema": "0.1.59",
"@backstage/plugin-devtools": "0.1.18",
"@backstage/plugin-devtools-backend": "0.4.0",
"@backstage/plugin-devtools-common": "0.1.12",
"@backstage/plugin-events-backend": "0.3.12",
"@backstage/plugin-events-backend-module-aws-sqs": "0.4.2",
"@backstage/plugin-events-backend-module-azure": "0.2.11",
"@backstage/plugin-events-backend-module-bitbucket-cloud": "0.2.11",
"@backstage/plugin-events-backend-module-gerrit": "0.2.11",
"@backstage/plugin-events-backend-module-github": "0.2.11",
"@backstage/plugin-events-backend-module-gitlab": "0.2.11",
"@backstage/plugin-events-backend-test-utils": "0.1.35",
"@backstage/plugin-events-node": "0.4.0",
"@internal/plugin-todo-list": "1.0.31",
"@internal/plugin-todo-list-backend": "1.0.31",
"@internal/plugin-todo-list-common": "1.0.21",
"@backstage/plugin-home": "0.7.10",
"@backstage/plugin-home-react": "0.1.17",
"@backstage/plugin-kubernetes": "0.11.14",
"@backstage/plugin-kubernetes-backend": "0.18.6",
"@backstage/plugin-kubernetes-cluster": "0.0.15",
"@backstage/plugin-kubernetes-common": "0.8.3",
"@backstage/plugin-kubernetes-node": "0.1.19",
"@backstage/plugin-kubernetes-react": "0.4.3",
"@backstage/plugin-notifications": "0.3.1",
"@backstage/plugin-notifications-backend": "0.4.0",
"@backstage/plugin-notifications-backend-module-email": "0.3.0",
"@backstage/plugin-notifications-common": "0.0.5",
"@backstage/plugin-notifications-node": "0.2.3",
"@backstage/plugin-org": "0.6.27",
"@backstage/plugin-org-react": "0.1.26",
"@backstage/plugin-permission-backend": "0.5.46",
"@backstage/plugin-permission-backend-module-allow-all-policy": "0.1.19",
"@backstage/plugin-permission-common": "0.8.0",
"@backstage/plugin-permission-node": "0.8.0",
"@backstage/plugin-permission-react": "0.4.24",
"@backstage/plugin-proxy-backend": "0.5.3",
"@backstage/plugin-scaffolder": "1.23.0",
"@backstage/plugin-scaffolder-backend": "1.23.0",
"@backstage/plugin-scaffolder-backend-module-azure": "0.1.14",
"@backstage/plugin-scaffolder-backend-module-bitbucket": "0.2.12",
"@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "0.1.12",
"@backstage/plugin-scaffolder-backend-module-bitbucket-server": "0.1.12",
"@backstage/plugin-scaffolder-backend-module-confluence-to-markdown": "0.2.23",
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "0.2.46",
"@backstage/plugin-scaffolder-backend-module-gcp": "0.1.0",
"@backstage/plugin-scaffolder-backend-module-gerrit": "0.1.14",
"@backstage/plugin-scaffolder-backend-module-gitea": "0.1.12",
"@backstage/plugin-scaffolder-backend-module-github": "0.4.0",
"@backstage/plugin-scaffolder-backend-module-gitlab": "0.4.4",
"@backstage/plugin-scaffolder-backend-module-notifications": "0.0.5",
"@backstage/plugin-scaffolder-backend-module-rails": "0.4.39",
"@backstage/plugin-scaffolder-backend-module-sentry": "0.1.30",
"@backstage/plugin-scaffolder-backend-module-yeoman": "0.3.6",
"@backstage/plugin-scaffolder-common": "1.5.4",
"@backstage/plugin-scaffolder-node": "0.4.8",
"@backstage/plugin-scaffolder-node-test-utils": "0.1.9",
"@backstage/plugin-scaffolder-react": "1.10.0",
"@backstage/plugin-search": "1.4.14",
"@backstage/plugin-search-backend": "1.5.14",
"@backstage/plugin-search-backend-module-catalog": "0.1.28",
"@backstage/plugin-search-backend-module-elasticsearch": "1.5.3",
"@backstage/plugin-search-backend-module-explore": "0.1.28",
"@backstage/plugin-search-backend-module-pg": "0.5.32",
"@backstage/plugin-search-backend-module-stack-overflow-collator": "0.1.15",
"@backstage/plugin-search-backend-module-techdocs": "0.1.27",
"@backstage/plugin-search-backend-node": "1.2.27",
"@backstage/plugin-search-common": "1.2.13",
"@backstage/plugin-search-react": "1.7.13",
"@backstage/plugin-signals": "0.0.8",
"@backstage/plugin-signals-backend": "0.1.8",
"@backstage/plugin-signals-node": "0.1.8",
"@backstage/plugin-signals-react": "0.0.4",
"@backstage/plugin-techdocs": "1.10.7",
"@backstage/plugin-techdocs-addons-test-utils": "1.0.35",
"@backstage/plugin-techdocs-backend": "1.10.9",
"@backstage/plugin-techdocs-module-addons-contrib": "1.1.12",
"@backstage/plugin-techdocs-node": "1.12.8",
"@backstage/plugin-techdocs-react": "1.2.6",
"@backstage/plugin-user-settings": "0.8.9",
"@backstage/plugin-user-settings-backend": "0.2.21",
"@backstage/plugin-user-settings-common": "0.0.1"
"@backstage/plugin-notifications-node": "0.2.6",
"@backstage/plugin-org": "0.6.29",
"@backstage/plugin-org-react": "0.1.28",
"@backstage/plugin-permission-backend": "0.5.49",
"@backstage/plugin-permission-backend-module-allow-all-policy": "0.2.0",
"@backstage/plugin-permission-common": "0.8.1",
"@backstage/plugin-permission-node": "0.8.3",
"@backstage/plugin-permission-react": "0.4.26",
"@backstage/plugin-proxy-backend": "0.5.6",
"@backstage/plugin-scaffolder": "1.25.0",
"@backstage/plugin-scaffolder-backend": "1.25.0",
"@backstage/plugin-scaffolder-backend-module-azure": "0.2.0",
"@backstage/plugin-scaffolder-backend-module-bitbucket": "0.3.0",
"@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "0.2.0",
"@backstage/plugin-scaffolder-backend-module-bitbucket-server": "0.2.0",
"@backstage/plugin-scaffolder-backend-module-confluence-to-markdown": "0.3.0",
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "0.3.0",
"@backstage/plugin-scaffolder-backend-module-gcp": "0.2.0",
"@backstage/plugin-scaffolder-backend-module-gerrit": "0.2.0",
"@backstage/plugin-scaffolder-backend-module-gitea": "0.2.0",
"@backstage/plugin-scaffolder-backend-module-github": "0.5.0",
"@backstage/plugin-scaffolder-backend-module-gitlab": "0.5.0",
"@backstage/plugin-scaffolder-backend-module-notifications": "0.1.0",
"@backstage/plugin-scaffolder-backend-module-rails": "0.5.0",
"@backstage/plugin-scaffolder-backend-module-sentry": "0.2.0",
"@backstage/plugin-scaffolder-backend-module-yeoman": "0.4.0",
"@backstage/plugin-scaffolder-common": "1.5.6",
"@backstage/plugin-scaffolder-node": "0.4.11",
"@backstage/plugin-scaffolder-node-test-utils": "0.1.12",
"@backstage/plugin-scaffolder-react": "1.12.0",
"@backstage/plugin-search": "1.4.16",
"@backstage/plugin-search-backend": "1.5.17",
"@backstage/plugin-search-backend-module-catalog": "0.2.2",
"@backstage/plugin-search-backend-module-elasticsearch": "1.5.6",
"@backstage/plugin-search-backend-module-explore": "0.2.2",
"@backstage/plugin-search-backend-module-pg": "0.5.35",
"@backstage/plugin-search-backend-module-stack-overflow-collator": "0.3.0",
"@backstage/plugin-search-backend-module-techdocs": "0.2.2",
"@backstage/plugin-search-backend-node": "1.3.2",
"@backstage/plugin-search-common": "1.2.14",
"@backstage/plugin-search-react": "1.8.0",
"@backstage/plugin-signals": "0.0.10",
"@backstage/plugin-signals-backend": "0.2.0",
"@backstage/plugin-signals-node": "0.1.11",
"@backstage/plugin-signals-react": "0.0.5",
"@backstage/plugin-techdocs": "1.10.9",
"@backstage/plugin-techdocs-addons-test-utils": "1.0.38",
"@backstage/plugin-techdocs-backend": "1.10.13",
"@backstage/plugin-techdocs-common": "0.1.0",
"@backstage/plugin-techdocs-module-addons-contrib": "1.1.14",
"@backstage/plugin-techdocs-node": "1.12.11",
"@backstage/plugin-techdocs-react": "1.2.8",
"@backstage/plugin-user-settings": "0.8.12",
"@backstage/plugin-user-settings-backend": "0.2.24",
"@backstage/plugin-user-settings-common": "0.0.1",
"@internal/scaffolder": "0.0.1"
},
"changesets": [
"blue-pumas-cheer",
"bright-trainers-brake",
"chilly-trains-sleep",
"cool-insects-remember",
"cuddly-zebras-crash",
"dry-squids-tap",
"dull-ghosts-double",
"early-trees-dance",
"eighty-mirrors-flow",
"flat-plums-grow",
"forty-ties-agree",
"forty-ties-disagree",
"friendly-feet-refuse",
"gentle-dryers-smile",
"grumpy-owls-suffer",
"heavy-numbers-love",
"hip-hairs-exist",
"late-games-protect",
"light-pianos-exercise",
"little-bulldogs-guess",
"little-suns-fly",
"mighty-dolls-retire",
"modern-parrots-protect",
"neat-gifts-join",
"new-scissors-try",
"nice-peas-retire",
"nine-cherries-decide",
"nine-glasses-nail",
"ninety-icons-smile",
"pink-gorillas-brake",
"plenty-tools-exist",
"rich-mugs-dress",
"selfish-bees-think",
"six-rats-kick",
"slow-toes-jog",
"small-spoons-shout",
"soft-gorillas-refuse",
"spotty-planets-accept",
"strange-papayas-beg",
"strong-otters-compete",
"stupid-dots-relate",
"swift-kings-sparkle",
"thirty-paws-hope",
"tiny-oranges-pretend",
"tough-lies-repair",
"violet-jokes-wave",
"wicked-bobcats-teach",
"wild-eggs-exist",
"witty-bears-behave"
"angry-mayflies-collect",
"angry-windows-decide",
"big-rules-nail",
"breezy-bulldogs-smell",
"brown-frogs-walk",
"chair-fairs-drive",
"chilled-dolphins-join",
"clever-paws-stare",
"cold-nails-rescue",
"create-app-1727774359",
"curly-foxes-brake",
"cyan-cooks-sing",
"cyan-peaches-lay",
"cyan-vans-study",
"dry-frogs-drum",
"early-drinks-kneel",
"early-sloths-cross",
"eight-steaks-chew",
"eleven-pugs-hear",
"fair-chairs-drive",
"famous-bobcats-remain",
"fifty-trainers-watch",
"five-gorillas-pay",
"five-turkeys-taste",
"flat-eels-exist",
"fluffy-pears-cry",
"four-moons-watch",
"friendly-cougars-return",
"funny-rocks-train",
"fuzzy-elephants-tease",
"giant-kiwis-retire",
"gold-pots-end",
"green-bottles-live",
"happy-ligers-think",
"honest-impalas-rescue",
"hungry-buckets-repair",
"large-hats-reply",
"large-plants-rhyme",
"light-rats-travel",
"long-humans-hunt",
"loud-hotels-tan",
"nasty-lamps-greet",
"nice-badgers-travel",
"polite-days-flash",
"pretty-plants-hammer",
"quiet-dingos-bathe",
"renovate-156753b",
"rich-deers-attend",
"rich-needles-collect",
"rude-apricots-eat",
"shy-olives-swim",
"slow-gorillas-thank",
"slow-trees-compare",
"sour-grapes-trade",
"sour-phones-fix",
"stale-roses-serve",
"strange-bees-attack",
"strong-monkeys-melt",
"sweet-chicken-smash",
"thirty-pets-fry",
"tiny-pugs-kick",
"tough-pillows-sip",
"two-plums-fail",
"weak-bottles-cross"
]
}
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/integration-react': minor
---
Added new ScmAuth method `forBitbucketServer` that uses correct OAuth scopes by default. Also updated `forBitbucket` method to allow overriding the default OAuth scopes.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-catalog-backend': patch
---
Fixed a bug where the concurrency limiter for URL reading was not honored
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-techdocs': patch
---
Add support for mkdocs material palette conditional hashes.
-57
View File
@@ -1,57 +0,0 @@
---
'@backstage/frontend-plugin-api': patch
---
Extensions have been changed to be declared with an array of inputs and outputs, rather than a map of named data refs. This change was made to reduce confusion around the role of the input and output names, as well as enable more powerful APIs for overriding extensions.
An extension that was previously declared like this:
```tsx
const exampleExtension = createExtension({
name: 'example',
inputs: {
items: createExtensionInput({
element: coreExtensionData.reactElement,
}),
},
output: {
element: coreExtensionData.reactElement,
},
factory({ inputs }) {
return {
element: (
<div>
Example
{inputs.items.map(item => {
return <div>{item.output.element}</div>;
})}
</div>
),
};
},
});
```
Should be migrated to the following:
```tsx
const exampleExtension = createExtension({
name: 'example',
inputs: {
items: createExtensionInput([coreExtensionData.reactElement]),
},
output: [coreExtensionData.reactElement],
factory({ inputs }) {
return [
coreExtensionData.reactElement(
<div>
Example
{inputs.items.map(item => {
return <div>{item.get(coreExtensionData.reactElement)}</div>;
})}
</div>,
),
];
},
});
```
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-catalog-backend-module-gitlab': patch
---
Adds new optional `excludeRepos` configuration option to the Gitlab catalog provider.
+7
View File
@@ -0,0 +1,7 @@
---
'@backstage/plugin-kubernetes-cluster': patch
'@backstage/plugin-kubernetes-react': patch
'@backstage/plugin-kubernetes': patch
---
Updated dependency `@kubernetes-models/base` to `^5.0.0`.
+7
View File
@@ -0,0 +1,7 @@
---
'@backstage/backend-app-api': patch
---
The backend will no longer exit immediately if any plugin or modules fails to initialize. Instead, the backend will wait for all plugins and modules to either start up successfully or throw, and then shut down the backend if there were any initialization errors.
This fixes an issue where backend initialization errors in adjacent plugins during database schema migration could cause the database migrations to be stuck in a locked state.
-7
View File
@@ -1,7 +0,0 @@
---
'@backstage/config-loader': patch
---
Add boolean `allowMissingDefaultConfig` option to `ConfigSources.default` and
`ConfigSources.defaultForTargets`, which results in omission of a ConfigSource
for the default app-config.yaml configuration file if it's not present.
+5
View File
@@ -0,0 +1,5 @@
---
'@backstage/plugin-scaffolder-react': minor
---
Renamed Template Editor to Manage Templates.
+6
View File
@@ -0,0 +1,6 @@
---
'@backstage/backend-defaults': patch
'@backstage/integration': patch
---
Updating error message for getProjectId when fetching Gitlab project from its url to be more accurate
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/backend-defaults': patch
---
Fixed the routing of the new health check service, the health endpoints should now properly be available at `/.backstage/health/v1/readiness` and `/.backstage/health/v1/liveness`.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/create-app': patch
---
Updated dockerfile and `app-config.production.yaml` to make it easier to get started with example data
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/cli': patch
---
Switched the target from `'ES2022'` to `'es2022'` for better compatibility with older versions of `swc`.
+11
View File
@@ -0,0 +1,11 @@
---
'@backstage/backend-dynamic-feature-service': patch
'@backstage/plugin-search-backend-module-techdocs': patch
'@backstage/plugin-search-backend-module-catalog': patch
'@backstage/plugin-search-backend-module-explore': patch
'@backstage/plugin-events-backend-module-github': patch
'@backstage/plugin-events-backend-module-gitlab': patch
'@backstage/plugin-events-node': patch
---
Updated backend installation instructions.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-scaffolder-backend-module-gitlab': patch
---
Added test cases for gitlab:projectAccessToken:create example
+9
View File
@@ -0,0 +1,9 @@
---
'@backstage/plugin-events-backend': patch
---
The events backend now has its own built-in event bus for distributing events across multiple backend instances. It exposes a new HTTP API under `/bus/v1/` for publishing and reading events from the bus, as well as its own storage and notification mechanism for events.
The backing event store for the bus only supports scaled deployment if PostgreSQL is used as the DBMS. If SQLite or MySQL is used, the event bus will fall back to an in-memory store that does not support multiple backend instances.
The default `EventsService` implementation from `@backstage/plugin-events-node` has also been updated to use the new events bus.
-5
View File
@@ -1,5 +0,0 @@
---
'@backstage/plugin-home': patch
---
Fixed a bug on the WelcomeTitle component where the welcome message wasn't correct when the language was set to Spanish

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