Skip to main content
Version: Next

Release v1.48.0-next.2

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

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

Minor Changes

  • 42abfb1: Added createServiceMock, a public utility for creating ServiceMock instances for custom service refs. This allows plugin authors to define mock creators for their own services following the same pattern as the built-in mockServices mocks.

Patch Changes

  • 68eb322: Added @types/jest as an optional peer dependency, since jest types are exposed in the public API surface.
  • Updated dependencies
    • @backstage/backend-app-api@1.5.0-next.1
    • @backstage/backend-defaults@0.15.2-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-auth-node@0.6.13-next.1
    • @backstage/plugin-events-node@0.4.19-next.0

@backstage/filter-predicates@0.1.0-next.0

Minor Changes

  • 7feb83b: Introduced package, basically as the extracted predicate types from @backstage/plugin-catalog-react/alpha

@backstage/frontend-test-utils@0.5.0-next.2

Minor Changes

  • 09a6aad: BREAKING: Removed the TestApiRegistry class, use TestApiProvider directly instead, storing reused APIs in a variable, e.g. const apis = [...] as const.

  • d2ac2ec: Added MockAlertApi and MockFeatureFlagsApi implementations to the mockApis namespace. The mock implementations include useful testing methods like clearAlerts(), waitForAlert(), getState(), setState(), and clearState() for better test ergonomics.

  • 09a6aad: BREAKING: The mockApis namespace is no longer a re-export from @backstage/test-utils. It's now a standalone namespace with mock implementations of most core APIs. Mock API instances can be passed directly to TestApiProvider, renderInTestApp, and renderTestApp without needing [apiRef, impl] tuples. As part of this change, the .factory() method on some mocks has been removed, since it's now redundant.

    // Before
    import { mockApis } from '@backstage/frontend-test-utils';

    renderInTestApp(<MyComponent />, {
    apis: [[identityApiRef, mockApis.identity()]],
    });

    // After - mock APIs can be passed directly
    renderInTestApp(<MyComponent />, {
    apis: [mockApis.identity()],
    });

    This change also adds createApiMock, a public utility for creating mock API factories, intended for plugin authors to create their own .mock() variants.

Patch Changes

  • 15ed3f9: Added snapshot() method to ExtensionTester, which returns a tree-shaped representation of the resolved extension hierarchy. Convenient to use with toMatchInlineSnapshot().

  • 013ec22: Added mountedRoutes option to renderTestApp for binding route refs to paths, matching the existing option in renderInTestApp:

    renderTestApp({
    extensions: [...],
    mountedRoutes: {
    '/my-path': myRouteRef,
    },
    });
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.

  • Updated dependencies

    • @backstage/core-app-api@1.19.5-next.1
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/frontend-app-api@0.15.0-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1
    • @backstage/version-bridge@1.0.12-next.0
    • @backstage/test-utils@1.7.15-next.2
    • @backstage/plugin-app@0.4.0-next.2
    • @backstage/plugin-app-react@0.1.1-next.0

@backstage/ui@0.12.0-next.2

Minor Changes

  • b63c25b: BREAKING: Removed gray scale tokens and renamed background surface tokens to neutral tokens

    The --bui-gray-1 through --bui-gray-8 tokens have been removed. The --bui-bg-surface-* and --bui-bg-neutral-on-surface-* tokens have been replaced by a unified --bui-bg-neutral-* scale.

    Migration:

    Replace surface tokens directly:

    - background: var(--bui-bg-surface-0);
    + background: var(--bui-bg-app);

    Replace on-surface tokens shifted by +1:

    - background: var(--bui-bg-neutral-on-surface-0);
    + background: var(--bui-bg-neutral-1);

    Replace gray tokens 1-4 with neutral equivalents (--bui-gray-5 through --bui-gray-8 have no direct replacement):

    - background: var(--bui-gray-1);
    + background: var(--bui-bg-neutral-1);

