Skip to main content

Release v1.45.0-next.2

Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.45.0-next.2

@backstage/backend-app-api@1.3.0-next.1

Minor Changes

  • a17d9df: Updates API for instanceMetadata service to return a list of plugins not features.

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/backend-plugin-api@1.5.0-next.1

Minor Changes

  • a17d9df: Promote instanceMetadata service to main entrypoint.

Patch Changes

  • Updated dependencies
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1

@backstage/ui@0.9.0-next.2

Minor Changes

  • 539cf26: BREAKING: Migrated Avatar component from Base UI to custom implementation with size changes:

    • Base UI-specific props are no longer supported
    • Size values have been updated:
      • New x-small size added (1.25rem / 20px)
      • small size unchanged (1.5rem / 24px)
      • medium size unchanged (2rem / 32px, default)
      • large size changed from 3rem to 2.5rem (40px)
      • New x-large size added (3rem / 48px)

    Migration:

    # Remove Base UI-specific props
    - <Avatar src="..." name="..." render={...} />
    + <Avatar src="..." name="..." />

    # Update large size usage to x-large for same visual size
    - <Avatar src="..." name="..." size="large" />
    + <Avatar src="..." name="..." size="x-large" />

    Added purpose prop for accessibility control ('informative' or 'decoration').

  • 134151f: Fixing styles on SearchField in Backstage UI after migration to CSS modules. SearchField has now its own set of class names. We previously used class names from TextField but this approach was creating some confusion so going forward in your theme you'll be able to theme TextField and SearchField separately.

Patch Changes

  • d01de00: Fix broken external links in Backstage UI Header component.
  • deaa427: Fixed Text component to prevent truncate prop from being spread to the underlying DOM element.
  • 1059f95: Improved the Link component structure in Backstage UI.
  • 6874094: Migrated CellProfile component from Base UI Avatar to Backstage UI Avatar component.
  • 719d772: Avatar components in x-small and small sizes now display only one initial instead of two, improving readability at smaller dimensions.
  • 3b18d80: Fixed RadioGroup radio button ellipse distortion by preventing flex shrink and grow.
  • e16ece5: Set the color-scheme property depending on theme

@backstage/plugin-catalog@1.32.0-next.1

Minor Changes

  • a521911: Add support for customizable icons in SearchResultListItemBlueprint and related components

Patch Changes

  • Updated dependencies
    • @backstage/plugin-search-react@1.10.0-next.1
    • @backstage/plugin-catalog-react@1.21.3-next.1
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/frontend-plugin-api@0.12.2-next.1
    • @backstage/core-compat-api@0.5.4-next.0

@backstage/plugin-catalog-backend@3.2.0-next.1

Minor Changes

  • 2d229b2: Enable YAML merge keys in yamlPlaceholderResolver
  • 9d3ec06: Make YAML merge (<<:) support configurable in the Backstage Catalog instead of always being enabled
  • 8c26af4: Enable YAML merge keys in yamlPlaceholderResolver

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/backend-openapi-utils@0.6.3-next.1
    • @backstage/plugin-events-node@0.4.17-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1

@backstage/plugin-catalog-backend-module-ldap@0.12.0-next.1

Minor Changes

  • 980f240: Moved from ldapjs dependency to ldapts

    Breaking Changes

    Type Migration

    Custom transformers must now accept Entry from ldapts instead of SearchEntry from ldapjs The Entry type provides direct property access without need for .object() or .raw() methods.

    If you have custom user or group transformers, update the signature from:

    (vendor: LdapVendor, config: UserConfig, entry: SearchEntry) =>
    Promise<UserEntity | undefined>;

    to

    (vendor: LdapVendor, config: UserConfig, entry: Entry) =>
    Promise<UserEntity | undefined>;

    Search Options

    Updated LDAP search configuration typesOnly: falseattributeValues: true This inverts the boolean logic: ldapjs used negative form while ldapts uses positive form. Both achieve the same result: retrieving attribute values rather than just attribute names.

    Update LDAP search options in configuration from

    options:
    typesOnly: false

    to

    options:
    attributeValues: true

    API Changes Removed LdapClient.searchStreaming() method. Users should migrate to LdapClient.search() instead

    If you're using searchStreaming directly:

    // Before
    await client.searchStreaming(dn, options, async entry => {
    // process each entry
    });

    // After
    const entries = await client.search(dn, options);
    for (const entry of entries) {
    // process each entry
    }

    NOTE:: Both methods have always loaded all entries into memory. The searchStreaming method was only needed internally to handle ldapjs's event-based API.

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-catalog-node@1.20.0-next.1

