Release v1.42.0-next.2
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.42.0-next.2
@backstage/cli@0.34.0-next.1
Minor Changes
- 38b4243: Added plugin and module templates for the new frontend system. These templates are not included by default, but can be included by adding
@backstage/cli/templates/new-frontend-pluginand@backstage/cli/templates/new-frontend-plugin-moduleas custom templates.
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.7.5
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.3
- @backstage/config-loader@1.10.2
- @backstage/errors@1.2.7
- @backstage/eslint-plugin@0.1.11
- @backstage/integration@1.17.1
- @backstage/release-manifests@0.0.13
- @backstage/types@1.2.1
@backstage/core-compat-api@0.5.0-next.2
Minor Changes
- e4ddf22: BREAKING: The
defaultPathoverride ofconvertLegacyPageExtensionhas been renamed topath, in order to align with the same update that was made to thePageBlueprint.
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- 5d31d66: Updated the usage of the
RouterBlueprintandAppRootWrapperBlueprintto use the lowercasecomponentparameter - Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-plugin-api@1.10.9
- @backstage/version-bridge@1.0.11
@backstage/frontend-app-api@0.12.0-next.2
Minor Changes
- df7bd3b: BREAKING: Removed the deprecated
FrontendFeaturetype, import it from@backstage/frontend-plugin-apiinstead.
Patch Changes
-
d9e00e3: Add support for a new
aliasForoption forcreateRouteRef. This allows for the creation of a new route ref that acts as an alias for an existing route ref that is installed in the app. This is particularly useful when creating modules that override existing plugin pages, without referring to the existing plugin. For example:export default createFrontendModule({
pluginId: 'catalog',
extensions: [
PageBlueprint.make({
params: {
defaultPath: '/catalog',
routeRef: createRouteRef({ aliasFor: 'catalog.catalogIndex' }),
loader: () =>
import('./CustomCatalogIndexPage').then(m => (
<m.CustomCatalogIndexPage />
)),
},
}),
],
}); -
3d2499f: Moved
createSpecializedAppoptions to a newCreateSpecializedAppOptionstype. -
Updated dependencies
- @backstage/frontend-defaults@0.3.0-next.2
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/config@1.3.3
- @backstage/core-app-api@1.18.0
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/frontend-defaults@0.3.0-next.2
Minor Changes
- 76832a9: BREAKING: Removed the deprecated
CreateAppFeatureLoaderand support for it in other APIs. Switch existing usage to use the newercreateFrontendFeatureLoaderfrom@backstage/frontend-plugin-apiinstead.
Patch Changes
- 22de964: Deprecated
createPublicSignInApp, which has been replaced by the newappModulePublicSignInfrom@backstage/plugin-app/alphainstead. - e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/frontend-app-api@0.12.0-next.2
- @backstage/plugin-app@0.2.0-next.1
- @backstage/config@1.3.3
- @backstage/errors@1.2.7
@backstage/frontend-plugin-api@0.11.0-next.1
Minor Changes
-
c5f88b5: BREAKING: Remove deprecated
sourceproperty from theAppNodeSpectype, useAppNodeSpec.plugininstead. -
e4ddf22: BREAKING: The
defaultPathparam ofPageBlueprinthas been renamed topath. This change does not affect the compatibility of extensions created with older versions of this blueprint. -
37f2989: BREAKING: Removed the
routableproperty fromExtensionBoundary. This property was never needed in practice and is instead inferred from whether or not the extension outputs a route reference. It can be safely removed. -
3243fa6: BREAKING: Removed the ability to define a default extension
namein blueprints. This option had no practical purpose as blueprints already use thekindto identity the source of the extension. -
a082429: BREAKING: The separate
RouteResolutionApiResolveOptionstype has been removed. -
5d31d66: BREAKING: In an attempt to align some of the API's around providing components to
Blueprints, we've renamed the parameters for both theRouterBlueprintandAppRootWrapperBlueprintfromComponenttocomponent.// old
RouterBlueprint.make({
params: {
Component: ({ children }) => <div>{children}</div>,
},
});
// new
RouterBlueprint.make({
params: {
component: ({ children }) => <div>{children}</div>,
},
});// old
AppRootWrapperBlueprint.make({
params: {
Component: ({ children }) => <div>{children}</div>,
},
});
// new
AppRootWrapperBlueprint.make({
params: {
component: ({ children }) => <div>{children}</div>,
},
});As part of this change, the type for
componenthas also changed fromComponentType<PropsWithChildren<{}>>to(props: { children: ReactNode }) => JSX.Element | nullwhich is not breaking, just a little more reflective of the actual expected component. -
45ead4a: BREAKING: The
AnyRoutesandAnyExternalRoutestypes have been removed and their usage has been inlined instead.Existing usage can be replaced according to their previous definitions:
type AnyRoutes = { [name in string]: RouteRef | SubRouteRef };
type AnyExternalRoutes = { [name in string]: ExternalRouteRef }; -
121899a: BREAKING: The
elementparam forAppRootElementBlueprintno longer accepts a component. If you are currently passing a component such aselement: () => <MyComponent />orelement: MyComponent, simply switch toelement: <MyComponent />. -
a321f3b: BREAKING: The
CommonAnalyticsContexthas been removed, and inlined intoAnalyticsContextValueinstead.
Patch Changes
-
d9e00e3: Add support for a new
aliasForoption forcreateRouteRef. This allows for the creation of a new route ref that acts as an alias for an existing route ref that is installed in the app. This is particularly useful when creating modules that override existing plugin pages, without referring to the existing plugin. For example:export default createFrontendModule({
pluginId: 'catalog',
extensions: [
PageBlueprint.make({
params: {
defaultPath: '/catalog',
routeRef: createRouteRef({ aliasFor: 'catalog.catalogIndex' }),
loader: () =>
import('./CustomCatalogIndexPage').then(m => (
<m.CustomCatalogIndexPage />
)),
},
}),
],
}); -
93b5e38: Plugins should now use the new
AnalyticsImplementationBlueprintto define and provide concrete analytics implementations. For example:import { AnalyticsImplementationBlueprint } from '@backstage/frontend-plugin-api';
const AcmeAnalytics = AnalyticsImplementationBlueprint.make({
name: 'acme-analytics',
params: define =>
define({
deps: { config: configApiRef },
factory: ({ config }) => AcmeAnalyticsImpl.fromConfig(config),
}),
}); -
948de17: Tweaked the return types from
createExtensionandcreateExtensionBlueprintto avoid the forwarding ofConfigurableExtensionDataRefinto exported types. -
147482b: Updated the recommended naming of the blueprint param callback from
definetodefineParams, making the syntaxdefineParams => defineParams(...). -
3c3c882: Added added defaults for all type parameters of
ExtensionDataRefand deprecatedAnyExtensionDataRef, as it is now redundant. -
Updated dependencies
- @backstage/core-components@0.17.5-next.1
- @backstage/core-plugin-api@1.10.9
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/plugin-app@0.2.0-next.1
Minor Changes
- 121899a: BREAKING: The
app-root-elementextension now only acceptsJSX.Elementin itselementparam, meaning overrides need to be updated.
Patch Changes
- a08f95f: Added a new module for implementing public sign-in apps, exported as
appModulePublicSignInvia the/alphasub-path export. This replaces thecreatePublicSignInAppexport from@backstage/frontend-defaults, which is now deprecated. - 5d31d66: Updated the usage of the
RouterBlueprintandAppRootWrapperBlueprintto use the lowercasecomponentparameter - 93b5e38: The default implementation of the Analytics API now collects and instantiates analytics implementations exposed via
AnalyticsImplementationBlueprintextensions. If no such extensions are discovered, the API continues to do nothing with analytics events fired within Backstage. If multiple such extensions are discovered, every discovered implementation automatically receives analytics events. - Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-components@0.17.5-next.1
- @backstage/core-plugin-api@1.10.9
- @backstage/integration-react@1.2.9
- @backstage/theme@0.6.8-next.0
- @backstage/types@1.2.1
- @backstage/plugin-permission-react@0.4.36
@backstage/plugin-catalog-react@1.20.0-next.2
Minor Changes
- e4ddf22: BREAKING ALPHA: The
defaultPath,defaultTitle, anddefaultGroupparams ofPageBlueprinthas been renamed topath,title, andgroup. TheconvertLegacyEntityContentExtensionutility has also received the same change. This change does not affect the compatibility of extensions created with older versions of this blueprint.
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/frontend-test-utils@0.3.5-next.2
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-client@1.11.0-next.0
- @backstage/catalog-model@1.7.5
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
- @backstage/integration-react@1.2.9
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-catalog-common@1.1.5
- @backstage/plugin-permission-common@0.9.1
- @backstage/plugin-permission-react@0.4.36
@backstage/core-components@0.17.5-next.1
Patch Changes
- 5563605: Added
FavoriteToggleProps. - Updated dependencies
- @backstage/config@1.3.3
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
- @backstage/theme@0.6.8-next.0
- @backstage/version-bridge@1.0.11
@backstage/create-app@0.7.2-next.2
Patch Changes
- Bumped create-app version.
- Updated dependencies
- @backstage/cli-common@0.1.15
@backstage/frontend-test-utils@0.3.5-next.2
Patch Changes
- df7bd3b: Updated import of the
FrontendFeaturetype. - 5d31d66: Updated the usage of the
RouterBlueprintandAppRootWrapperBlueprintto use the lowercasecomponentparameter - Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/frontend-app-api@0.12.0-next.2
- @backstage/plugin-app@0.2.0-next.1
- @backstage/config@1.3.3
- @backstage/test-utils@1.7.11-next.0
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/ui@0.7.0-next.2
Patch Changes
- d4e603e: Updated Menu component in Backstage UI to use useId() from React Aria instead of React to support React 17.
@backstage/plugin-api-docs@0.12.10-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-catalog@1.31.2-next.2
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-model@1.7.5
- @backstage/core-plugin-api@1.10.9
- @backstage/plugin-catalog-common@1.1.5
- @backstage/plugin-permission-react@0.4.36
@backstage/plugin-app-visualizer@0.1.22-next.1
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-components@0.17.5-next.1
- @backstage/core-plugin-api@1.10.9
@backstage/plugin-catalog@1.31.2-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-search-react@1.9.3-next.1
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-client@1.11.0-next.0
- @backstage/catalog-model@1.7.5
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
- @backstage/integration-react@1.2.9
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-catalog-common@1.1.5
- @backstage/plugin-permission-react@0.4.36
- @backstage/plugin-scaffolder-common@1.7.0-next.0
- @backstage/plugin-search-common@1.2.19
- @backstage/plugin-techdocs-common@0.1.1
- @backstage/plugin-techdocs-react@1.3.2-next.0
@backstage/plugin-catalog-graph@0.4.22-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-client@1.11.0-next.0
- @backstage/catalog-model@1.7.5
- @backstage/core-plugin-api@1.10.9
- @backstage/types@1.2.1
@backstage/plugin-catalog-import@0.13.4-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-client@1.11.0-next.0
- @backstage/catalog-model@1.7.5
- @backstage/config@1.3.3
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
- @backstage/integration@1.17.1
- @backstage/integration-react@1.2.9
- @backstage/plugin-catalog-common@1.1.5
@backstage/plugin-catalog-unprocessed-entities@0.2.20-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-model@1.7.5
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
@backstage/plugin-devtools@0.1.30-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
- @backstage/plugin-devtools-common@0.1.17
- @backstage/plugin-permission-react@0.4.36
@backstage/plugin-home@0.8.11-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- 121899a: BREAKING ALPHA: The
app-root-elementextension now only acceptsJSX.Elementin itselementparam, meaning overrides need to be updated. - Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-client@1.11.0-next.0
- @backstage/catalog-model@1.7.5
- @backstage/config@1.3.3
- @backstage/core-app-api@1.18.0
- @backstage/core-plugin-api@1.10.9
- @backstage/theme@0.6.8-next.0
- @backstage/plugin-home-react@0.1.29-next.0
@backstage/plugin-kubernetes@0.12.10-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-model@1.7.5
- @backstage/core-plugin-api@1.10.9
- @backstage/plugin-kubernetes-common@0.9.6
- @backstage/plugin-kubernetes-react@0.5.10-next.0
- @backstage/plugin-permission-react@0.4.36
@backstage/plugin-notifications@0.5.8-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
- @backstage/theme@0.6.8-next.0
- @backstage/types@1.2.1
- @backstage/plugin-notifications-common@0.0.10
- @backstage/plugin-signals-react@0.0.15
@backstage/plugin-org@0.6.42-next.2
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-model@1.7.5
- @backstage/core-plugin-api@1.10.9
- @backstage/plugin-catalog-common@1.1.5
@backstage/plugin-scaffolder@1.34.0-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-client@1.11.0-next.0
- @backstage/catalog-model@1.7.5
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
- @backstage/integration@1.17.1
- @backstage/integration-react@1.2.9
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.5
- @backstage/plugin-permission-react@0.4.36
- @backstage/plugin-scaffolder-common@1.7.0-next.0
- @backstage/plugin-scaffolder-react@1.19.0-next.1
@backstage/plugin-search@1.4.29-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-search-react@1.9.3-next.1
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-search-common@1.2.19
@backstage/plugin-search-backend-module-catalog@0.3.7-next.1
Patch Changes
- d9bda0f: Allow filter to be an array in config schema
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2-next.0
- @backstage/catalog-client@1.11.0-next.0
- @backstage/catalog-model@1.7.5
- @backstage/config@1.3.3
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-common@1.1.5
- @backstage/plugin-catalog-node@1.18.0-next.0
- @backstage/plugin-permission-common@0.9.1
- @backstage/plugin-search-backend-node@1.3.14-next.0
- @backstage/plugin-search-common@1.2.19
@backstage/plugin-search-react@1.9.3-next.1
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-components@0.17.5-next.1
- @backstage/core-plugin-api@1.10.9
- @backstage/theme@0.6.8-next.0
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-search-common@1.2.19
@backstage/plugin-signals@0.0.22-next.2
Patch Changes
- 121899a: BREAKING ALPHA: The
app-root-elementextension now only acceptsJSX.Elementin itselementparam, meaning overrides need to be updated. - Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/core-plugin-api@1.10.9
- @backstage/theme@0.6.8-next.0
- @backstage/types@1.2.1
- @backstage/plugin-signals-react@0.0.15
@backstage/plugin-techdocs@1.14.0-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-search-react@1.9.3-next.1
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-client@1.11.0-next.0
- @backstage/catalog-model@1.7.5
- @backstage/config@1.3.3
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
- @backstage/integration@1.17.1
- @backstage/integration-react@1.2.9
- @backstage/theme@0.6.8-next.0
- @backstage/plugin-auth-react@0.1.18-next.0
- @backstage/plugin-search-common@1.2.19
- @backstage/plugin-techdocs-common@0.1.1
- @backstage/plugin-techdocs-react@1.3.2-next.0
@backstage/plugin-techdocs-backend@2.0.5-next.1
Patch Changes
- 484e500: Updated CachedEntityLoader to use BackstageCredentials instead of raw tokens for cache key generation. It now uses principal-based identification (user entity ref for users, subject for services) instead of token-based keys, providing more consistent caching behavior.
- Updated dependencies
- @backstage/backend-defaults@0.11.2-next.0
- @backstage/backend-plugin-api@1.4.2-next.0
- @backstage/catalog-client@1.11.0-next.0
- @backstage/catalog-model@1.7.5
- @backstage/config@1.3.3
- @backstage/errors@1.2.7
- @backstage/integration@1.17.1
- @backstage/plugin-catalog-common@1.1.5
- @backstage/plugin-catalog-node@1.18.0-next.0
- @backstage/plugin-permission-common@0.9.1
- @backstage/plugin-search-backend-module-techdocs@0.4.5-next.0
- @backstage/plugin-techdocs-common@0.1.1
- @backstage/plugin-techdocs-node@1.13.6-next.0
@backstage/plugin-user-settings@0.8.25-next.2
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/catalog-model@1.7.5
- @backstage/core-app-api@1.18.0
- @backstage/core-plugin-api@1.10.9
- @backstage/errors@1.2.7
- @backstage/theme@0.6.8-next.0
- @backstage/types@1.2.1
- @backstage/plugin-signals-react@0.0.15
- @backstage/plugin-user-settings-common@0.0.1
example-app@0.2.112-next.2
Patch Changes
- Updated dependencies
- @backstage/frontend-app-api@0.12.0-next.2
- @backstage/cli@0.34.0-next.1
- @backstage/plugin-catalog-unprocessed-entities@0.2.20-next.2
- @backstage/plugin-catalog-import@0.13.4-next.2
- @backstage/plugin-catalog-graph@0.4.22-next.2
- @backstage/plugin-notifications@0.5.8-next.2
- @backstage/plugin-user-settings@0.8.25-next.2
- @backstage/plugin-search-react@1.9.3-next.1
- @backstage/plugin-kubernetes@0.12.10-next.2
- @backstage/plugin-scaffolder@1.34.0-next.2
- @backstage/plugin-api-docs@0.12.10-next.2
- @backstage/plugin-devtools@0.1.30-next.2
- @backstage/plugin-techdocs@1.14.0-next.2
- @backstage/plugin-catalog@1.31.2-next.2
- @backstage/plugin-search@1.4.29-next.2
- @backstage/plugin-home@0.8.11-next.2
- @backstage/ui@0.7.0-next.2
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/plugin-signals@0.0.22-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/app-defaults@1.6.5-next.0
- @backstage/catalog-model@1.7.5
- @backstage/config@1.3.3
- @backstage/core-app-api@1.18.0
- @backstage/core-plugin-api@1.10.9
- @backstage/integration-react@1.2.9
- @backstage/theme@0.6.8-next.0
- @backstage/plugin-auth-react@0.1.18-next.0
- @backstage/plugin-catalog-common@1.1.5
- @backstage/plugin-kubernetes-cluster@0.0.28-next.1
- @backstage/plugin-org@0.6.42-next.2
- @backstage/plugin-permission-react@0.4.36
- @backstage/plugin-scaffolder-react@1.19.0-next.1
- @backstage/plugin-search-common@1.2.19
- @backstage/plugin-techdocs-module-addons-contrib@1.1.27-next.0
- @backstage/plugin-techdocs-react@1.3.2-next.0
example-app-next@0.0.26-next.2
Patch Changes
- Updated dependencies
- @backstage/frontend-defaults@0.3.0-next.2
- @backstage/frontend-plugin-api@0.11.0-next.1
- @backstage/frontend-app-api@0.12.0-next.2
- @backstage/cli@0.34.0-next.1
- @backstage/plugin-catalog-unprocessed-entities@0.2.20-next.2
- @backstage/core-compat-api@0.5.0-next.2
- @backstage/plugin-app-visualizer@0.1.22-next.1
- @backstage/plugin-catalog-import@0.13.4-next.2
- @backstage/plugin-catalog-graph@0.4.22-next.2
- @backstage/plugin-notifications@0.5.8-next.2
- @backstage/plugin-user-settings@0.8.25-next.2
- @backstage/plugin-search-react@1.9.3-next.1
- @backstage/plugin-kubernetes@0.12.10-next.2
- @backstage/plugin-scaffolder@1.34.0-next.2
- @backstage/plugin-api-docs@0.12.10-next.2
- @backstage/plugin-techdocs@1.14.0-next.2
- @backstage/plugin-catalog@1.31.2-next.2
- @backstage/plugin-search@1.4.29-next.2
- @backstage/plugin-home@0.8.11-next.2
- @backstage/plugin-app@0.2.0-next.1
- @backstage/ui@0.7.0-next.2
- @backstage/plugin-catalog-react@1.20.0-next.2
- @backstage/plugin-signals@0.0.22-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/app-defaults@1.6.5-next.0
- @backstage/catalog-model@1.7.5
- @backstage/config@1.3.3
- @backstage/core-app-api@1.18.0
- @backstage/core-plugin-api@1.10.9
- @backstage/integration-react@1.2.9
- @backstage/theme@0.6.8-next.0
- @backstage/plugin-auth-react@0.1.18-next.0
- @backstage/plugin-catalog-common@1.1.5
- @backstage/plugin-kubernetes-cluster@0.0.28-next.1
- @backstage/plugin-org@0.6.42-next.2
- @backstage/plugin-permission-react@0.4.36
- @backstage/plugin-scaffolder-react@1.19.0-next.1
- @backstage/plugin-search-common@1.2.19
- @backstage/plugin-techdocs-module-addons-contrib@1.1.27-next.0
- @backstage/plugin-techdocs-react@1.3.2-next.0
techdocs-cli-embedded-app@0.2.111-next.2
Patch Changes
- Updated dependencies
- @backstage/cli@0.34.0-next.1
- @backstage/plugin-techdocs@1.14.0-next.2
- @backstage/plugin-catalog@1.31.2-next.2
- @backstage/core-components@0.17.5-next.1
- @backstage/app-defaults@1.6.5-next.0
- @backstage/catalog-model@1.7.5
- @backstage/config@1.3.3
- @backstage/core-app-api@1.18.0
- @backstage/core-plugin-api@1.10.9
- @backstage/integration-react@1.2.9
- @backstage/test-utils@1.7.11-next.0
- @backstage/theme@0.6.8-next.0
- @backstage/plugin-techdocs-react@1.3.2-next.0