Patch Changes

  • c8ae765: Fixed nested Accordion icon state issue where the inner accordion's arrow icon would incorrectly show as expanded when only the outer accordion was expanded. The CSS selector now uses a direct parent selector to ensure the icon only responds to its own accordion's expanded state.

    Affected components: Accordion

  • 5c76d13: Allow ref as a prop on the Tag component

    Affected components: Tag

  • 741a98d: Allow data to be passed directly to the useTable hook using the property data instead of getData() for mode "complete".

    This simplifies usage as data changes, rather than having to perform a useEffect when data changes, and then reloading the data. It also happens immediately, so stale data won't remain until a rerender (with an internal async state change), so less flickering.

    Affected components: Table

  • a0fe1b2: Fixed changing columns after first render from crashing. It now renders the table with the new column layout as columns change.

    Affected components: Table

  • becf851: export PasswordField component

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.

  • 8c39412: The Table component now wraps the react-aria-components Table with a ResizableTableContainer only if any column has a width property set. This means that column widths can adapt to the content otherwise (if no width is explicitly set).

    Affected components: Table

  • 20131c5: Migrated to use the standard backstage-cli package build for CSS bundling instead of a custom build script.

  • Updated dependencies

    • @backstage/version-bridge@1.0.12-next.0

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

Minor Changes

  • d0786b9: Added experimental support for refresh tokens via the auth.experimentalRefreshToken.enabled configuration option. When enabled, clients can request the offline_access scope to receive refresh tokens that can be used to obtain new access tokens without re-authentication.

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-auth-node@0.6.13-next.1

@backstage/plugin-catalog@1.33.0-next.2

Minor Changes

  • 491a06c: Add the ability to show icons for the tabs on the entity page (new frontend)

Patch Changes

  • 220d6c3: Add missing translation entries for catalog UI text.

    This change adds translation keys and updates relevant UI components to use the correct localized labels and text in the catalog plugin. It ensures that catalog screens such as entity layout, tabs, search result items, table labels, and other UI elements correctly reference the i18n system for translation.

    No functional behavior is changed aside from the improved internationalization support.

  • 7feb83b: Adjusted to use the new @backstage/filter-predicates types for predicate expressions.

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.

  • 75ac651: Migrated EntityRelationWarning and EntityProcessingErrorsPanel components from Material UI to Backstage UI.

  • Updated dependencies

    • @backstage/ui@0.12.0-next.2
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/integration-react@1.2.15-next.2
    • @backstage/core-compat-api@0.5.8-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1
    • @backstage/version-bridge@1.0.12-next.0
    • @backstage/plugin-techdocs-react@1.3.8-next.1
    • @backstage/plugin-search-react@1.10.3-next.2

@backstage/plugin-catalog-react@2.0.0-next.2

Minor Changes

  • 491a06c: Add the ability to show icons for the tabs on the entity page (new frontend)

  • 7feb83b: BREAKING ALPHA: All of the predicate types and functions have been moved to the @backstage/filter-predicates package.

    When moving into the more general package, they were renamed as follows:

    • EntityPredicate -> FilterPredicate
    • EntityPredicateExpression -> FilterPredicateExpression
    • EntityPredicatePrimitive -> FilterPredicatePrimitive
    • entityPredicateToFilterFunction -> filterPredicateToFilterFunction
    • EntityPredicateValue -> FilterPredicateValue
  • ac9bead: Added createTestEntityPage test utility for testing entity cards and content extensions in the new frontend system. This utility creates a test page extension that provides EntityProvider context and accepts entity extensions through input redirects:

    import { renderTestApp } from '@backstage/frontend-test-utils';
    import { createTestEntityPage } from '@backstage/plugin-catalog-react/testUtils';

    renderTestApp({
    extensions: [createTestEntityPage({ entity: myEntity }), myEntityCard],
    });

Patch Changes

  • 09a6aad: The catalogApiMock test utility now returns a MockWithApiFactory, allowing it to be passed directly to test utilities like renderTestApp and TestApiProvider without needing the [catalogApiRef, catalogApiMock()] tuple.
  • 88dbd5e: fixed bug in UserListPicker by getting the kindParamater from the filters rather than from the queryParameters
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/ui@0.12.0-next.2
    • @backstage/frontend-test-utils@0.5.0-next.2
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/integration-react@1.2.15-next.2
    • @backstage/core-compat-api@0.5.8-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1
    • @backstage/version-bridge@1.0.12-next.0
    • @backstage/filter-predicates@0.1.0-next.0

