Merge branch 'backstage:master' into jordans/addFilterNegation
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/core-components': patch
|
||||
---
|
||||
|
||||
Correct size of FavoriteToggle and inherit non-starred color from parent
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': patch
|
||||
---
|
||||
|
||||
Fix extra divider displayed in owner list picker on list tasks page
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-search-backend-module-elasticsearch': patch
|
||||
---
|
||||
|
||||
Align the configuration schema with the docs and actual behavior of the code
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-techdocs-backend': patch
|
||||
---
|
||||
|
||||
Dedicated token for techdocs cache sync
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-auth-backend-module-aws-alb-provider': patch
|
||||
---
|
||||
|
||||
Fix a bug where the signer was checked from the payload instead of the header
|
||||
@@ -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.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-app-api': patch
|
||||
---
|
||||
|
||||
Deprecate the `featureDiscoveryServiceFactory` in favor of using `@backstage/backend-defaults#discoveryFeatureLoader` instead.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-plugin-api': minor
|
||||
---
|
||||
|
||||
**BREAKING**: The deprecated identity and token manager services have been removed. This means that `coreServices.identity` and `coreServices.tokenManager` are gone, along with related types and utilities in other packages.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-plugin-api': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed support for "v1" extensions. This means that it is no longer possible to declare inputs and outputs as objects when using `createExtension`. In addition, all extension creators except for `createComponentExtension` have been removed, use the equivalent blueprint instead. See the [1.30 migration documentation](https://backstage.io/docs/frontend-system/architecture/migrations/#130) for more information on this change.
|
||||
@@ -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
|
||||
```
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-techdocs-react': patch
|
||||
---
|
||||
|
||||
Fixed issue in useShadowRootElements which could lead to unlimited render loops
|
||||
@@ -1,38 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-dynamic-feature-service': patch
|
||||
---
|
||||
|
||||
Deprecate the `dynamicPluginsServiceRef`, `dynamicPluginsServiceFactory` and `dynamicPluginsServiceFactoryWithOptions` in favor of using the `dynamicPluginsFeatureDiscoveryLoader` to discover dynamic features in a new backend system.
|
||||
|
||||
See usage examples below:
|
||||
|
||||
Example using the `dynamicPluginsFeatureDiscoveryLoader` loader in a backend instance:
|
||||
|
||||
```ts
|
||||
import { createBackend } from '@backstage/backend-defaults';
|
||||
import { dynamicPluginsFeatureDiscoveryLoader } from '@backstage/backend-dynamic-feature-service';
|
||||
//...
|
||||
|
||||
const backend = createBackend();
|
||||
backend.add(dynamicPluginsFeatureDiscoveryLoader);
|
||||
//...
|
||||
backend.start();
|
||||
```
|
||||
|
||||
Passing options to the `dynamicPluginsFeatureDiscoveryLoader` loader in a backend instance:
|
||||
|
||||
```ts
|
||||
import { createBackend } from '@backstage/backend-defaults';
|
||||
import { dynamicPluginsFeatureDiscoveryLoader } from '@backstage/backend-dynamic-feature-service';
|
||||
import { myCustomModuleLoader } from './myCustomModuleLoader';
|
||||
//...
|
||||
|
||||
const backend = createBackend();
|
||||
backend.add(
|
||||
dynamicPluginsFeatureDiscoveryLoader({
|
||||
moduleLoader: myCustomModuleLoader,
|
||||
}),
|
||||
);
|
||||
//...
|
||||
backend.start();
|
||||
```
|
||||
@@ -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.
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-catalog': minor
|
||||
---
|
||||
|
||||
Updated default columns for location entities to remove description and tags from the catalog table view.
|
||||
@@ -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.
|
||||
@@ -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.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-dynamic-feature-service': patch
|
||||
---
|
||||
|
||||
Relax type check for a plugin's default export to also accept a BackendFeature defined as a function instead of an object
|
||||
@@ -1,21 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-test-utils': patch
|
||||
'@backstage/frontend-app-api': patch
|
||||
'@backstage/core-compat-api': patch
|
||||
'@backstage/plugin-catalog-import': patch
|
||||
'@backstage/plugin-catalog-graph': patch
|
||||
'@backstage/plugin-catalog-react': patch
|
||||
'@backstage/plugin-user-settings': patch
|
||||
'@backstage/plugin-search-react': patch
|
||||
'@backstage/plugin-kubernetes': patch
|
||||
'@backstage/plugin-scaffolder': patch
|
||||
'@backstage/plugin-api-docs': patch
|
||||
'@backstage/plugin-devtools': patch
|
||||
'@backstage/plugin-techdocs': patch
|
||||
'@backstage/plugin-catalog': patch
|
||||
'@backstage/plugin-search': patch
|
||||
'@backstage/plugin-home': patch
|
||||
'@backstage/plugin-org': patch
|
||||
---
|
||||
|
||||
Updated exports to use the new type parameters for extensions and extension blueprints.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-search-react': patch
|
||||
---
|
||||
|
||||
Slight type tweak to match newer React versions better
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Bumped create-app version.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-dynamic-feature-service': minor
|
||||
---
|
||||
|
||||
**BREAKING**: `dynamicPluginsServiceFactory` is no longer callable as a function. If you need to provide options to make a custom factory, use `dynamicPluginsSchemasServiceFactoryWithOptions` instead.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-search-backend': patch
|
||||
---
|
||||
|
||||
Deprecate create router as the legacy backend system will no longer be supported.
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': patch
|
||||
---
|
||||
|
||||
Apply `defaultValue` props in `MultiEntityPicker`
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-gerrit': patch
|
||||
---
|
||||
|
||||
Fixed an issue preventing the provider's `schedule` config from being applied."
|
||||
@@ -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.
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-backend': patch
|
||||
---
|
||||
|
||||
Include step name and step id to checkpoint key
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-defaults': minor
|
||||
---
|
||||
|
||||
Initial release of this package, which provides a default app setup through the `createApp` function. This replaces the existing `createApp` method from `@backstage/frontend-app-api`.
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': patch
|
||||
---
|
||||
|
||||
Change task list created at column to show timestamp
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-kubernetes-backend': patch
|
||||
---
|
||||
|
||||
The `KubernetesBuilder` and its related types has been marked as deprecared. This backend should instead be initialized using the new backend system.
|
||||
@@ -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.
|
||||
@@ -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.
|
||||
@@ -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
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-test-utils': patch
|
||||
---
|
||||
|
||||
Internal update to add support for passing an `ApiRegistry` when creating the node tree
|
||||
@@ -0,0 +1,6 @@
|
||||
---
|
||||
'@backstage/plugin-api-docs': patch
|
||||
'@backstage/plugin-catalog': patch
|
||||
---
|
||||
|
||||
Empty states updated with external link icon for learn more links
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-test-utils': minor
|
||||
---
|
||||
|
||||
Removed support for testing "v1" extensions, where outputs are defined as an object rather than an array.
|
||||
@@ -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.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-test-utils': patch
|
||||
---
|
||||
|
||||
Added missing service mock for `mockServices.rootConfig.mock`, and fixed the definition of `mockServices.rootHttpRouter.factory` to not have a duplicate callback.
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/eslint-plugin': patch
|
||||
---
|
||||
|
||||
Internal refactor to deal with `estree` upgrade
|
||||
@@ -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.
|
||||
@@ -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.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-backend': patch
|
||||
---
|
||||
|
||||
Found the issue during testing the clean up of the workspace for the database implementation.
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/repo-tools': patch
|
||||
---
|
||||
|
||||
Properly log instructions when APIs do not match
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Remove unknown dependency `diff`
|
||||
@@ -1,31 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-plugin-api': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Updated the type parameters for `ExtensionDefinition` and `ExtensionBlueprint` to only have a single object parameter. The base type parameter is exported as `ExtensionDefinitionParameters` and `ExtensionBlueprintParameters` respectively. This is shipped as an immediate breaking change as we expect usage of these types to be rare, and it does not affect the runtime behavior of the API.
|
||||
|
||||
This is a breaking change as it changes the type parameters. Existing usage can generally be updated as follows:
|
||||
|
||||
- `ExtensionDefinition<any>` -> `ExtensionDefinition`
|
||||
- `ExtensionDefinition<any, any>` -> `ExtensionDefinition`
|
||||
- `ExtensionDefinition<TConfig>` -> `ExtensionDefinition<{ config: TConfig }>`
|
||||
- `ExtensionDefinition<TConfig, TConfigInput>` -> `ExtensionDefinition<{ config: TConfig, configInput: TConfigInput }>`
|
||||
|
||||
If you need to infer the parameter you can use `ExtensionDefinitionParameters`, for example:
|
||||
|
||||
```ts
|
||||
import {
|
||||
ExtensionDefinition,
|
||||
ExtensionDefinitionParameters,
|
||||
} from '@backstage/frontend-plugin-api';
|
||||
|
||||
function myUtility<T extends ExtensionDefinitionParameters>(
|
||||
ext: ExtensionDefinition<T>,
|
||||
): T['config'] {
|
||||
// ...
|
||||
}
|
||||
```
|
||||
|
||||
The same patterns apply to `ExtensionBlueprint`.
|
||||
|
||||
This change is made to improve the readability of API references and ability to evolve the type parameters in the future.
|
||||
@@ -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`
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-test-utils': minor
|
||||
---
|
||||
|
||||
**BREAKING**: The deprecated `.render()` method has been removed from the extension tester.
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/integration-react': patch
|
||||
---
|
||||
|
||||
Revert of change #26430
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-app-api': minor
|
||||
---
|
||||
|
||||
**BREAKING**: The `createSpecializedApp` function now creates a bare-bones app without any of the default app structure or APIs. To re-introduce this functionality if you need to use `createSpecializedApp` you can install the `app` plugin from `@backstage/plugin-app`.
|
||||
|
||||
In addition, the `createApp` and `CreateAppFeatureLoader` exports are now deprecated as they are being moved to `@backstage/frontend-defaults`, which should be used instead.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-react': minor
|
||||
---
|
||||
|
||||
Add `ui:backstage.review.name` option for custom item names on scaffolder review page, and also add support for rendering the `title` property instead of the key name.
|
||||
@@ -1,8 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-plugin-api': patch
|
||||
'@backstage/frontend-test-utils': patch
|
||||
'@backstage/frontend-app-api': patch
|
||||
'@backstage/plugin-app': minor
|
||||
---
|
||||
|
||||
Introduce the `@backstage/plugin-app` package to hold all of the built-in extensions for easy consumption and overriding.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Update templates to not refer to backend-common
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-app-backend': patch
|
||||
'@backstage/plugin-app-node': patch
|
||||
---
|
||||
|
||||
Fixing dependency metadata with the new `@backstage/plugin-app` package
|
||||
@@ -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.
|
||||
@@ -1,7 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-plugin-api': patch
|
||||
---
|
||||
|
||||
Added `createFrontendModule` as a replacement for `createExtensionOverrides`, which is now deprecated.
|
||||
|
||||
Deprecated the `BackstagePlugin` and `FrontendFeature` type in favor of `FrontendPlugin` and `FrontendFeature` from `@backstage/frontend-app-api` respectively.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-app-api': patch
|
||||
'@backstage/core-compat-api': patch
|
||||
---
|
||||
|
||||
Added support for new `FrontendPlugin` and `FrontendModule` types.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-techdocs-backend': patch
|
||||
---
|
||||
|
||||
The `createRouter` and its related types has been marked as deprecared. This backend should instead be initialized using the new backend system.
|
||||
@@ -0,0 +1,6 @@
|
||||
---
|
||||
'@backstage/frontend-plugin-api': patch
|
||||
'@backstage/frontend-test-utils': patch
|
||||
---
|
||||
|
||||
Internal refactor of usage of opaque types.
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
---
|
||||
|
||||
Fixed lack of `.yarnrc.yml` in the template.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-plugin-api': patch
|
||||
---
|
||||
|
||||
Deprecate the `featureDiscoveryServiceRef` in favor of using the new `discoveryFeatureLoader` instead.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-signals-backend': patch
|
||||
---
|
||||
|
||||
The `createRouter` and its related types has been marked as deprecared. This backend should instead be initialized using the new backend system.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/create-app': patch
|
||||
'@backstage/plugin-devtools': patch
|
||||
---
|
||||
|
||||
Minor dockerfile syntax update
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/app-defaults': patch
|
||||
---
|
||||
|
||||
Added `externalLink` to icon defaults
|
||||
@@ -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.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-app-api': patch
|
||||
---
|
||||
|
||||
Updated the error message for missing service dependencies to include the plugin and module IDs.
|
||||
@@ -0,0 +1,6 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder-react': patch
|
||||
'@backstage/plugin-scaffolder': patch
|
||||
---
|
||||
|
||||
Add support for pagination in scaffolder tasks list
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/cli': patch
|
||||
---
|
||||
|
||||
Add `checks: 'read'` for default GitHub app permissions
|
||||
@@ -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`.
|
||||
@@ -1,9 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-plugin-api': minor
|
||||
---
|
||||
|
||||
Removed the following deprecated exports
|
||||
|
||||
- `BackendPluginConfig` use `CreateBackendPluginOptions`
|
||||
- `BackendModuleConfig` use `CreateBackendModuleOptions`
|
||||
- `ExtensionPointConfig` use `CreateExtensionPointOptions`
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-user-settings-backend': patch
|
||||
---
|
||||
|
||||
In preparation to stop supporting to the legacy backend system, the `createRouter` function is now deprecated and we strongly recommend you [migrate](https://backstage.io/docs/backend-system/building-backends/migrating) your backend to the new system.
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-auth-backend-module-microsoft-provider': patch
|
||||
---
|
||||
|
||||
Add `skipUserProfile` config flag to Microsoft authenticator
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-techdocs-node': patch
|
||||
---
|
||||
|
||||
Fix typo and unify TechDocs casing in doc strings
|
||||
@@ -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.
|
||||
@@ -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
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-app-api': minor
|
||||
---
|
||||
|
||||
**BREAKING**: The deprecated `identityServiceFactory` and `tokenManagerServiceFactory` have been removed.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-defaults': minor
|
||||
---
|
||||
|
||||
**BREAKING**: The backwards compatibility with plugins using legacy auth through the token manager service has been removed. This means that instead of falling back to using the old token manager, requests towards plugins that don't support the new auth system will simply fail. Please make sure that all plugins in your deployment are hosted within a backend instance from the new backend system.
|
||||
@@ -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.
|
||||
@@ -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.
|
||||
@@ -1,11 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-backend-module-bitbucket-cloud': patch
|
||||
'@backstage/plugin-search-backend-module-techdocs': patch
|
||||
'@backstage/plugin-search-backend-module-catalog': patch
|
||||
'@backstage/plugin-search-backend-module-explore': patch
|
||||
'@backstage/plugin-permission-node': patch
|
||||
'@backstage/plugin-signals-backend': patch
|
||||
'@backstage/plugin-auth-backend': patch
|
||||
---
|
||||
|
||||
Internal refactor to remove dependencies on the identity and token manager services, which have been removed. Public APIs no longer require the identity service or token manager to be provided.
|
||||
@@ -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
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': minor
|
||||
---
|
||||
|
||||
Added ability to create a new local scaffolder template to ease onboarding when creating new templates.
|
||||
@@ -1,8 +0,0 @@
|
||||
---
|
||||
'@backstage/catalog-client': patch
|
||||
'@backstage/plugin-catalog-backend': patch
|
||||
---
|
||||
|
||||
Moved `getEntities` ordering to utilize database instead of having it inside catalog client
|
||||
|
||||
Please note that the latest version of `@backstage/catalog-client` will not order the entities in the same way as before. This is because the ordering is now done in the database query instead of in the client. If you rely on the ordering of the entities, you may need to update your backend plugin or code to handle this change.
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-catalog-react': minor
|
||||
---
|
||||
|
||||
Added a new prop, `disableTooltip` to the `EntityRefLink` component
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-common': patch
|
||||
---
|
||||
|
||||
The `legacyPlugin` and `makeLegacyPlugin` helpers now provide their own shim implementation of the identity and token manager services, as these services are being removed from the new backend system.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/frontend-plugin-api': patch
|
||||
'@backstage/frontend-app-api': patch
|
||||
---
|
||||
|
||||
Moved several implementations of built-in APIs from being hardcoded in the app to instead be provided as API extensions. This moves all API-related inputs from the `app` extension to the respective API extensions. For example, extensions created with `ThemeBlueprint` are now attached to the `themes` input of `api:app-theme` rather than the `app` extension.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-test-utils': patch
|
||||
---
|
||||
|
||||
There is a new `mockErrorHandler` utility to help in mocking the error middleware in tests.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-defaults': patch
|
||||
---
|
||||
|
||||
Move down the discovery config to be in the root
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-defaults': patch
|
||||
'@backstage/backend-app-api': patch
|
||||
---
|
||||
|
||||
`auth.externalAccess` should be optional in the config schema
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': minor
|
||||
---
|
||||
|
||||
Added ability to link to a specific action on the actions page
|
||||
@@ -1,37 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-common': patch
|
||||
'@backstage/backend-dynamic-feature-service': patch
|
||||
'@backstage/plugin-app-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-backend-module-puppetdb': patch
|
||||
'@backstage/plugin-catalog-backend': patch
|
||||
'@backstage/plugin-events-backend-module-aws-sqs': patch
|
||||
'@backstage/plugin-events-backend-module-azure': patch
|
||||
'@backstage/plugin-events-backend-module-bitbucket-cloud': patch
|
||||
'@backstage/plugin-events-backend-module-gerrit': patch
|
||||
'@backstage/plugin-events-backend-module-github': patch
|
||||
'@backstage/plugin-events-backend-module-gitlab': patch
|
||||
'@backstage/plugin-events-backend': patch
|
||||
'@backstage/plugin-kubernetes-backend': patch
|
||||
'@backstage/plugin-permission-backend': patch
|
||||
'@backstage/plugin-proxy-backend': patch
|
||||
'@backstage/plugin-scaffolder-backend': patch
|
||||
'@backstage/plugin-search-backend-module-catalog': patch
|
||||
'@backstage/plugin-search-backend-module-elasticsearch': patch
|
||||
'@backstage/plugin-search-backend-module-explore': patch
|
||||
'@backstage/plugin-search-backend-module-pg': patch
|
||||
'@backstage/plugin-search-backend-module-techdocs': patch
|
||||
'@backstage/plugin-search-backend': patch
|
||||
'@backstage/plugin-techdocs-backend': patch
|
||||
'@backstage/plugin-user-settings-backend': patch
|
||||
---
|
||||
|
||||
Modules, plugins, and services are now `BackendFeature`, not a function that returns a feature.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-kubernetes': patch
|
||||
---
|
||||
|
||||
Make k8s entity content appear on components & resources only by default in new FE system
|
||||
@@ -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.
|
||||
@@ -1,6 +0,0 @@
|
||||
---
|
||||
'@backstage/plugin-search-backend-module-elasticsearch': patch
|
||||
'@backstage/plugin-search-backend-module-pg': patch
|
||||
---
|
||||
|
||||
Internal refactor to use `LoggerService` and `DatabaseService` instead of the legacy `Logger` and `PluginDatabaseManager` types.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-common': patch
|
||||
---
|
||||
|
||||
Add `pg-format` as a dependency
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/core-compat-api': patch
|
||||
---
|
||||
|
||||
Internal update to remove deprecated `BackstagePlugin` type and move to `FrontendPlugin`
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': patch
|
||||
---
|
||||
|
||||
Add translation to the editor toolbar component.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-test-utils': minor
|
||||
---
|
||||
|
||||
**BREAKING**: Removed service mocks for the identity and token manager services, which have been removed from `@backstage/backend-plugin-api`.
|
||||
+238
-246
@@ -2,270 +2,262 @@
|
||||
"mode": "pre",
|
||||
"tag": "next",
|
||||
"initialVersions": {
|
||||
"example-app": "0.2.100",
|
||||
"@backstage/app-defaults": "1.5.10",
|
||||
"example-app-next": "0.0.14",
|
||||
"app-next-example-plugin": "0.0.14",
|
||||
"example-backend": "0.0.29",
|
||||
"@backstage/backend-app-api": "0.9.0",
|
||||
"@backstage/backend-common": "0.24.0",
|
||||
"@backstage/backend-defaults": "0.4.2",
|
||||
"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.3.0",
|
||||
"example-backend-legacy": "0.2.101",
|
||||
"@backstage/backend-openapi-utils": "0.1.16",
|
||||
"@backstage/backend-plugin-api": "0.8.0",
|
||||
"@backstage/backend-test-utils": "0.5.0",
|
||||
"@backstage/catalog-client": "1.6.6",
|
||||
"@backstage/catalog-model": "1.6.0",
|
||||
"@backstage/cli": "0.27.0",
|
||||
"@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.9.0",
|
||||
"@backstage/core-app-api": "1.14.2",
|
||||
"@backstage/core-compat-api": "0.2.8",
|
||||
"@backstage/core-components": "0.14.10",
|
||||
"@backstage/core-plugin-api": "1.9.3",
|
||||
"@backstage/create-app": "0.5.18",
|
||||
"@backstage/dev-utils": "1.0.37",
|
||||
"e2e-test": "0.2.19",
|
||||
"@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.8.0",
|
||||
"@backstage/frontend-plugin-api": "0.7.0",
|
||||
"@backstage/frontend-test-utils": "0.1.12",
|
||||
"@backstage/integration": "1.14.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.30",
|
||||
"@backstage/integration-react": "1.1.31",
|
||||
"@internal/opaque": "0.0.1",
|
||||
"@backstage/release-manifests": "0.0.11",
|
||||
"@backstage/repo-tools": "0.9.5",
|
||||
"@techdocs/cli": "1.8.17",
|
||||
"techdocs-cli-embedded-app": "0.2.99",
|
||||
"@backstage/test-utils": "1.5.10",
|
||||
"@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.8",
|
||||
"@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.72",
|
||||
"@backstage/plugin-app-node": "0.1.23",
|
||||
"@backstage/plugin-app-visualizer": "0.1.9",
|
||||
"@backstage/plugin-auth-backend": "0.22.10",
|
||||
"@backstage/plugin-auth-backend-module-atlassian-provider": "0.2.4",
|
||||
"@backstage/plugin-auth-backend-module-aws-alb-provider": "0.1.15",
|
||||
"@backstage/plugin-auth-backend-module-azure-easyauth-provider": "0.1.6",
|
||||
"@backstage/plugin-auth-backend-module-bitbucket-provider": "0.1.6",
|
||||
"@backstage/plugin-auth-backend-module-cloudflare-access-provider": "0.2.0",
|
||||
"@backstage/plugin-auth-backend-module-gcp-iap-provider": "0.2.18",
|
||||
"@backstage/plugin-auth-backend-module-github-provider": "0.1.20",
|
||||
"@backstage/plugin-auth-backend-module-gitlab-provider": "0.1.20",
|
||||
"@backstage/plugin-auth-backend-module-google-provider": "0.1.20",
|
||||
"@backstage/plugin-auth-backend-module-guest-provider": "0.1.9",
|
||||
"@backstage/plugin-auth-backend-module-microsoft-provider": "0.1.18",
|
||||
"@backstage/plugin-auth-backend-module-oauth2-provider": "0.2.4",
|
||||
"@backstage/plugin-auth-backend-module-oauth2-proxy-provider": "0.1.16",
|
||||
"@backstage/plugin-auth-backend-module-oidc-provider": "0.2.4",
|
||||
"@backstage/plugin-auth-backend-module-okta-provider": "0.0.16",
|
||||
"@backstage/plugin-auth-backend-module-onelogin-provider": "0.1.4",
|
||||
"@backstage/plugin-auth-backend-module-pinniped-provider": "0.1.17",
|
||||
"@backstage/plugin-auth-backend-module-vmware-cloud-provider": "0.2.4",
|
||||
"@backstage/plugin-auth-node": "0.5.0",
|
||||
"@backstage/plugin-auth-react": "0.1.5",
|
||||
"@backstage/plugin-bitbucket-cloud-common": "0.2.22",
|
||||
"@backstage/plugin-catalog": "1.22.0",
|
||||
"@backstage/plugin-catalog-backend": "1.25.0",
|
||||
"@backstage/plugin-catalog-backend-module-aws": "0.4.0",
|
||||
"@backstage/plugin-catalog-backend-module-azure": "0.2.0",
|
||||
"@backstage/plugin-catalog-backend-module-backstage-openapi": "0.3.0",
|
||||
"@backstage/plugin-catalog-backend-module-bitbucket-cloud": "0.3.0",
|
||||
"@backstage/plugin-catalog-backend-module-bitbucket-server": "0.2.0",
|
||||
"@backstage/plugin-catalog-backend-module-gcp": "0.2.0",
|
||||
"@backstage/plugin-catalog-backend-module-gerrit": "0.2.0",
|
||||
"@backstage/plugin-catalog-backend-module-github": "0.7.0",
|
||||
"@backstage/plugin-catalog-backend-module-github-org": "0.2.0",
|
||||
"@backstage/plugin-catalog-backend-module-gitlab": "0.4.0",
|
||||
"@backstage/plugin-catalog-backend-module-gitlab-org": "0.1.0",
|
||||
"@backstage/plugin-catalog-backend-module-incremental-ingestion": "0.5.0",
|
||||
"@backstage/plugin-catalog-backend-module-ldap": "0.8.0",
|
||||
"@backstage/plugin-catalog-backend-module-logs": "0.0.2",
|
||||
"@backstage/plugin-catalog-backend-module-msgraph": "0.6.0",
|
||||
"@backstage/plugin-catalog-backend-module-openapi": "0.1.41",
|
||||
"@backstage/plugin-catalog-backend-module-puppetdb": "0.2.0",
|
||||
"@backstage/plugin-catalog-backend-module-scaffolder-entity-model": "0.1.21",
|
||||
"@backstage/plugin-catalog-backend-module-unprocessed": "0.4.10",
|
||||
"@backstage/plugin-catalog-common": "1.0.26",
|
||||
"@backstage/plugin-catalog-graph": "0.4.8",
|
||||
"@backstage/plugin-catalog-import": "0.12.2",
|
||||
"@backstage/plugin-catalog-node": "1.12.5",
|
||||
"@backstage/plugin-catalog-react": "1.12.3",
|
||||
"@backstage/plugin-catalog-unprocessed-entities": "0.2.7",
|
||||
"@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.58",
|
||||
"@backstage/plugin-devtools": "0.1.17",
|
||||
"@backstage/plugin-devtools-backend": "0.3.9",
|
||||
"@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.10",
|
||||
"@backstage/plugin-events-backend-module-aws-sqs": "0.4.0",
|
||||
"@backstage/plugin-events-backend-module-azure": "0.2.9",
|
||||
"@backstage/plugin-events-backend-module-bitbucket-cloud": "0.2.9",
|
||||
"@backstage/plugin-events-backend-module-gerrit": "0.2.9",
|
||||
"@backstage/plugin-events-backend-module-github": "0.2.9",
|
||||
"@backstage/plugin-events-backend-module-gitlab": "0.2.9",
|
||||
"@backstage/plugin-events-backend-test-utils": "0.1.33",
|
||||
"@backstage/plugin-events-node": "0.3.9",
|
||||
"@internal/plugin-todo-list": "1.0.30",
|
||||
"@internal/plugin-todo-list-backend": "1.0.30",
|
||||
"@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.9",
|
||||
"@backstage/plugin-home-react": "0.1.16",
|
||||
"@backstage/plugin-kubernetes": "0.11.13",
|
||||
"@backstage/plugin-kubernetes-backend": "0.18.4",
|
||||
"@backstage/plugin-kubernetes-cluster": "0.0.14",
|
||||
"@backstage/plugin-kubernetes-common": "0.8.2",
|
||||
"@backstage/plugin-kubernetes-node": "0.1.17",
|
||||
"@backstage/plugin-kubernetes-react": "0.4.2",
|
||||
"@backstage/plugin-notifications": "0.3.0",
|
||||
"@backstage/plugin-notifications-backend": "0.3.4",
|
||||
"@backstage/plugin-notifications-backend-module-email": "0.2.0",
|
||||
"@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.4",
|
||||
"@backstage/plugin-org": "0.6.28",
|
||||
"@backstage/plugin-org-react": "0.1.27",
|
||||
"@backstage/plugin-permission-backend": "0.5.47",
|
||||
"@backstage/plugin-permission-backend-module-allow-all-policy": "0.1.20",
|
||||
"@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.1",
|
||||
"@backstage/plugin-permission-react": "0.4.25",
|
||||
"@backstage/plugin-proxy-backend": "0.5.4",
|
||||
"@backstage/plugin-scaffolder": "1.24.0",
|
||||
"@backstage/plugin-scaffolder-backend": "1.24.0",
|
||||
"@backstage/plugin-scaffolder-backend-module-azure": "0.1.15",
|
||||
"@backstage/plugin-scaffolder-backend-module-bitbucket": "0.2.13",
|
||||
"@backstage/plugin-scaffolder-backend-module-bitbucket-cloud": "0.1.13",
|
||||
"@backstage/plugin-scaffolder-backend-module-bitbucket-server": "0.1.13",
|
||||
"@backstage/plugin-scaffolder-backend-module-confluence-to-markdown": "0.2.24",
|
||||
"@backstage/plugin-scaffolder-backend-module-cookiecutter": "0.2.47",
|
||||
"@backstage/plugin-scaffolder-backend-module-gcp": "0.1.1",
|
||||
"@backstage/plugin-scaffolder-backend-module-gerrit": "0.1.15",
|
||||
"@backstage/plugin-scaffolder-backend-module-gitea": "0.1.13",
|
||||
"@backstage/plugin-scaffolder-backend-module-github": "0.4.1",
|
||||
"@backstage/plugin-scaffolder-backend-module-gitlab": "0.4.5",
|
||||
"@backstage/plugin-scaffolder-backend-module-notifications": "0.0.6",
|
||||
"@backstage/plugin-scaffolder-backend-module-rails": "0.4.40",
|
||||
"@backstage/plugin-scaffolder-backend-module-sentry": "0.1.31",
|
||||
"@backstage/plugin-scaffolder-backend-module-yeoman": "0.3.7",
|
||||
"@backstage/plugin-scaffolder-common": "1.5.5",
|
||||
"@backstage/plugin-scaffolder-node": "0.4.9",
|
||||
"@backstage/plugin-scaffolder-node-test-utils": "0.1.10",
|
||||
"@backstage/plugin-scaffolder-react": "1.11.0",
|
||||
"@backstage/plugin-search": "1.4.15",
|
||||
"@backstage/plugin-search-backend": "1.5.15",
|
||||
"@backstage/plugin-search-backend-module-catalog": "0.2.0",
|
||||
"@backstage/plugin-search-backend-module-elasticsearch": "1.5.4",
|
||||
"@backstage/plugin-search-backend-module-explore": "0.2.0",
|
||||
"@backstage/plugin-search-backend-module-pg": "0.5.33",
|
||||
"@backstage/plugin-search-backend-module-stack-overflow-collator": "0.2.0",
|
||||
"@backstage/plugin-search-backend-module-techdocs": "0.2.0",
|
||||
"@backstage/plugin-search-backend-node": "1.3.0",
|
||||
"@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.7.14",
|
||||
"@backstage/plugin-signals": "0.0.9",
|
||||
"@backstage/plugin-signals-backend": "0.1.9",
|
||||
"@backstage/plugin-signals-node": "0.1.9",
|
||||
"@backstage/plugin-signals-react": "0.0.4",
|
||||
"@backstage/plugin-techdocs": "1.10.8",
|
||||
"@backstage/plugin-techdocs-addons-test-utils": "1.0.37",
|
||||
"@backstage/plugin-techdocs-backend": "1.10.10",
|
||||
"@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.13",
|
||||
"@backstage/plugin-techdocs-node": "1.12.9",
|
||||
"@backstage/plugin-techdocs-react": "1.2.7",
|
||||
"@backstage/plugin-user-settings": "0.8.11",
|
||||
"@backstage/plugin-user-settings-backend": "0.2.22",
|
||||
"@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",
|
||||
"@backstage/plugin-app": "0.0.0"
|
||||
"@internal/scaffolder": "0.0.1"
|
||||
},
|
||||
"changesets": [
|
||||
"big-spies-stare",
|
||||
"blue-forks-cry",
|
||||
"breezy-flowers-dance",
|
||||
"brown-actors-clap",
|
||||
"brown-boxes-arrive",
|
||||
"brown-worms-sneeze",
|
||||
"calm-brooms-fail",
|
||||
"cold-ways-protect",
|
||||
"cool-melons-check",
|
||||
"cool-poems-hammer",
|
||||
"cuddly-rocks-invent",
|
||||
"curly-brooms-raise",
|
||||
"dry-monkeys-mate",
|
||||
"eighty-tables-hope",
|
||||
"empty-coats-sparkle",
|
||||
"five-tigers-share",
|
||||
"flat-kangaroos-push",
|
||||
"forty-toes-float",
|
||||
"four-ties-raise",
|
||||
"fresh-apes-dress",
|
||||
"fresh-pumas-clean",
|
||||
"funny-houses-rest",
|
||||
"fuzzy-mails-walk",
|
||||
"fuzzy-spies-share",
|
||||
"giant-jars-mix",
|
||||
"green-worms-rescue",
|
||||
"healthy-moons-drum",
|
||||
"heavy-suits-judge",
|
||||
"hip-pandas-think",
|
||||
"kind-moose-learn",
|
||||
"kind-walls-speak",
|
||||
"large-poets-check",
|
||||
"lucky-sheep-cover",
|
||||
"metal-garlics-fetch",
|
||||
"metal-rivers-grin",
|
||||
"mighty-days-kiss",
|
||||
"nasty-tigers-knock",
|
||||
"new-poets-unite",
|
||||
"ninety-mayflies-raise",
|
||||
"olive-phones-sniff",
|
||||
"popular-cooks-camp",
|
||||
"purple-cows-sing",
|
||||
"purple-glasses-tease",
|
||||
"rare-feet-melt",
|
||||
"real-pants-rule",
|
||||
"serious-cheetahs-help",
|
||||
"sharp-fans-tan",
|
||||
"sharp-items-study",
|
||||
"sharp-mayflies-beg",
|
||||
"shiny-zoos-film",
|
||||
"short-moles-brush",
|
||||
"silent-eyes-lie",
|
||||
"six-goats-sort",
|
||||
"six-humans-guess",
|
||||
"sixty-rabbits-cheat",
|
||||
"spicy-poems-hammer",
|
||||
"spicy-vans-eat",
|
||||
"sweet-cows-clean",
|
||||
"swift-garlics-mix",
|
||||
"swift-radios-enjoy",
|
||||
"swift-seahorses-share",
|
||||
"tame-hornets-shake",
|
||||
"tasty-pigs-vanish",
|
||||
"thick-walls-share",
|
||||
"tiny-waves-provide",
|
||||
"tough-peaches-kneel",
|
||||
"tricky-apricots-film",
|
||||
"twenty-clouds-melt",
|
||||
"twenty-queens-grow",
|
||||
"unlucky-cycles-clean",
|
||||
"violet-jokes-tap",
|
||||
"warm-boxes-grab-2",
|
||||
"warm-boxes-grab",
|
||||
"wild-buses-notice",
|
||||
"wise-scissors-help",
|
||||
"witty-years-cry",
|
||||
"yellow-bees-hope"
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
||||
@@ -0,0 +1,5 @@
|
||||
---
|
||||
'@backstage/plugin-scaffolder': patch
|
||||
---
|
||||
|
||||
Standardize template editor pages desktop and mobile layouts.
|
||||
@@ -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.
|
||||
@@ -1,5 +0,0 @@
|
||||
---
|
||||
'@backstage/backend-plugin-api': minor
|
||||
---
|
||||
|
||||
Removed deprecated `ServiceFactoryOrFunction` type.
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user