Minor Changes

  • 9d3ec06: Make YAML merge (<<:) support configurable in the Backstage Catalog instead of always being enabled
  • 8c26af4: Enable YAML merge keys in yamlPlaceholderResolver

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1

@backstage/plugin-gateway-backend@1.1.0-next.1

Minor Changes

  • a17d9df: Update usage of the instanceMetadata service.

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-scaffolder-backend-module-gitlab@0.10.0-next.1

Minor Changes

  • ff96d7e: fix scaffolder action createDeployToken to allow usage of oauth tokens

Patch Changes

  • b2bef92: Convert all enums to erasable-syntax compliant patterns
  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-search@1.5.0-next.1

Minor Changes

  • a521911: Add support for customizable icons in SearchResultListItemBlueprint and related components

Patch Changes

  • Updated dependencies
    • @backstage/plugin-search-react@1.10.0-next.1
    • @backstage/plugin-catalog-react@1.21.3-next.1
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/frontend-plugin-api@0.12.2-next.1
    • @backstage/core-compat-api@0.5.4-next.0

@backstage/plugin-search-react@1.10.0-next.1

Minor Changes

  • a521911: Add support for customizable icons in SearchResultListItemBlueprint and related components

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/frontend-plugin-api@0.12.2-next.1

@backstage/plugin-techdocs@1.16.0-next.1

Minor Changes

  • a521911: Add support for customizable icons in SearchResultListItemBlueprint and related components

Patch Changes

  • 71c22f3: Removed/moved unused dependencies
  • Updated dependencies
    • @backstage/plugin-search-react@1.10.0-next.1
    • @backstage/plugin-catalog-react@1.21.3-next.1
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/frontend-plugin-api@0.12.2-next.1
    • @backstage/core-compat-api@0.5.4-next.0

@backstage/backend-defaults@0.13.1-next.1

Patch Changes

  • 91ab2eb: Fix a bug in the Gitlab URL reader where search did not handle multiple globs
  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/backend-app-api@1.3.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1
    • @backstage/plugin-events-node@0.4.17-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1

@backstage/backend-dynamic-feature-service@0.7.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@3.2.0-next.1
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/backend-openapi-utils@0.6.3-next.1
    • @backstage/plugin-app-node@0.1.39-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1
    • @backstage/plugin-events-backend@0.5.8-next.1
    • @backstage/plugin-events-node@0.4.17-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1
    • @backstage/plugin-search-backend-node@1.3.17-next.1

@backstage/backend-openapi-utils@0.6.3-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/backend-test-utils@1.10.0-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/backend-app-api@1.3.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/cli@0.34.5-next.1

Patch Changes

  • da19cb5: Fix inconsistent behavior in the new command for the @internal scope: it now consistently defaults to the backstage-plugin- infix whether the --scope option is not set or it's set to internal.
  • b2bef92: Convert all enums to erasable-syntax compliant patterns

@backstage/core-app-api@1.19.2-next.1

Patch Changes

  • b2bef92: Convert all enums to erasable-syntax compliant patterns
  • Updated dependencies
    • @backstage/core-plugin-api@1.11.2-next.1

@backstage/core-components@0.18.3-next.1

Patch Changes

  • b2bef92: Convert all enums to erasable-syntax compliant patterns
  • Updated dependencies
    • @backstage/core-plugin-api@1.11.2-next.1

@backstage/core-plugin-api@1.11.2-next.1

Patch Changes

  • b2bef92: Convert all enums to erasable-syntax compliant patterns

@backstage/create-app@0.7.6-next.2

Patch Changes

  • 9f939a6: Added @backstage/plugin-app-visualizer to the app in the --next template.