@backstage/plugin-user-settings@0.9.0-next.2

Minor Changes

  • 104ca74: User-settings will now use DataLoader to batch consecutive calls into one API call to improve performance

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/core-app-api@1.19.5-next.1
    • @backstage/plugin-user-settings-common@0.1.0-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-signals-react@0.0.19-next.1
    • @backstage/theme@0.7.2-next.1

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

Minor Changes

  • 104ca74: User-settings will now use DataLoader to batch consecutive calls into one API call to improve performance

Patch Changes

  • 8148621: Moved @backstage/backend-defaults from dependencies to devDependencies.
  • Updated dependencies
    • @backstage/plugin-user-settings-common@0.1.0-next.0
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-auth-node@0.6.13-next.1

@backstage/plugin-user-settings-common@0.1.0-next.0

Minor Changes

  • 104ca74: User-settings will now use DataLoader to batch consecutive calls into one API call to improve performance

@backstage/app-defaults@1.7.5-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/core-app-api@1.19.5-next.1
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1
    • @backstage/theme@0.7.2-next.1

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

Patch Changes

  • 6bb2f21: Fixed memory leak by properly cleaning up process event listeners on backend shutdown.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.1

@backstage/catalog-client@1.12.2-next.0

Patch Changes

  • 9cf6762: Improved the InMemoryCatalogClient test utility to support ordering, pagination, full-text search, and field projection for entity query methods. Also fixed getEntityFacets to correctly handle multi-valued fields.

@backstage/cli@0.35.4-next.2

Patch Changes

  • 20131c5: Added support for CSS exports in package builds. When a package declares a CSS file in its exports field (e.g., "./styles.css": "./src/styles.css"), the CLI will automatically bundle it during backstage-cli package build, resolving any @import statements. The export path is rewritten from src/ to dist/ at publish time.

    Fixed backstage-cli repo fix to not add typesVersions entries for non-script exports like CSS files.

  • 6ce4a13: Removed /alpha from scaffolderActionsExtensionPoint import

  • 73351c2: Updated dependency webpack to ~5.104.0.

  • Updated dependencies

    • @backstage/integration@1.20.0-next.2
    • @backstage/cli-node@0.2.18-next.1
    • @backstage/config-loader@1.10.8-next.0

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

Patch Changes

  • 5a71e7a: Fixed memory leak caused by duplicate AppThemeSelector instances and missing cleanup in AppThemeSelector and AppLanguageSelector. Added dispose() method to both selectors for proper resource cleanup.
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/version-bridge@1.0.12-next.0

@backstage/core-compat-api@0.5.8-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/version-bridge@1.0.12-next.0
    • @backstage/plugin-app-react@0.1.1-next.0

@backstage/core-components@0.18.7-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/version-bridge@1.0.12-next.0
    • @backstage/theme@0.7.2-next.1

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

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/version-bridge@1.0.12-next.0

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

Patch Changes

  • Bumped create-app version.

@backstage/dev-utils@1.1.20-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/ui@0.12.0-next.2
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/core-app-api@1.19.5-next.1
    • @backstage/integration-react@1.2.15-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/app-defaults@1.7.5-next.2
    • @backstage/theme@0.7.2-next.1

@backstage/e2e-test-utils@0.1.2-next.1

Patch Changes

  • b96c20e: Added optional channel option to generateProjects() to allow customizing the Playwright browser channel for testing against different browsers variants. When not provided, the function defaults to 'chrome' to maintain backward compatibility.

    Example usage:

    import { generateProjects } from '@backstage/e2e-test-utils';

    export default defineConfig({
    projects: generateProjects({ channel: 'msedge' }),
    });

@backstage/frontend-app-api@0.15.0-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/core-app-api@1.19.5-next.1
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/frontend-defaults@0.4.0-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/version-bridge@1.0.12-next.0

@backstage/frontend-defaults@0.4.0-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/frontend-app-api@0.15.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/plugin-app@0.4.0-next.2

@backstage/frontend-dynamic-feature-loader@0.1.9-next.1

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2

