Back to Backstage

Release v1.10.0

docs/releases/v1.10.0-changelog.md

1.51.0-next.287.1 KB
Original Source

Release v1.10.0

@backstage/[email protected]

Major Changes

  • b4955ed7b9: Re-home some of the common types, components, hooks and scaffolderApiRef for the @backstage/plugin-scaffolder to this package for easy re-use across things that want to interact with the scaffolder.

Patch Changes

@backstage/[email protected]

Minor Changes

Patch Changes

@backstage/[email protected]

Minor Changes

  • 02b119ff93: BREAKING: The httpRouterFactory now accepts a getPath option rather than indexPlugin. To set up custom index path, configure the new rootHttpRouterFactory with a custom indexPath instead.

    Added an implementation for the new rootHttpRouterServiceRef.

Patch Changes

  • ecc6bfe4c9: Use new ServiceFactoryOrFunction type.
  • b99c030f1b: Moved over implementation of the root HTTP service from @backstage/backend-common, and replaced the middleware option with a configure callback option.
  • 170282ece6: Fixed a bug in the default token manager factory where it created multiple incompatible instances.
  • 843a0a158c: Added service factory for the new core identity service.
  • 150a7dd790: An error will now be thrown if attempting to override the plugin metadata service.
  • 483e907eaf: Internal updates of createServiceFactory from @backstage/backend-plugin-api.
  • 015a6dced6: The createSpecializedBackend function will now throw an error if duplicate service implementations are provided.
  • e3fca10038: Tweaked the plugin logger to use plugin as the label for the plugin ID, rather than pluginId.
  • ecbec4ec4c: Internal refactor to match new options pattern in the experimental backend system.
  • 51b7a7ed07: Exported the default root HTTP router implementation as DefaultRootHttpRouter. It only implements the routing layer and needs to be exposed via an HTTP server similar to the built-in setup in the rootHttpRouterFactory.
  • 0e63aab311: Moved over logging and configuration loading implementations from @backstage/backend-common. There is a now WinstonLogger which implements the RootLoggerService through Winston with accompanying utilities. For configuration the loadBackendConfig function has been moved over, but it now instead returns an object with a config property.
  • 8e06f3cf00: Switched imports of loggerToWinstonLogger to @backstage/backend-common.
  • 3b8fd4169b: Internal folder structure refactor.
  • 6cfd4d7073: Updated implementations for the new RootLifecycleService.
  • Updated dependencies

@backstage/[email protected]

Minor Changes

  • 5e2cebe9a3: BREAKING: Removed deprecated read method from the UrlReader interface. All implementations should use the readUrl method instead.

    Migrated UrlReader and related types to backend/backend-plugin-api, types remain re-exported from backend-common for now.

Patch Changes

  • 0e63aab311: Internal refactor of the logger and configuration loading implementations.
  • 31e2309c8c: Added legacyPlugin and the lower level makeLegacyPlugin wrappers that convert legacy plugins to the new backend system. This will be used to ease the future migration to the new backend system, but we discourage use of it for now.
  • 8e06f3cf00: Added loggerToWinstonLogger, which was moved from @backstage/backend-plugin-api.
  • 2b1554cebf: Replaced dependencies on the Logger type from winston with LoggerService from @backstage/backend-plugin-api. This is not a breaking change as the LoggerService is a subset of the Logger interface.
  • 5437fe488f: Migrated types related to TokenManagerService, CacheService and DatabaseService into backend-plugin-api.
  • 6f02d23b01: Moved PluginEndpointDiscovery type from backend-common to backend-plugin-api.
  • d592ec4f51: Updated the logger created by createRootLogger to make it possible to override the default service log label.
  • b99c030f1b: Refactor to rely on @backstage/backend-app-api for the implementation of createServiceBuilder.
  • f23eef3aa2: Updated dependency better-sqlite3 to ^8.0.0.
  • Updated dependencies

@backstage/[email protected]

Minor Changes

  • 8e06f3cf00: Moved loggerToWinstonLogger to @backstage/backend-common.
  • ecbec4ec4c: Updated all factory function creators to accept options as a top-level callback rather than extra parameter to the main factory function.