@backstage/frontend-plugin-api@0.12.2-next.1

Patch Changes

  • 878c251: Updated to ExtensionInput to make all type parameters optional.
  • Updated dependencies
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1

@backstage/repo-tools@0.15.4-next.1

Patch Changes

  • 8f56eae: Updated knip-reports to detect dependencies in dev/alpha pattern
  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-api-docs@0.13.1-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog@1.32.0-next.1
    • @backstage/plugin-catalog-react@1.21.3-next.1
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/frontend-plugin-api@0.12.2-next.1
    • @backstage/core-compat-api@0.5.4-next.0

@backstage/plugin-app-backend@0.5.8-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-app-node@0.1.39-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-app-node@0.1.39-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-app-visualizer@0.1.25-next.1

Patch Changes

  • e81b3f0: Improve tree visualizer to use a horizontal layout and fill the content space.
  • Updated dependencies
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/frontend-plugin-api@0.12.2-next.1

@backstage/plugin-auth-backend@0.25.6-next.1

Patch Changes

  • 51ff7d8: Allow configuring dynamic client registration token expiration with config auth.experimentalDynamicClientRegistration.tokenExpiration.

    Maximum expiration for the DCR token is 24 hours. Default expiration is 1 hour.

  • Updated dependencies

    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-atlassian-provider@0.4.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-auth0-provider@0.2.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-backend@0.25.6-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.14-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-bitbucket-provider@0.3.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-github-provider@0.3.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-gitlab-provider@0.3.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-google-provider@0.3.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-guest-provider@0.2.14-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-microsoft-provider@0.3.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-oauth2-provider@0.4.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.14-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-oidc-provider@0.4.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-backend@0.25.6-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-okta-provider@0.2.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-onelogin-provider@0.3.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-openshift-provider@0.1.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-pinniped-provider@0.3.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-auth-node@0.6.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-catalog-backend-module-aws@0.4.17-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-catalog-backend-module-azure@0.3.11-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-catalog-backend-module-backstage-openapi@0.5.8-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/backend-openapi-utils@0.6.3-next.1

@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-catalog-backend-module-bitbucket-server@0.5.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-catalog-backend-module-gcp@0.3.14-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-catalog-backend-module-gerrit@0.3.8-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-catalog-backend-module-gitea@0.1.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-catalog-backend-module-github@0.11.2-next.1

Patch Changes

  • 999d1c1: Added configurable pageSizes for GitHub GraphQL API queries to prevent RESOURCE_LIMITS_EXCEEDED errors with organizations with large number of repositories. Please see the GitHub Discovery documentation for new configuration options.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-catalog-backend-module-github-org@0.3.16-next.1

Patch Changes

  • 999d1c1: Added configurable pageSizes for GitHub GraphQL API queries to prevent RESOURCE_LIMITS_EXCEEDED errors with organizations with large number of teams and members. Please see the GitHub Org Data documentation for new configuration options.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-catalog-backend-module-github@0.11.2-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-catalog-backend-module-gitlab@0.7.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-catalog-backend-module-gitlab-org@0.2.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-catalog-backend-module-gitlab@0.7.5-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.6-next.1

Patch Changes

  • 70745c5: Correctly handle entity removal computation when DB count query returns string
  • Updated dependencies
    • @backstage/plugin-catalog-backend@3.2.0-next.1
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-catalog-backend-module-logs@0.1.16-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@3.2.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-catalog-backend-module-msgraph@0.8.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-catalog-backend-module-openapi@0.2.16-next.1

Patch Changes

  • a5bcb2a: fix wrong dereferencing for AsyncApi 3 documents
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-catalog-backend-module-puppetdb@0.2.16-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.14-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-catalog-backend-module-unprocessed@0.6.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-catalog-graph@0.5.3-next.1

Patch Changes

  • b2bef92: Convert all enums to erasable-syntax compliant patterns
  • Updated dependencies
    • @backstage/plugin-catalog-react@1.21.3-next.1
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/frontend-plugin-api@0.12.2-next.1
    • @backstage/core-compat-api@0.5.4-next.0

@backstage/plugin-catalog-react@1.21.3-next.1