@backstage/frontend-plugin-api@0.14.0-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/version-bridge@1.0.12-next.0

@backstage/integration@1.20.0-next.2

Patch Changes

  • cc6206e: Added support for {org}.visualstudio.com domains used by Azure DevOps

@backstage/integration-react@1.2.15-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/repo-tools@0.16.4-next.2

Patch Changes

  • be7ebad: Updated package-docs exclude list to reflect renamed example app packages.
  • df59ee6: The type-deps command now follows relative imports and re-exports into declaration chunk files, and detects ambient global types such as the jest namespace.
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/cli-node@0.2.18-next.1
    • @backstage/config-loader@1.10.8-next.0

@techdocs/cli@1.10.5-next.1

Patch Changes

  • 508d127: Updated dependency find-process to ^2.0.0.
  • Updated dependencies
    • @backstage/backend-defaults@0.15.2-next.1
    • @backstage/plugin-techdocs-node@1.14.2-next.1

@backstage/test-utils@1.7.15-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • 68eb322: Added @types/jest as an optional peer dependency, since jest types are exposed in the public API surface.
  • Updated dependencies
    • @backstage/core-app-api@1.19.5-next.1
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1
    • @backstage/theme@0.7.2-next.1

@backstage/theme@0.7.2-next.1

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.

@backstage/version-bridge@1.0.12-next.0

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.

@backstage/plugin-api-docs@0.13.4-next.2

Patch Changes

  • ac9bead: Added @backstage/frontend-test-utils dev dependency.
  • 7feb83b: Adjusted to use the new @backstage/filter-predicates types for predicate expressions.
  • 491a06c: Add the ability to show icons for the tabs on the entity page (new frontend)
  • 4183614: Updated usage of deprecated APIs in the new frontend system.
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/plugin-catalog@1.33.0-next.2
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1

@backstage/plugin-api-docs-module-protoc-gen-doc@0.1.11-next.0

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.

@backstage/plugin-app@0.4.0-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/integration-react@1.2.15-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1
    • @backstage/version-bridge@1.0.12-next.0
    • @backstage/theme@0.7.2-next.1
    • @backstage/plugin-app-react@0.1.1-next.0

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

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/ui@0.12.0-next.2
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/plugin-auth@0.1.5-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/theme@0.7.2-next.1

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

Patch Changes

  • 867c905: Add support for organizational invites in auth0 strategy
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-auth-node@0.6.13-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.27.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-auth-node@0.6.13-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.27.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-auth-node@0.6.13-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.1

@backstage/plugin-auth-react@0.1.24-next.1

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/plugin-catalog-backend@3.4.0-next.2

Patch Changes

  • 08a5813: Fixed O(n²) performance bottleneck in buildEntitySearch traverse() by replacing Array.some() linear scan with a Set for O(1) duplicate path key detection.
  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/plugin-permission-node@0.10.10-next.0

@backstage/plugin-catalog-backend-module-aws@0.4.20-next.2

Patch Changes

  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-defaults@0.15.2-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1

@backstage/plugin-catalog-backend-module-azure@0.3.14-next.2

Patch Changes

  • cc6206e: Added support for {org}.visualstudio.com domains used by Azure DevOps
  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1

@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.8-next.2

Patch Changes

  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-events-node@0.4.19-next.0

@backstage/plugin-catalog-backend-module-bitbucket-server@0.5.8-next.2

Patch Changes

  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-events-node@0.4.19-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1

@backstage/plugin-catalog-backend-module-gerrit@0.3.11-next.2

Patch Changes

  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1

@backstage/plugin-catalog-backend-module-gitea@0.1.9-next.2

Patch Changes

  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1

@backstage/plugin-catalog-backend-module-github@0.12.2-next.2

Patch Changes

  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-events-node@0.4.19-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-catalog-backend-module-github@0.12.2-next.2
    • @backstage/plugin-events-node@0.4.19-next.0

@backstage/plugin-catalog-backend-module-gitlab@0.8.0-next.2