Patch Changes

  • 6cfd4d7073: Added RootLifecycleService and rootLifecycleServiceRef, as well as added a logger option to the existing LifecycleServiceShutdownHook.

  • ecc6bfe4c9: Added ServiceFactoryOrFunction type, for use when either a ServiceFactory or () => ServiceFactory can be used.

  • 5b7bcd3c5e: Added createSharedEnvironment for creating a shared environment containing commonly used services in a split backend setup of the backend.

  • 02b119ff93: Added a new rootHttpRouterServiceRef and RootHttpRouterService interface.

  • 5e2cebe9a3: Migrate UrlReader into this package to gradually remove the dependency on backend-common.

  • 843a0a158c: Added new core identity service.

  • 5437fe488f: Migrated types related to TokenManagerService, CacheService and DatabaseService into backend-plugin-api.

  • 6f02d23b01: Moved PluginEndpointDiscovery type from backend-common to backend-plugin-api.

  • 483e907eaf: The createServiceFactory function has been updated to no longer use a duplicate callback pattern for plugin scoped services. The outer callback is now replaced by an optional createRootContext method. This change was made in order to support TypeScript 4.9, but it also simplifies the API surface a bit, especially for plugin scoped service factories that don't need to create a root context. In addition, the factory and root context functions can now be synchronous.

    A factory that previously would have looked like this:

    ts
    createServiceFactory({
      service: coreServices.cache,
      deps: {
        config: coreServices.config,
        plugin: coreServices.pluginMetadata,
      },
      async factory({ config }) {
        const cacheManager = CacheManager.fromConfig(config);
        return async ({ plugin }) => {
          return cacheManager.forPlugin(plugin.getId());
        };
      },
    });
    

    Now instead looks like this:

    ts
    createServiceFactory({
      service: coreServices.cache,
      deps: {
        config: coreServices.config,
        plugin: coreServices.pluginMetadata,
      },
      async createRootContext({ config }) {
        return CacheManager.fromConfig(config);
      },
      async factory({ plugin }, manager) {
        return manager.forPlugin(plugin.getId());
      },
    });
    

    Although in many cases the createRootContext isn't needed, for example:

    ts
    createServiceFactory({
      service: coreServices.logger,
      deps: {
        rootLogger: coreServices.rootLogger,
        plugin: coreServices.pluginMetadata,
      },
      factory({ rootLogger, plugin }) {
        return rootLogger.child({ plugin: plugin.getId() });
      },
    });
    
  • 16054afdec: Documented coreServices an all of its members.

  • 0e63aab311: Updated the RootLoggerService to also have an addRedactions method.

  • 62b04bb865: Updates all create* methods to simplify their type definitions and ensure they all have configuration interfaces.

  • Updated dependencies

@backstage/[email protected]

Minor Changes

  • f75bf76330: Implemented support for the order directive on getEntities

Patch Changes

  • e23f13a573: Enable the by-refs endpoint to receive fields through the POST body as well as through query parameters.
  • Updated dependencies

@backstage/[email protected]

Minor Changes

Patch Changes

@backstage/[email protected]

Minor Changes

Patch Changes

@techdocs/[email protected]

Minor Changes

  • bc18c902a2: Add --preview-app-bundle-path and --preview-app-port options to the serve command enabling previewing with apps other than the provided one

Patch Changes

@backstage/[email protected]

Minor Changes

  • e4469d0ec1: The ADR plugin can now work with sites other than GitHub. Expanded the ADR backend plugin to provide endpoints to facilitate this.

    BREAKING The ADR plugin now requires the @backstage/plugin-adr-backend plugin to be installed by using the createRouter method to add into your backend. You read more in the install instructions

Patch Changes

@backstage/[email protected]

Minor Changes

  • f75bf76330: Implemented server side ordering in the entities endpoint

Patch Changes

@backstage/[email protected]