Patch Changes

  • 2b7924b: Apply default ordering of templates
  • Updated dependencies
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/frontend-plugin-api@0.12.2-next.1
    • @backstage/core-compat-api@0.5.4-next.0

@backstage/plugin-devtools-backend@0.5.11-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-devtools-common@0.1.19-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1

@backstage/plugin-devtools-common@0.1.19-next.1

Patch Changes

  • b2bef92: Convert all enums to erasable-syntax compliant patterns
  • Updated dependencies
    • @backstage/plugin-permission-common@0.9.3-next.1

@backstage/plugin-events-backend@0.5.8-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/backend-openapi-utils@0.6.3-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-events-backend-module-aws-sqs@0.4.17-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-events-backend-module-azure@0.2.26-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.26-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-events-backend-module-bitbucket-server@0.1.7-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-events-backend-module-gerrit@0.2.26-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-events-backend-module-github@0.4.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-events-backend-module-gitlab@0.3.7-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-events-backend-module-google-pubsub@0.1.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-events-backend-module-kafka@0.1.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-events-node@0.4.17-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-kubernetes-backend@0.20.4-next.1

Patch Changes

  • 71c22f3: Removed/moved unused dependencies
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-kubernetes-node@0.3.6-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1

@backstage/plugin-kubernetes-node@0.3.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-mcp-actions-backend@0.1.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-notifications-backend@0.5.12-next.1

Patch Changes

  • 15fb764: Show default settings for notifications even before receiving first notification.

    Previously, it was not possible for the users to see or modify their notification settings until they had received at least one notification from specific origin or topic. This update ensures that default settings are displayed from the outset, allowing users to customize their preferences immediately.

  • Updated dependencies

    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-notifications-node@0.2.21-next.1
    • @backstage/plugin-signals-node@0.1.26-next.1

@backstage/plugin-notifications-backend-module-email@0.3.16-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-notifications-node@0.2.21-next.1

@backstage/plugin-notifications-backend-module-slack@0.2.1-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-notifications-node@0.2.21-next.1

@backstage/plugin-notifications-node@0.2.21-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-signals-node@0.1.26-next.1

@backstage/plugin-permission-backend@0.7.6-next.1

Patch Changes

  • b2bef92: Convert all enums to erasable-syntax compliant patterns
  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1

@backstage/plugin-permission-backend-module-allow-all-policy@0.2.14-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1

@backstage/plugin-permission-common@0.9.3-next.1

Patch Changes

  • b2bef92: Convert all enums to erasable-syntax compliant patterns

@backstage/plugin-permission-node@0.10.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1

@backstage/plugin-proxy-backend@0.6.8-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-proxy-node@0.1.10-next.1

@backstage/plugin-proxy-node@0.1.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-scaffolder-backend@3.0.1-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/plugin-scaffolder-backend-module-gitlab@0.10.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.14-next.1
    • @backstage/plugin-scaffolder-backend-module-github@0.9.2-next.1
    • @backstage/backend-openapi-utils@0.6.3-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1
    • @backstage/plugin-events-node@0.4.17-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1
    • @backstage/plugin-scaffolder-backend-module-azure@0.2.15-next.1
    • @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.16-next.1
    • @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.15-next.1
    • @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.15-next.1
    • @backstage/plugin-scaffolder-backend-module-gerrit@0.2.15-next.1
    • @backstage/plugin-scaffolder-backend-module-gitea@0.2.15-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-azure@0.2.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-bitbucket@0.3.16-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.15-next.1
    • @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.15-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.17-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-gcp@0.2.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-gerrit@0.2.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-gitea@0.2.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-github@0.9.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-notifications@0.1.16-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-notifications-node@0.2.21-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-rails@0.5.15-next.1

Patch Changes

  • b2bef92: Convert all enums to erasable-syntax compliant patterns
  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-sentry@0.2.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-scaffolder-backend-module-yeoman@0.4.16-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1
    • @backstage/plugin-scaffolder-node-test-utils@0.3.5-next.1

@backstage/plugin-scaffolder-node@0.12.1-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1

@backstage/plugin-scaffolder-node-test-utils@0.3.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/backend-test-utils@1.10.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.1-next.1