Patch Changes

  • 7e6b5e5: Fixed GitLab search API scope parameter from 'blob' to 'blobs', resolving 400 errors in discovery provider.
  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-defaults@0.15.2-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-events-node@0.4.19-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/plugin-catalog-backend-module-gitlab@0.8.0-next.2
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-events-node@0.4.19-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/plugin-catalog-backend@3.4.0-next.2
    • @backstage/backend-defaults@0.15.2-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-events-node@0.4.19-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1

@backstage/plugin-catalog-backend-module-msgraph@0.9.0-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1

@backstage/plugin-catalog-backend-module-openapi@0.2.19-next.2

Patch Changes

  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-auth-node@0.6.13-next.1

@backstage/plugin-catalog-graph@0.5.7-next.2

Patch Changes

  • ac9bead: Added @backstage/frontend-test-utils dev dependency.
  • 7feb83b: Adjusted to use the new @backstage/filter-predicates types for predicate expressions.
  • 4183614: Updated usage of deprecated APIs in the new frontend system.
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/plugin-catalog-import@0.13.10-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/integration-react@1.2.15-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1

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

Patch Changes

  • 42abfb1: Updated catalogServiceMock.mock to use createServiceMock from @backstage/backend-test-utils, replacing the internal copy of simpleMock. Added @backstage/backend-test-utils as an optional peer dependency.
  • Updated dependencies
    • @backstage/backend-test-utils@1.11.0-next.1
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-permission-node@0.10.10-next.0

@backstage/plugin-catalog-unprocessed-entities@0.2.26-next.1

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-devtools-react@0.1.1-next.1
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-compat-api@0.5.8-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/plugin-config-schema@0.1.77-next.1

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/plugin-devtools@0.1.36-next.1

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-devtools-react@0.1.1-next.1
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-compat-api@0.5.8-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1

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

Patch Changes

  • 8148621: Moved @backstage/backend-defaults from dependencies to devDependencies.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/config-loader@1.10.8-next.0
    • @backstage/plugin-permission-node@0.10.10-next.0

@backstage/plugin-devtools-react@0.1.1-next.1

Patch Changes

  • 9fbb270: Updated dependency @testing-library/react to ^16.0.0.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/plugin-home@0.9.2-next.2

Patch Changes

  • 90956a6: Support new frontend system in the homepage plugin
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/core-app-api@1.19.5-next.1
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/plugin-home-react@0.1.35-next.1
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-compat-api@0.5.8-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/theme@0.7.2-next.1

@backstage/plugin-home-react@0.1.35-next.1

Patch Changes

  • 90956a6: Support new frontend system in the homepage plugin
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-compat-api@0.5.8-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/plugin-kubernetes@0.12.16-next.2

Patch Changes

  • 7feb83b: Adjusted to use the new @backstage/filter-predicates types for predicate expressions.
  • 491a06c: Add the ability to show icons for the tabs on the entity page (new frontend)
  • 4183614: Updated usage of deprecated APIs in the new frontend system.
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/plugin-kubernetes-react@0.5.16-next.2
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1

@backstage/plugin-kubernetes-backend@0.21.1-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-kubernetes-node@0.4.1-next.1
    • @backstage/plugin-permission-node@0.10.10-next.0

@backstage/plugin-kubernetes-cluster@0.0.34-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/plugin-kubernetes-react@0.5.16-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1

@backstage/plugin-kubernetes-react@0.5.16-next.2

Patch Changes

  • d56542c: Updated dependency @xterm/addon-attach to ^0.12.0. Updated dependency @xterm/addon-fit to ^0.11.0.
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1

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

Patch Changes

  • 8148621: Moved @backstage/backend-defaults from dependencies to devDependencies.
  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.1

@backstage/plugin-mui-to-bui@0.2.4-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/ui@0.12.0-next.2
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/theme@0.7.2-next.1

@backstage/plugin-notifications@0.5.14-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-signals-react@0.0.19-next.1
    • @backstage/theme@0.7.2-next.1

@backstage/plugin-notifications-backend@0.6.2-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-notifications-node@0.2.23-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-notifications-node@0.2.23-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-notifications-node@0.2.23-next.1

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

Patch Changes

  • Updated dependencies
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.1

@backstage/plugin-org@0.6.49-next.2