Minor Changes

  • e4c0240445: Added catalogFilter field to OwnerPicker and EntityPicker components to support filtering options by any field(s) of an entity.

    The allowedKinds field has been deprecated. Use catalogFilter instead. This field allows users to specify a filter on the shape of EntityFilterQuery, which can be passed into the CatalogClient. See examples below:

    • Get all entities of kind Group

      yaml
      owner:
        title: Owner
        type: string
        description: Owner of the component
        ui:field: OwnerPicker
        ui:options:
          catalogFilter:
            - kind: Group
      
    • Get entities of kind Group and spec.type team

      yaml
      owner:
        title: Owner
        type: string
        description: Owner of the component
        ui:field: OwnerPicker
        ui:options:
          catalogFilter:
            - kind: Group
              spec.type: team
      
  • b4955ed7b9: - Deprecation - Deprecated the following exports, please import them directly from @backstage/plugin-scaffolder-react instead

    createScaffolderFieldExtension
    ScaffolderFieldExtensions
    useTemplateSecrets
    scaffolderApiRef
    ScaffolderApi
    ScaffolderUseTemplateSecrets
    TemplateParameterSchema
    CustomFieldExtensionSchema
    CustomFieldValidator
    FieldExtensionOptions
    FieldExtensionComponentProps
    FieldExtensionComponent
    ListActionsResponse
    LogEvent
    ScaffolderDryRunOptions
    ScaffolderDryRunResponse
    ScaffolderGetIntegrationsListOptions
    ScaffolderGetIntegrationsListResponse
    ScaffolderOutputlink
    ScaffolderScaffoldOptions
    ScaffolderScaffoldResponse
    ScaffolderStreamLogsOptions
    ScaffolderTask
    ScaffolderTaskOutput
    ScaffolderTaskStatus
    
    • Deprecation - Deprecated the rootRouteRef export, this should now be used from scaffolderPlugin.routes.root

    • The following /alpha types have removed from this package and moved to the @backstage/plugin-scaffolder-react/alpha package

      createNextScaffolderFieldExtension
      FormProps
      NextCustomFieldValidator
      NextFieldExtensionComponentProps
      NextFieldExtensionOptions
      

Patch Changes

@backstage/[email protected]