@backstage/plugin-search-backend@2.0.8-next.1

Patch Changes

  • b2bef92: Convert all enums to erasable-syntax compliant patterns
  • Updated dependencies
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/backend-openapi-utils@0.6.3-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1
    • @backstage/plugin-search-backend-node@1.3.17-next.1

@backstage/plugin-search-backend-module-catalog@0.3.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-search-backend-node@1.3.17-next.1

@backstage/plugin-search-backend-module-elasticsearch@1.7.8-next.1

Patch Changes

  • 71c22f3: Removed/moved unused dependencies
  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-search-backend-node@1.3.17-next.1

@backstage/plugin-search-backend-module-explore@0.3.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-search-backend-node@1.3.17-next.1

@backstage/plugin-search-backend-module-pg@0.5.50-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-search-backend-node@1.3.17-next.1

@backstage/plugin-search-backend-module-stack-overflow-collator@0.3.15-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-search-backend-node@1.3.17-next.1

@backstage/plugin-search-backend-module-techdocs@0.4.8-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-search-backend-node@1.3.17-next.1
    • @backstage/plugin-techdocs-node@1.13.9-next.1

@backstage/plugin-search-backend-node@1.3.17-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1

@backstage/plugin-signals@0.0.25-next.1

Patch Changes

  • 71c22f3: Removed/moved unused dependencies
  • f0f006e: Fixes a bug where the SignalClient would try to subscribe to the same channel twice after an error, instead of just once.
  • Updated dependencies
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/frontend-plugin-api@0.12.2-next.1
    • @backstage/core-compat-api@0.5.4-next.0

@backstage/plugin-signals-backend@0.3.10-next.1

Patch Changes

  • 71c22f3: Removed/moved unused dependencies
  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-events-node@0.4.17-next.1
    • @backstage/plugin-signals-node@0.1.26-next.1

@backstage/plugin-signals-node@0.1.26-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1
    • @backstage/plugin-events-node@0.4.17-next.1

@backstage/plugin-techdocs-addons-test-utils@1.1.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-techdocs@1.16.0-next.1
    • @backstage/plugin-search-react@1.10.0-next.1
    • @backstage/plugin-catalog@1.32.0-next.1
    • @backstage/plugin-catalog-react@1.21.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/core-app-api@1.19.2-next.1

@backstage/plugin-techdocs-backend@2.1.2-next.1

Patch Changes

  • 71c22f3: Removed/moved unused dependencies
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.20.0-next.1
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-techdocs-node@1.13.9-next.1

@backstage/plugin-techdocs-module-addons-contrib@1.1.30-next.1

Patch Changes

  • 6929480: ExpandableCollapse Techdocs Addon was breaking native sidebar collapse on Firefox
  • Updated dependencies
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/frontend-plugin-api@0.12.2-next.1

@backstage/plugin-techdocs-node@1.13.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1

@backstage/plugin-user-settings-backend@0.3.8-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1
    • @backstage/plugin-signals-node@0.1.26-next.1

example-app@0.2.115-next.2

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.9.0-next.2
    • @backstage/plugin-techdocs@1.16.0-next.1
    • @backstage/plugin-signals@0.0.25-next.1
    • @backstage/plugin-search-react@1.10.0-next.1
    • @backstage/plugin-catalog@1.32.0-next.1
    • @backstage/plugin-search@1.5.0-next.1
    • @backstage/cli@0.34.5-next.1
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.30-next.1
    • @backstage/plugin-catalog-react@1.21.3-next.1
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/core-app-api@1.19.2-next.1
    • @backstage/plugin-catalog-graph@0.5.3-next.1
    • @backstage/plugin-scaffolder@1.34.3-next.0
    • @backstage/plugin-api-docs@0.13.1-next.1
    • @backstage/plugin-catalog-import@0.13.7-next.0
    • @backstage/plugin-org@0.6.46-next.0
    • @backstage/plugin-scaffolder-react@1.19.3-next.0
    • @backstage/plugin-user-settings@0.8.29-next.0