Patch Changes

  • ac9bead: Added @backstage/frontend-test-utils dev dependency.
  • 7feb83b: Adjusted to use the new @backstage/filter-predicates types for predicate expressions.
  • 4183614: Updated usage of deprecated APIs in the new frontend system.
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/plugin-org-react@0.1.47-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/plugin-permission-react@0.4.40-next.1

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/plugin-scaffolder@1.35.3-next.2

Patch Changes

  • 7feb83b: Adjusted to use the new @backstage/filter-predicates types for predicate expressions.
  • b9d90a7: Added @backstage/frontend-test-utils as a dev dependency for mock API usage in tests.
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/plugin-scaffolder-react@1.19.7-next.2
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/integration-react@1.2.15-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1
    • @backstage/plugin-techdocs-react@1.3.8-next.1

@backstage/plugin-scaffolder-backend@3.1.3-next.2

Patch Changes

  • 8148621: Moved @backstage/backend-defaults from dependencies to devDependencies.
  • Updated dependencies
    • @backstage/plugin-scaffolder-backend-module-gitlab@0.11.3-next.2
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-auth-node@0.6.13-next.1
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.17-next.1
    • @backstage/plugin-events-node@0.4.19-next.0
    • @backstage/plugin-permission-node@0.10.10-next.0
    • @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.19-next.1
    • @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.3.3-next.1
    • @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.18-next.1
    • @backstage/plugin-scaffolder-backend-module-gerrit@0.2.18-next.1
    • @backstage/plugin-scaffolder-backend-module-gitea@0.2.18-next.1
    • @backstage/plugin-scaffolder-backend-module-github@0.9.6-next.2
    • @backstage/plugin-scaffolder-node@0.12.5-next.1

@backstage/plugin-scaffolder-backend-module-github@0.9.6-next.2

Patch Changes

  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.5-next.1

@backstage/plugin-scaffolder-backend-module-gitlab@0.11.3-next.2

Patch Changes

  • 6b5e7d9: Allow setting optional description on group creation
  • f0f9403: Changed gitlab:group:ensureExists action to use Groups.show API instead of Groups.search for checking if a group path exists. This is more efficient as it directly retrieves the group by path rather than searching and filtering results.
  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.5-next.1

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

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/backend-test-utils@1.11.0-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-scaffolder-node@0.12.5-next.1

@backstage/plugin-scaffolder-react@1.19.7-next.2

Patch Changes

  • b9d90a7: Added @backstage/frontend-test-utils as a dev dependency for mock API usage in tests.
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1
    • @backstage/version-bridge@1.0.12-next.0
    • @backstage/theme@0.7.2-next.1

@backstage/plugin-search@1.6.0-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/version-bridge@1.0.12-next.0
    • @backstage/plugin-search-react@1.10.3-next.2

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

Patch Changes

  • 8148621: Moved @backstage/backend-defaults from dependencies to devDependencies.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-permission-node@0.10.10-next.0
    • @backstage/plugin-search-backend-node@1.4.1-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-search-backend-node@1.4.1-next.0

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

Patch Changes

  • df27350: Updated dependency @backstage-community/plugin-explore-common to ^0.12.0.
  • Updated dependencies
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-search-backend-node@1.4.1-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-search-backend-node@1.4.1-next.0
    • @backstage/plugin-techdocs-node@1.14.2-next.1

@backstage/plugin-search-react@1.10.3-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/version-bridge@1.0.12-next.0
    • @backstage/theme@0.7.2-next.1

@backstage/plugin-signals@0.0.28-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-signals-react@0.0.19-next.1
    • @backstage/theme@0.7.2-next.1

@backstage/plugin-signals-react@0.0.19-next.1

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/core-plugin-api@1.12.3-next.1

@backstage/plugin-techdocs@1.16.3-next.2

Patch Changes

  • 7feb83b: Adjusted to use the new @backstage/filter-predicates types for predicate expressions.
  • 491a06c: Add the ability to show icons for the tabs on the entity page (new frontend)
  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/integration-react@1.2.15-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-techdocs-react@1.3.8-next.1
    • @backstage/plugin-search-react@1.10.3-next.2
    • @backstage/plugin-auth-react@0.1.24-next.1
    • @backstage/theme@0.7.2-next.1