Minor Changes

  • a6808b67a7: Implement Required approving review count, Restrictions, and Required commit signing support for publish:github action

  • 04a2048fb8: Allow custom repository roles to be configured on github repos

  • c0ad7341f7: Add Scaffolder action catalog:fetch to get entity by entity reference from catalog

  • b44eb68bcb: This change adds changes to provide examples alongside scaffolder task actions.

    The createTemplateAction function now takes a list of examples e.g.

    typescript
    const actionExamples = [
      {
        description: 'Example 1',
        example: yaml.stringify({
          steps: [
            {
              action: 'test:action',
              id: 'test',
              input: {
                input1: 'value',
              },
            },
          ],
        }),
      },
    ];
    
    export function createTestAction() {
      return createTemplateAction({
          id: 'test:action',
          examples: [
              {
                  description: 'Example 1',
                  examples: actionExamples
              }
          ],
          ...,
      });
    

    These examples can be retrieved later from the api.

    bash
    curl http://localhost:7007/api/scaffolder/v2/actions
    
    json
    [
      {
        "id": "test:action",
        "examples": [
          {
            "description": "Example 1",
            "example": "steps:\n  - action: test:action\n    id: test\n    input:\n      input1: value\n"
          }
        ],
        "schema": {
          "input": {
            "type": "object",
            "properties": {
              "input1": {
                "title": "Input 1",
                "type": "string"
              }
            }
          }
        }
      }
    ]
    
  • 72d6b9f4e2: Added ability to override the commit message and author details for the publish:bitbucketServer action.

  • a69664faee: Add Github repository support for squash merge commit title and message options

Patch Changes

  • 2fadff2a25: Change scaffolder task actions to include markdown to demonstrate the new ActionsPage markdown feature.

  • ecbec4ec4c: Internal refactor to match new options pattern in the experimental backend system.

  • e4c0240445: Added catalogFilter field to OwnerPicker and EntityPicker components to support filtering options by any field(s) of an entity.

    The allowedKinds field has been deprecated. Use catalogFilter instead. This field allows users to specify a filter on the shape of EntityFilterQuery, which can be passed into the CatalogClient. See examples below:

    • Get all entities of kind Group

      yaml
      owner:
        title: Owner
        type: string
        description: Owner of the component
        ui:field: OwnerPicker
        ui:options:
          catalogFilter:
            - kind: Group
      
    • Get entities of kind Group and spec.type team

      yaml
      owner:
        title: Owner
        type: string
        description: Owner of the component
        ui:field: OwnerPicker
        ui:options:
          catalogFilter:
            - kind: Group
              spec.type: team
      
  • 8e06f3cf00: Switched imports of loggerToWinstonLogger to @backstage/backend-common.

  • Updated dependencies

@backstage/[email protected]

Minor Changes

  • 66ff367af6: Add Sentry "Create Project" Scaffolder as new package

Patch Changes

@backstage/[email protected]

Minor Changes

  • 6d9a93def8: Allow customizing empty state component through noResultsComponent property.

    Example:

    jsx
    <SearchResult noResultsComponent={<>No results were found</>}>
      {({ results }) => (
        <List>
          {results.map(({ type, document }) => {
            switch (type) {
              case 'custom-result-item':
                return (
                  <CustomResultListItem
                    key={document.location}
                    result={document}
                  />
                );
              default:
                return (
                  <DefaultResultListItem
                    key={document.location}
                    result={document}
                  />
                );
            }
          })}
        </List>
      )}
    </SearchResult>
    

Patch Changes

@backstage/[email protected]

Minor Changes

  • 38fd519fc1: Add highlighting of legend item and show bubble on hover within the Tech Radar

Patch Changes

  • 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
  • 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

  • 6cfd4d7073: Include implementations for the new rootLifecycleServiceRef.
  • ecc6bfe4c9: Use new ServiceFactoryOrFunction type.
  • 015a6dced6: Updated to make sure that service implementations replace default service implementations.
  • 843a0a158c: Added factory for the new core identity service to the set of default service factories.
  • 5b7bcd3c5e: Added support to supply a shared environment to createBackend, which can be created using createSharedEnvironment from @backstage/backend-plugin-api.
  • 02b119ff93: The new root HTTP router service is now installed by default.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 6cfd4d7073: Include implementations for the new rootLifecycleServiceRef.
  • 015a6dced6: Updated to make sure that service implementations replace default service implementations.
  • a3ec2f32ea: The startTestBackend setup now includes default implementations for all core services.
  • 483e907eaf: Internal updates of createServiceFactory from @backstage/backend-plugin-api.
  • 51b7a7ed07: The backend started by startTestBackend now has default implementations of all core services. It now also returns a TestBackend instance, which provides access to the underlying server that can be used with testing libraries such as supertest.
  • f23eef3aa2: Updated dependency better-sqlite3 to ^8.0.0.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • db2e137744: Removed unnecessary usage of ThemeProvider from the ExampleComponent test in the plugin template.
  • 47c10706df: Fixed an issue where the CLI would fail to function when there was a mix of workspace and non-workspace versions of the same package in yarn.lock when using Yarn 3.
  • 2b435be4cf: Updated backend plugin ID during creation to match user-entered input.
  • 4b572126f1: Add experimental environment variable to enable caching for production builds.
  • 7b407b303b: Slightly improve readability of "base URL conflict" error handling code
  • a62a1f9dca: The frontend serve task now filters out allowed package duplicates during its package check, just like versions:bump and versions:check.
  • d06a7890c6: Removed unused package type-fest
  • 7c8a974515: The repo test, repo lint, and repo build commands will now analyze yarn.lock for dependency changes when searching for changed packages. This allows you to use the --since <ref> flag even if you have yarn.lock changes.
  • e1b71e142e: Workspace ranges are no longer considered invalid by version commands.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

  • ba2d69ee17: Adds the ability to coerce values to their boolean representatives. Values such as "true" 1 on and y will become true when using getBoolean and the opposites false. This happens particularly when such parameters are used with environmental substitution as environment variables are always strings.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • f834622f56: Bumped create-app version.

  • 724b55689b: Avoid potential temporary directory conflict.

  • a2a70504e3: Remove deprecated create-plugin script from the default-app template's package.json.hbs. Also, update the documentation to not mention the create-plugin script and instead mention the new script.

  • 016a52c28f: Bumped the minimum version of better-sqlite3. You can make the following change to your packages/backend/package.json to keep your instance of Backstage updated.

    diff
    - "better-sqlite3": "^7.5.0",
    + "better-sqlite3": "^8.0.0",
    
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • c447a5221b: Use the project tsconfig in case of selection all packages
  • 93cff3053e: Move some dependencies as peerDependencies because we need to always use same version as in api-extractor
  • d48cf39f2a: fix glob on windows os
  • 75275b0b0b: Updated dependency @microsoft/tsdoc-config to 0.16.2.
  • 76fc6f7ec8: Updates Api-extractor and api-documenter version
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • b4ffa3bd91: The warning for missing app contents is now logged as an error instead, but only in production.
  • ecbec4ec4c: Internal refactor to match new options pattern in the experimental backend system.
  • 8e06f3cf00: Switched imports of loggerToWinstonLogger to @backstage/backend-common.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 0bf734dbac: Created soft cut on ProjectCard to indicate more content.
  • 41d0b0a24a: Added isBazaarAvailable helper to be used with the EntitySwitch.
  • 92a33f0ae3: Updated README.md to include instructions of installing the Bazaar Backend
  • 99d52523c7: Allow customisation of title and subtitle on bazaar page.
  • 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
  • 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 0358d399ad: Updated dependency ts-morph to ^17.0.0.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 217149ae98: The default event broker will now catch and log errors thrown by the onEvent method of subscribers. The returned promise from publish method will also not resolve until all subscribers have handled the event.
  • 8e06f3cf00: Switched imports of loggerToWinstonLogger to @backstage/backend-common.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • e4c0240445: Added catalogFilter field to OwnerPicker and EntityPicker components to support filtering options by any field(s) of an entity.

    The allowedKinds field has been deprecated. Use catalogFilter instead. This field allows users to specify a filter on the shape of EntityFilterQuery, which can be passed into the CatalogClient. See examples below:

    • Get all entities of kind Group

      yaml
      owner:
        title: Owner
        type: string
        description: Owner of the component
        ui:field: OwnerPicker
        ui:options:
          catalogFilter:
            - kind: Group
      
    • Get entities of kind Group and spec.type team

      yaml
      owner:
        title: Owner
        type: string
        description: Owner of the component
        ui:field: OwnerPicker
        ui:options:
          catalogFilter:
            - kind: Group
              spec.type: team
      
  • Updated dependencies

@backstage/[email protected]

Patch Changes

  • 268b8634f9: handle skipActiveRecord rails new argument

  • 2fadff2a25: Change scaffolder task actions to include markdown to demonstrate the new ActionsPage markdown feature.

  • e4c0240445: Added catalogFilter field to OwnerPicker and EntityPicker components to support filtering options by any field(s) of an entity.

    The allowedKinds field has been deprecated. Use catalogFilter instead. This field allows users to specify a filter on the shape of EntityFilterQuery, which can be passed into the CatalogClient. See examples below:

    • Get all entities of kind Group

      yaml
      owner:
        title: Owner
        type: string
        description: Owner of the component
        ui:field: OwnerPicker
        ui:options:
          catalogFilter:
            - kind: Group
      
    • Get entities of kind Group and spec.type team

      yaml
      owner:
        title: Owner
        type: string
        description: Owner of the component
        ui:field: OwnerPicker
        ui:options:
          catalogFilter:
            - kind: Group
              spec.type: team
      
  • Updated dependencies

@backstage/[email protected]

Patch Changes

  • e4c0240445: Added catalogFilter field to OwnerPicker and EntityPicker components to support filtering options by any field(s) of an entity.

    The allowedKinds field has been deprecated. Use catalogFilter instead. This field allows users to specify a filter on the shape of EntityFilterQuery, which can be passed into the CatalogClient. See examples below:

    • Get all entities of kind Group

      yaml
      owner:
        title: Owner
        type: string
        description: Owner of the component
        ui:field: OwnerPicker
        ui:options:
          catalogFilter:
            - kind: Group
      
    • Get entities of kind Group and spec.type team

      yaml
      owner:
        title: Owner
        type: string
        description: Owner of the component
        ui:field: OwnerPicker
        ui:options:
          catalogFilter:
            - kind: Group
              spec.type: team
      
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 011bd518b7: Fixed spelling mistakes in documentation.
  • 1e1a9fe979: Fixed a bug that could cause an indexing process to silently fail, timeout, and accumulate stale indices.
  • 2a49ffbcb3: Improved documentation on the ElasticSearchSearchEngine.newClient() method.
  • 56633804dd: Fixed a bug that could cause the backstage backend to unexpectedly terminate when client errors were encountered during the indexing process.
  • aa33a06894: Improved index throughput by optimizing when and how many documents were made available to the bulk client.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 06f6a4f0f1: Enable configuration override for StackOverflow backend plugin when instantiating the search indexer. This makes it possible to set different configuration for frontend and backend of the plugin.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

  • 7a38a31699: Complete check results run when a single check errors so that we don't block other checks from working due to an error in a single check
  • 44c18b4d3f: Expose optional persistenceContext on TechInsights construction to enable integrators to provide their own database implementations for fact handling.
  • b48317cfc6: Modifies database cleanup to remove all facts for entities instead of hand-picked ones only. Improves query execution a lot in large datasets. Changes semantics of the lifecycle deletion logic slightly for cases were historical entities/facts, that are , not present in the application anymore, were kept forever instead of being cleaned up. The new implementation is more along the expected lines.
  • Updated dependencies

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

@backstage/[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

[email protected]

Patch Changes

@internal/[email protected]

Patch Changes

@internal/[email protected]

Patch Changes

@internal/[email protected]

Patch Changes

@internal/[email protected]

Patch Changes