example-app-next@0.0.29-next.2

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.9.0-next.2
    • @backstage/plugin-techdocs@1.16.0-next.1
    • @backstage/plugin-signals@0.0.25-next.1
    • @backstage/plugin-search-react@1.10.0-next.1
    • @backstage/plugin-catalog@1.32.0-next.1
    • @backstage/plugin-search@1.5.0-next.1
    • @backstage/plugin-app-visualizer@0.1.25-next.1
    • @backstage/cli@0.34.5-next.1
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.30-next.1
    • @backstage/plugin-catalog-react@1.21.3-next.1
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/core-app-api@1.19.2-next.1
    • @backstage/plugin-catalog-graph@0.5.3-next.1
    • @backstage/frontend-plugin-api@0.12.2-next.1
    • @backstage/plugin-scaffolder@1.34.3-next.0
    • @backstage/core-compat-api@0.5.4-next.0
    • @backstage/plugin-api-docs@0.13.1-next.1
    • @backstage/plugin-catalog-import@0.13.7-next.0
    • @backstage/plugin-org@0.6.46-next.0
    • @backstage/plugin-scaffolder-react@1.19.3-next.0
    • @backstage/plugin-user-settings@0.8.29-next.0

example-backend@0.0.44-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@3.2.0-next.1
    • @backstage/plugin-search-backend-module-elasticsearch@1.7.8-next.1
    • @backstage/plugin-kubernetes-backend@0.20.4-next.1
    • @backstage/plugin-techdocs-backend@2.1.2-next.1
    • @backstage/plugin-signals-backend@0.3.10-next.1
    • @backstage/backend-defaults@0.13.1-next.1
    • @backstage/plugin-notifications-backend@0.5.12-next.1
    • @backstage/plugin-catalog-backend-module-openapi@0.2.16-next.1
    • @backstage/backend-plugin-api@1.5.0-next.1
    • @backstage/plugin-permission-backend@0.7.6-next.1
    • @backstage/plugin-permission-common@0.9.3-next.1
    • @backstage/plugin-search-backend@2.0.8-next.1
    • @backstage/plugin-auth-backend@0.25.6-next.1
    • @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.8-next.1
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.14-next.1
    • @backstage/plugin-catalog-backend-module-unprocessed@0.6.6-next.1
    • @backstage/plugin-mcp-actions-backend@0.1.5-next.1
    • @backstage/plugin-scaffolder-backend@3.0.1-next.1
    • @backstage/plugin-scaffolder-backend-module-github@0.9.2-next.1
    • @backstage/plugin-search-backend-module-catalog@0.3.10-next.1
    • @backstage/plugin-search-backend-module-techdocs@0.4.8-next.1
    • @backstage/plugin-app-backend@0.5.8-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.3.9-next.1
    • @backstage/plugin-auth-backend-module-guest-provider@0.2.14-next.1
    • @backstage/plugin-auth-backend-module-openshift-provider@0.1.2-next.1
    • @backstage/plugin-auth-node@0.6.9-next.1
    • @backstage/plugin-devtools-backend@0.5.11-next.1
    • @backstage/plugin-events-backend@0.5.8-next.1
    • @backstage/plugin-events-backend-module-google-pubsub@0.1.6-next.1
    • @backstage/plugin-permission-backend-module-allow-all-policy@0.2.14-next.1
    • @backstage/plugin-permission-node@0.10.6-next.1
    • @backstage/plugin-proxy-backend@0.6.8-next.1
    • @backstage/plugin-scaffolder-backend-module-notifications@0.1.16-next.1
    • @backstage/plugin-search-backend-module-explore@0.3.9-next.1
    • @backstage/plugin-search-backend-node@1.3.17-next.1

techdocs-cli-embedded-app@0.2.114-next.2

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.9.0-next.2
    • @backstage/plugin-techdocs@1.16.0-next.1
    • @backstage/plugin-catalog@1.32.0-next.1
    • @backstage/cli@0.34.5-next.1
    • @backstage/core-components@0.18.3-next.1
    • @backstage/core-plugin-api@1.11.2-next.1
    • @backstage/core-app-api@1.19.2-next.1

@internal/plugin-todo-list-backend@1.0.45-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.5.0-next.1