@backstage/plugin-techdocs-addons-test-utils@2.0.2-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/plugin-catalog@1.33.0-next.2
    • @backstage/core-app-api@1.19.5-next.1
    • @backstage/plugin-techdocs@1.16.3-next.2
    • @backstage/integration-react@1.2.15-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-techdocs-react@1.3.8-next.1
    • @backstage/plugin-search-react@1.10.3-next.2
    • @backstage/test-utils@1.7.15-next.2

@backstage/plugin-techdocs-backend@2.1.5-next.2

Patch Changes

  • 8148621: Moved @backstage/backend-defaults from dependencies to devDependencies.
  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/plugin-catalog-node@2.0.0-next.1
    • @backstage/catalog-client@1.12.2-next.0
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-techdocs-node@1.14.2-next.1

@backstage/plugin-techdocs-module-addons-contrib@1.1.33-next.2

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/integration@1.20.0-next.2
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/integration-react@1.2.15-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-techdocs-react@1.3.8-next.1

@backstage/plugin-techdocs-react@1.3.8-next.1

Patch Changes

  • a7e0d50: Prepare for React Router v7 migration by updating to v6.30.2 across all NFS packages and enabling v7 future flags. Convert routes from splat paths to parent/child structure with Outlet components.
  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/version-bridge@1.0.12-next.0

example-app@0.0.32-next.2

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.12.0-next.2
    • @backstage/plugin-api-docs@0.13.4-next.2
    • @backstage/plugin-catalog-graph@0.5.7-next.2
    • @backstage/plugin-org@0.6.49-next.2
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/cli@0.35.4-next.2
    • @backstage/plugin-catalog@1.33.0-next.2
    • @backstage/core-app-api@1.19.5-next.1
    • @backstage/plugin-kubernetes@0.12.16-next.2
    • @backstage/plugin-scaffolder@1.35.3-next.2
    • @backstage/plugin-techdocs@1.16.3-next.2
    • @backstage/plugin-scaffolder-react@1.19.7-next.2
    • @backstage/plugin-user-settings@0.9.0-next.2
    • @backstage/plugin-home-react@0.1.35-next.1
    • @backstage/plugin-home@0.9.2-next.2
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.33-next.2
    • @backstage/plugin-catalog-unprocessed-entities@0.2.26-next.1
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/frontend-defaults@0.4.0-next.2
    • @backstage/integration-react@1.2.15-next.2
    • @backstage/plugin-kubernetes-cluster@0.0.34-next.2
    • @backstage/frontend-app-api@0.15.0-next.2
    • @backstage/core-compat-api@0.5.8-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1
    • @backstage/plugin-app-visualizer@0.1.28-next.1
    • @backstage/plugin-catalog-import@0.13.10-next.2
    • @backstage/plugin-techdocs-react@1.3.8-next.1
    • @backstage/app-defaults@1.7.5-next.2
    • @backstage/plugin-notifications@0.5.14-next.2
    • @backstage/plugin-search-react@1.10.3-next.2
    • @backstage/plugin-auth-react@0.1.24-next.1
    • @backstage/plugin-devtools@0.1.36-next.1
    • @backstage/plugin-signals@0.0.28-next.2
    • @backstage/theme@0.7.2-next.1
    • @backstage/plugin-search@1.6.0-next.2
    • @backstage/plugin-auth@0.1.5-next.2
    • @backstage/plugin-app@0.4.0-next.2
    • @backstage/plugin-app-react@0.1.1-next.0

example-app-legacy@0.2.118-next.2

Patch Changes

  • Updated dependencies
    • @backstage/ui@0.12.0-next.2
    • @backstage/plugin-api-docs@0.13.4-next.2
    • @backstage/plugin-catalog-graph@0.5.7-next.2
    • @backstage/plugin-org@0.6.49-next.2
    • @backstage/plugin-catalog-react@2.0.0-next.2
    • @backstage/cli@0.35.4-next.2
    • @backstage/plugin-catalog@1.33.0-next.2
    • @backstage/core-app-api@1.19.5-next.1
    • @backstage/plugin-kubernetes@0.12.16-next.2
    • @backstage/plugin-scaffolder@1.35.3-next.2
    • @backstage/plugin-techdocs@1.16.3-next.2
    • @backstage/plugin-scaffolder-react@1.19.7-next.2
    • @backstage/plugin-user-settings@0.9.0-next.2
    • @backstage/plugin-home-react@0.1.35-next.1
    • @backstage/plugin-home@0.9.2-next.2
    • @backstage/plugin-techdocs-module-addons-contrib@1.1.33-next.2
    • @backstage/plugin-catalog-unprocessed-entities@0.2.26-next.1
    • @backstage/integration-react@1.2.15-next.2
    • @backstage/plugin-kubernetes-cluster@0.0.34-next.2
    • @backstage/frontend-app-api@0.15.0-next.2
    • @backstage/core-components@0.18.7-next.2
    • @backstage/core-plugin-api@1.12.3-next.1
    • @backstage/plugin-permission-react@0.4.40-next.1
    • @backstage/plugin-catalog-import@0.13.10-next.2
    • @backstage/plugin-techdocs-react@1.3.8-next.1
    • @backstage/app-defaults@1.7.5-next.2
    • @backstage/plugin-notifications@0.5.14-next.2
    • @backstage/plugin-search-react@1.10.3-next.2
    • @backstage/plugin-auth-react@0.1.24-next.1
    • @backstage/plugin-mui-to-bui@0.2.4-next.2
    • @backstage/plugin-devtools@0.1.36-next.1
    • @backstage/plugin-signals@0.0.28-next.2
    • @backstage/theme@0.7.2-next.1
    • @backstage/plugin-search@1.6.0-next.2

example-backend@0.0.47-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.27.0-next.1
    • @backstage/plugin-devtools-backend@0.5.14-next.1
    • @backstage/plugin-mcp-actions-backend@0.1.9-next.1
    • @backstage/plugin-scaffolder-backend@3.1.3-next.2
    • @backstage/plugin-search-backend@2.0.12-next.1
    • @backstage/plugin-techdocs-backend@2.1.5-next.2
    • @backstage/plugin-search-backend-module-explore@0.3.11-next.1
    • @backstage/plugin-catalog-backend@3.4.0-next.2
    • @backstage/backend-defaults@0.15.2-next.1
    • @backstage/backend-plugin-api@1.7.0-next.1
    • @backstage/plugin-app-backend@0.5.11-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.5.0-next.0
    • @backstage/plugin-auth-backend-module-guest-provider@0.2.16-next.0
    • @backstage/plugin-auth-backend-module-openshift-provider@0.1.4-next.0
    • @backstage/plugin-auth-node@0.6.13-next.1
    • @backstage/plugin-catalog-backend-module-openapi@0.2.19-next.2
    • @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.17-next.1
    • @backstage/plugin-events-backend@0.5.11-next.0
    • @backstage/plugin-events-backend-module-google-pubsub@0.1.8-next.0
    • @backstage/plugin-kubernetes-backend@0.21.1-next.2
    • @backstage/plugin-notifications-backend@0.6.2-next.2
    • @backstage/plugin-permission-backend@0.7.9-next.0
    • @backstage/plugin-permission-backend-module-allow-all-policy@0.2.16-next.0
    • @backstage/plugin-permission-node@0.10.10-next.0
    • @backstage/plugin-proxy-backend@0.6.10-next.0
    • @backstage/plugin-scaffolder-backend-module-github@0.9.6-next.2
    • @backstage/plugin-search-backend-module-catalog@0.3.12-next.1
    • @backstage/plugin-search-backend-module-elasticsearch@1.8.0-next.1
    • @backstage/plugin-search-backend-module-techdocs@0.4.11-next.1
    • @backstage/plugin-search-backend-node@1.4.1-next.0
    • @backstage/plugin-signals-backend@0.3.12-next.0
    • @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.11-next.1
    • @backstage/plugin-catalog-backend-module-unprocessed@0.6.8-next.1

@internal/frontend@0.0.17-next.1

Patch Changes

  • Updated dependencies
    • @backstage/frontend-plugin-api@0.14.0-next.2
    • @backstage/version-bridge@1.0.12-next.0