Release v1.42.0
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.42.0
@backstage/backend-defaults@0.12.0
Minor Changes
- 133519b: feat: new cache manager
Infinispan Data Grid
Patch Changes
- caee2eb: Fixed WinstonLogger throwing when redactions were null or undefined
- ed74af5: Fixed bug in PackageDiscoveryService where packages with "exports" field caused ERR_PACKAGE_PATH_NOT_EXPORTED error during backend startup.
- 3a7dad9: Updated
better-sqlite3to v12 - Updated dependencies
- @backstage/cli-node@0.2.14
- @backstage/backend-app-api@1.2.6
- @backstage/plugin-auth-node@0.6.6
- @backstage/plugin-permission-node@0.10.3
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/backend-openapi-utils@0.6.0
Minor Changes
- c08cbc4: Move Scaffolder API to OpenAPI
Patch Changes
- 3760352: Update
express-openapi-validatorto 5.5.8 to fix security vulnerability in transitive dependencymulter - Updated dependencies
- @backstage/backend-plugin-api@1.4.2
@backstage/backend-test-utils@1.8.0
Minor Changes
- dffaf70: Switched out
mockServices.schedulerto use a mocked implementation instead of the default scheduler implementation. This implementation runs any scheduled tasks immediately on startup, as long as they don't have an initial delay or a manual trigger. After the initial run, the tasks are never run again unless manually triggered.
Patch Changes
-
279e1f7: Updated the type definition of
mockErrorHandlerto ensure that it is used correctly.// This is wrong and will now result in a type error
app.use(mockErrorHandler);
// This is the correct usage
app.use(mockErrorHandler()); -
3a7dad9: Updated
better-sqlite3to v12 -
Updated dependencies
- @backstage/backend-defaults@0.12.0
- @backstage/backend-app-api@1.2.6
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/catalog-client@1.11.0
Minor Changes
- 6b608e7: Added the analyze-location endpoint to the CatalogClient
@backstage/cli@0.34.0
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. -
923ceb2: BREAKING: The new app build based on Rspack is now the default, and the
EXPERIMENTAL_RSPACKflag has been removed. To revert to the old behavior, set theLEGACY_WEBPACK_BUILDenvironment flag and install the following optional dependencies:{
"dependencies": {
"@module-federation/enhanced": "^0.9.0",
"@pmmmwh/react-refresh-webpack-plugin": "^0.5.7",
"esbuild-loader": "^4.0.0",
"eslint-webpack-plugin": "^4.2.0",
"fork-ts-checker-webpack-plugin": "^9.0.0",
"mini-css-extract-plugin": "^2.4.2",
"terser-webpack-plugin": "^5.1.3",
"webpack": "^5.96.0",
"webpack-dev-server": "^5.0.0"
}
}If you do encounter a blocking issue that forces you to use the old WebPack build, please open an issue explaining the problem. The WebPack build will be removed in a future release.
-
eda80c7: BREAKING: Removed support for
.icon.svgimports, which have been deprecated since the 1.19 release.
Patch Changes
- 2b8082a: Internal refactor of error handling
- 8b1bf6e: Deprecated new frontend system config setting
app.experimental.packagesto justapp.packages. The old config will continue working for the time being, but may be removed in a future release. - ead626f: The Node.js transform in
@backstage/cli/config/nodeTransformHooks.mjsnow supports the built-in type stripping in Node.js, which is enabled by default from v22.18.0. - a6af768: Allow js files to be processed by the nodeTransform loader
- Updated dependencies
- @backstage/cli-node@0.2.14
@backstage/core-compat-api@0.5.0
Minor Changes
- 62c3628: Rename
createLegacyApptocreateLegacyAppRootas it better refers to the purpose of the function. - 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.
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - fda1bbc: The
compatWrapperhas been switched to use the newSwappableComponentsApiinstead of the oldComponentsApiin its bridging to the old frontend system. - 5d31d66: Updated the usage of the
RouterBlueprintandAppRootWrapperBlueprintto use the lowercasecomponentparameter - Updated dependencies
- @backstage/frontend-plugin-api@0.11.0
- @backstage/plugin-catalog-react@1.20.0
@backstage/frontend-app-api@0.12.0
Minor Changes
-
8e21c4d: Use an app plugin for built-in extension app node specs.
-
df7bd3b: BREAKING: Removed the deprecated
FrontendFeaturetype, import it from@backstage/frontend-plugin-apiinstead. -
8e21c4d: The
AppNodeSpec.pluginproperty is now required. -
5e12252: BREAKING: Restructured some of option fields of
createAppandcreateSpecializedApp.- For
createApp, all option fields exceptfeaturesandbindRouteshave been moved into a newadvancedobject field. - For
createSpecializedApp, all option fields exceptfeatures,config, andbindRouteshave been moved into a newadvancedobject field.
This helps highlight that some options are meant to rarely be needed or used, and simplifies the usage of those options that are almost always required.
As an example, if you used to supply a custom config loader, you would update your code as follows:
createApp({
features: [...],
- configLoader: new MyCustomLoader(),
+ advanced: {
+ configLoader: new MyCustomLoader(),
+ },
}) - For
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 />
)),
},
}),
],
}); -
f2f133c: Internal update to use the new variant of
ApiBlueprint. -
ef54427: Internal cleanup of routing system data.
-
391f0ca: External route references are no longer required to be exported via a plugin instance to function. The default target will still be resolved even if the external route reference is not included in
externalRoutesof a plugin, but users of the plugin will not be able to configure the target of the route. This is particularly useful when building modules or overrides for existing plugins, allowing you add external routes both within and out from the plugin. -
f3f9d57: Renaming the
getNodesByRoutePathparameter fromsourcePathtoroutePath -
8b1bf6e: Deprecated new frontend system config setting
app.experimental.packagesto justapp.packages. The old config will continue working for the time being, but may be removed in a future release. -
fda1bbc: Added a default implementation of the
SwappableComponentsApiand removing the legacyComponentsApiimplementation -
1c2cc37: Improved runtime error message clarity when extension factories don't return an iterable object.
-
3d2499f: Moved
createSpecializedAppoptions to a newCreateSpecializedAppOptionstype. -
Updated dependencies
- @backstage/frontend-defaults@0.3.0
- @backstage/frontend-plugin-api@0.11.0
@backstage/frontend-defaults@0.3.0
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. -
5e12252: BREAKING: Restructured some of option fields of
createAppandcreateSpecializedApp.- For
createApp, all option fields exceptfeaturesandbindRouteshave been moved into a newadvancedobject field. - For
createSpecializedApp, all option fields exceptfeatures,config, andbindRouteshave been moved into a newadvancedobject field.
This helps highlight that some options are meant to rarely be needed or used, and simplifies the usage of those options that are almost always required.
As an example, if you used to supply a custom config loader, you would update your code as follows:
createApp({
features: [...],
- configLoader: new MyCustomLoader(),
+ advanced: {
+ configLoader: new MyCustomLoader(),
+ },
}) - For
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.
- 8b1bf6e: Deprecated new frontend system config setting
app.experimental.packagesto justapp.packages. The old config will continue working for the time being, but may be removed in a future release. - 7adc846: Added support for passing through
allowUnknownExtensionConfigas a flag - e5a0a99: BREAKING: The
loadingComponentoption has been renamed toloadingElement, which is now found underadvanced.loadingElement. The default loading element has also been switched to<Progress />from@backstage/core-components. This is of course an improvement over the previous"Loading..."text, but also helps prevent flicker when the app loading is fast. - Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/frontend-app-api@0.12.0
- @backstage/plugin-app@0.2.0
@backstage/frontend-plugin-api@0.11.0
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. -
fda1bbc: BREAKING: The component system has been overhauled to use
SwappableComponentinstead ofComponentRef. Several APIs have been removed and replaced:- Removed:
createComponentRef,createComponentExtension,ComponentRef,ComponentsApi,componentsApiRef,useComponentRef,coreComponentRefs - Added:
createSwappableComponent,SwappableComponentBlueprint,SwappableComponentRef,SwappableComponentsApi,swappableComponentsApiRef
BREAKING: The default
componentRefsand exportedCore*Propshave been removed and have replacementSwappableComponentsand revised type names instead.- The
errorBoundaryFallbackcomponent andCoreErrorBoundaryFallbackPropstype have been replaced withErrorDisplayswappable component andCoreErrorDisplayPropsrespectively. - The
progresscomponent andCoreProgressPropstype have been replaced withProgressswappable component andProgressPropsrespectively. - The
notFoundErrorPagecomponent andCoreNotFoundErrorPagePropstype have been replaced withNotFoundErrorPageswappable component andNotFoundErrorPagePropsrespectively.
Migration for creating swappable components:
// OLD: Using createComponentRef and createComponentExtension
import {
createComponentRef,
createComponentExtension,
} from '@backstage/frontend-plugin-api';
const myComponentRef = createComponentRef<{ title: string }>({
id: 'my-plugin.my-component',
});
const myComponentExtension = createComponentExtension({
ref: myComponentRef,
loader: {
lazy: () => import('./MyComponent').then(m => m.MyComponent),
},
});
// NEW: Using createSwappableComponent and SwappableComponentBlueprint
import {
createSwappableComponent,
SwappableComponentBlueprint,
} from '@backstage/frontend-plugin-api';
const MySwappableComponent = createSwappableComponent({
id: 'my-plugin.my-component',
loader: () => import('./MyComponent').then(m => m.MyComponent),
});
const myComponentExtension = SwappableComponentBlueprint.make({
name: 'my-component',
params: {
component: MySwappableComponent,
loader: () => import('./MyComponent').then(m => m.MyComponent),
},
});Migration for using components:
// OLD: Using ComponentsApi and useComponentRef
import {
useComponentRef,
componentsApiRef,
useApi,
coreComponentRefs,
} from '@backstage/frontend-plugin-api';
const MyComponent = useComponentRef(myComponentRef);
const ProgressComponent = useComponentRef(coreComponentRefs.progress); - Removed:
// NEW: Direct component usage import { Progress } from '@backstage/frontend-plugin-api';
// Use directly as React Component
**Migration for core component references:**
```tsx
// OLD: Core component refs
import { coreComponentRefs } from '@backstage/frontend-plugin-api';
coreComponentRefs.progress
coreComponentRefs.notFoundErrorPage
coreComponentRefs.errorBoundaryFallback
// NEW: Direct swappable component imports
import { Progress, NotFoundErrorPage, ErrorDisplay } from '@backstage/frontend-plugin-api';
// Use directly as React components
<Progress />
<NotFoundErrorPage />
<ErrorDisplay plugin={plugin} error={error} resetError={resetError} />
-
6a75e00: BREAKING: Removed the deprecated
createFrontendPluginvariant where the plugin ID is passed via anidoption. To update existing code, switch to using thepluginIdoption instead. -
12b6db7: BREAKING: Added a new
OverridableFrontendPlugintype that is used as the return value ofcreateFrontendPlugin. This type includes thewithOverridesand.getExtensionmethods that are helpful when creating plugin overrides, while the baseFrontendPlugintype no longer includes these methods. This is a breaking change for theAppTreeApiand some other places where theFrontendPlugintype is still used, but also fixes some cases where the extra plugin methods were causing issues. -
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. -
1e6410b: BREAKING: The
ResolveInputValueOverridestype is no longer exported. -
29786f6: BREAKING: The
NavLogoBlueprinthas been removed and replaced byNavContentBlueprint, which instead replaces the entire navbar. The default navbar has also been switched to a more minimal implementation.To use
NavContentBlueprintto install new logos, you can use it as follows:NavContentBlueprint.make({
params: {
component: ({ items }) => {
return compatWrapper(
<Sidebar>
<SidebarLogo />
{/* Other sidebar content */}
<SidebarScrollWrapper>
{items.map((item, index) => (
<SidebarItem {...item} key={index} />
))}
</SidebarScrollWrapper>
{/* Other sidebar content */}
</Sidebar>,
);
},
},
}); -
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 }; -
805c298: BREAKING: The
ApiBlueprinthas been updated to use the new advanced type parameters through the newdefineParamsblueprint option. This is an immediate breaking change that requires all existing usages ofApiBlueprintto switch to the new callback format. Existing extensions created with the old format are still compatible with the latest version of the plugin API however, meaning that this does not break existing plugins.To update existing usages of
ApiBlueprint, you remove the outer level of theparamsobject and replacecreateApiFactory(...)withdefineParams => defineParams(...).For example, the following old usage:
ApiBlueprint.make({
name: 'error',
params: {
factory: createApiFactory({
api: errorApiRef,
deps: { alertApi: alertApiRef },
factory: ({ alertApi }) => {
return ...;
},
})
},
})is migrated to the following:
ApiBlueprint.make({
name: 'error',
params: defineParams =>
defineParams({
api: errorApiRef,
deps: { alertApi: alertApiRef },
factory: ({ alertApi }) => {
return ...;
},
}),
}) -
805c298: Added support for advanced parameter types in extension blueprints. The primary purpose of this is to allow extension authors to use type inference in the definition of the blueprint parameters. This often removes the need for extra imports and improves discoverability of blueprint parameters.
This feature is introduced through the new
defineParamsoption ofcreateExtensionBlueprint, along with accompanyingcreateExtensionBlueprintParamsfunction to help implement the new format.The following is an example of how to create an extension blueprint that uses the new option:
const ExampleBlueprint = createExtensionBlueprint({
kind: 'example',
attachTo: { id: 'example', input: 'example' },
output: [exampleComponentDataRef, exampleFetcherDataRef],
defineParams<T>(params: {
component(props: ExampleProps<T>): JSX.Element | null;
fetcher(options: FetchOptions): Promise<FetchResult<T>>;
}) {
// The returned params must be wrapped with `createExtensionBlueprintParams`
return createExtensionBlueprintParams(params);
},
*factory(params) {
// These params are now inferred
yield exampleComponentDataRef(params.component);
yield exampleFetcherDataRef(params.fetcher);
},
});Usage of the above example looks as follows:
const example = ExampleBlueprint.make({
params: defineParams => defineParams({
component: ...,
fetcher: ...,
}),
});This
defineParams => defineParams(<params>)is also known as the "callback syntax" and is required if a blueprint is created with the newdefineParamsoption. The callback syntax can also optionally be used for other blueprints too, which means that it is not a breaking change to remove thedefineParamsoption, as long as the external parameter types remain compatible. -
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. -
9831f4e: Adjusted the dialog API types to have more sensible defaults
-
1c2cc37: Improved runtime error message clarity when extension factories don't return an iterable object.
-
24558f0: Added inline documentation for
createExtension,createExtensionBlueprint,createFrontendPlugin, andcreateFrontendModule. -
Updated dependencies
- @backstage/core-components@0.17.5
@backstage/ui@0.7.0
Minor Changes
- 0615e54: We are moving our DataTable component to React Aria. We removed our DataTable to only use Table as a single and opinionated option for tables. This new structure is made possible by using React Aria under the hood.
- b245c9d: Backstage UI - HeaderPage - We are updating the breadcrumb to be more visible and accessible.
- 800f593: Breaking change We are updating the Menu component to use React Aria under the hood. The structure and all props are changing to follow React Aria's guidance.
- b0e47f3: Breaking We are upgrading our
Textcomponent to support all font sizes making theHeadingcomponent redundant. The newTextcomponent introduces 4 sizes for title and 4 sizes for body text. All of these work in multiple colors and font weights. We improved theasprop to include all possible values. TheLinkcomponent has also been updated to match the newTextcomponent.
Patch Changes
- de89a3d: Fixes some styles on the Select component in BUI.
- a251b3e: Export CardHeader, CardBody and CardFooter from Card component index
- f761306: Add new TagGroup component to Backstage UI.
- 75fead9: Fixes a couple of small bugs in BUI including setting H1 and H2 correctly on the Header and HeaderPage.
- e7ff178: Update styling of Tooltip element
- 230b410: Breaking change Move breadcrumb to fit in the
HeaderPageinstead of theHeaderin Backstage UI. - 2f9a084: We are motion away from
motionto usegsapinstead to make Backstage UI backward compatible with React 17. - d4e603e: Updated Menu component in Backstage UI to use useId() from React Aria instead of React to support React 17.
- 8bdc491: Remove stylesheet import from Select component.
- 404b426: Add
startCollapsedprop on theSearchFieldcomponent in BUI. - e0e886f: Adds onTabSelectionChange to ui header component.
@backstage/plugin-app@0.2.0
Minor Changes
-
fda1bbc: BREAKING: The
componentsApiimplementation has been removed from the plugin and replaced with the newSwappableComponentsApiinstead.If you were overriding the
componentsApiimplementation, you can now use the newSwappableComponentsApiinstead.// old
appPlugin.getExtension('api:app/components').override(...)
// new
appPlugin.getExtension('api:app/swappable-components').override(...) -
29786f6: Updated the
app/navextension to use the newNavContentBlueprint, and removed support for extensions created with the now removedNavLogoBlueprint. -
121899a: BREAKING: The
app-root-elementextension now only acceptsJSX.Elementin itselementparam, meaning overrides need to be updated.
Patch Changes
-
91cbdf4: Log a warning when
SwappableComponentextensions are installed outside of using theappplugin -
fda1bbc: Default implementations of core components are now provided by this package.
A backwards compatible
componentsApiimplementation is also provided from this package which uses theSwappableComponentsApias the implementation. This backwards compatible wrapper will be removed in the future. -
f2f133c: Internal update to use the new variant of
ApiBlueprint. -
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. -
9831f4e: Adjusted the dialog API types to have more sensible defaults
-
Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/theme@0.6.8
@backstage/plugin-catalog-node@1.18.0
Minor Changes
- 3f4da39: Added the analyze-location endpoint to the CatalogService
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.11.0
- @backstage/plugin-permission-node@0.10.3
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-react@1.20.0
Minor Changes
- 3f4da39: Added the
analyzeLocationmethod tocatalogApiMock - 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
- 77eebdc: Support
filterparameter on theEntityHeaderBlueprint - a3a878d: Adding
typeas an override to theconvertLegacyEntityCardExtension - defc243: hide pagination
queryparamsif pagination mode is set to none - Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/frontend-test-utils@0.3.5
- @backstage/core-compat-api@0.5.0
- @backstage/catalog-client@1.11.0
@backstage/plugin-kubernetes-backend@0.20.0
Minor Changes
-
759568d: BREAKING CHANGE: Removed support for the legacy backend system. This means that the deprecated
createRouterandKubernetesBuilderand related types have been removed. Please refer to the relevant documentation to configure the Kubernetes plugin.BREAKING CHANGE: The deprecated types
AuthenticationStrategy,AuthMetadata,ClusterDetails,CustomResource,CustomResourcesByEntity,FetchResponseWrapper,KubernetesBuilder,KubernetesBuilderReturn,KubernetesClustersSupplier,KubernetesCredential,KubernetesEnvironment,KubernetesFetcher,KubernetesObjectsProvider,KubernetesObjectTypes,KubernetesServiceLocator,ObjectFetchParams,ObjectToFetch,RouterOptionsandServiceLocatorRequestContextshould all now be imported from@backstage/plugin-kubernetes-node.
Patch Changes
- 00ebaeb: Remove usage of the deprecated
loggerToWinstonLoggerfrom@backstage/backend-common. - 79e342e: Added support for providing a factory to the extension points
- 5f424c6: Added support for Google Service account credentials config to use in GoogleServiceAccountStrategy
- Updated dependencies
- @backstage/catalog-client@1.11.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/plugin-kubernetes-node@0.3.3
- @backstage/plugin-auth-node@0.6.6
- @backstage/plugin-permission-node@0.10.3
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-notifications-common@0.1.0
Minor Changes
- 9152ba8: Add an optional generic object
metadatafield toNotificationPayload. Metadata can be used to store additional unstructured data for the notification and are available to use by processors.
@backstage/plugin-scaffolder@1.34.0
Minor Changes
- c08cbc4: Move Scaffolder API to OpenAPI
- b1c0696: Add resizable panels width for the editor and preview panels in the template editor and template form playground layouts. Users can now resize these panels by dragging the divider between the two areas.
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - b0dc9b8: differentiate between entirely and partially composite schemas in schema rendering
- c4b7c50: Export
FormFieldtype from/alphain-reactpackage, and internal refactor. - Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/plugin-scaffolder-react@1.19.0
- @backstage/plugin-scaffolder-common@1.7.0
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-catalog-react@1.20.0
- @backstage/catalog-client@1.11.0
@backstage/plugin-scaffolder-backend@2.2.0
Minor Changes
- c08cbc4: Move Scaffolder API to OpenAPI
- 2032660: Fixed fs:readdir action example
- 11dc90f: Implement max length for scaffolder auditor audit logging with default of 256
- 812485c: Add step info to scaffolder action context to access the step id and name.
Patch Changes
- caee2eb: Fixed WinstonLogger throwing when redactions were null or undefined
- 4ae87f5: add
getResourcesmethod topermissionIntegrationRouterfor frontend task permission checks - b817c1d: Stop logging of
SPLATtwice in logs - Updated dependencies
- @backstage/backend-openapi-utils@0.6.0
- @backstage/backend-defaults@0.12.0
- @backstage/plugin-scaffolder-common@1.7.0
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/plugin-scaffolder-backend-module-gitlab@0.9.4
- @backstage/plugin-catalog-node@1.18.0
- @backstage/plugin-scaffolder-backend-module-github@0.8.2
- @backstage/plugin-auth-node@0.6.6
- @backstage/plugin-permission-node@0.10.3
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.11
- @backstage/plugin-events-node@0.4.14
- @backstage/plugin-scaffolder-backend-module-azure@0.2.12
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.13
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.12
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.12
- @backstage/plugin-scaffolder-backend-module-gerrit@0.2.12
- @backstage/plugin-scaffolder-backend-module-gitea@0.2.12
@backstage/plugin-scaffolder-common@1.7.0
Minor Changes
- c08cbc4: Move Scaffolder API to OpenAPI
@backstage/plugin-scaffolder-node@0.11.0
Minor Changes
- c08cbc4: Move Scaffolder API to OpenAPI
Patch Changes
- 812485c: Add step info to scaffolder action context to access the step id and name.
- Updated dependencies
- @backstage/plugin-scaffolder-common@1.7.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-react@1.19.0
Minor Changes
-
4f99e10: DEPRECATION: The following types have been deprecated from this package and moved into
@backstage/plugin-scaffolder-commonand should be imported from there instead.Action,ListActionsResponse,LogEvent,ScaffolderApi,ScaffolderDryRunOptions,ScaffolderDryRunResponse,ScaffolderGetIntegrationsListOptions,ScaffolderGetIntegrationsListResponse,ScaffolderOutputLink,ScaffolderOutputText,ScaffolderScaffoldOptions,ScaffolderScaffoldResponse,ScaffolderStreamLogsOptions,ScaffolderTask,ScaffolderTaskOutput,ScaffolderTaskStatus,ScaffolderUsageExample,TemplateFilter,TemplateGlobalFunction,TemplateGlobalValue,TemplateParameterSchema. -
c08cbc4: Move Scaffolder API to OpenAPI
Patch Changes
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - c4b7c50: Export
FormFieldtype from/alphain-reactpackage, and internal refactor. - Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/plugin-scaffolder-common@1.7.0
- @backstage/plugin-catalog-react@1.20.0
- @backstage/theme@0.6.8
- @backstage/catalog-client@1.11.0
@backstage/plugin-techdocs@1.14.0
Minor Changes
- cb0541f: Adds
additionalAllowedURIProtocolsto sanitizer config
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - f231c2b: Fixes CSS to adjust based on whether or not the global Backstage sidebar is on the page.
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-search-react@1.9.3
- @backstage/plugin-catalog-react@1.20.0
- @backstage/theme@0.6.8
- @backstage/catalog-client@1.11.0
- @backstage/plugin-auth-react@0.1.18
- @backstage/plugin-techdocs-react@1.3.2
@backstage/app-defaults@1.6.5
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/theme@0.6.8
@backstage/backend-app-api@1.2.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
@backstage/backend-dynamic-feature-service@0.7.3
Patch Changes
- Updated dependencies
- @backstage/backend-openapi-utils@0.6.0
- @backstage/backend-defaults@0.12.0
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/plugin-catalog-backend@3.0.1
- @backstage/cli-node@0.2.14
- @backstage/plugin-auth-node@0.6.6
- @backstage/plugin-events-backend@0.5.5
- @backstage/plugin-permission-node@0.10.3
- @backstage/plugin-search-backend-node@1.3.14
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-app-node@0.1.36
- @backstage/plugin-events-node@0.4.14
@backstage/backend-plugin-api@1.4.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/plugin-permission-node@0.10.3
@backstage/cli-node@0.2.14
Patch Changes
- d9a7835: Add
getandkeysmethods toLockfileclass
@backstage/core-components@0.17.5
Patch Changes
- 1de1186: Added missing space for alert display component
- 77467bb: Updated dependency
linkifyjsto4.3.2. - 5563605: Added
FavoriteToggleProps. - Updated dependencies
- @backstage/theme@0.6.8
@backstage/create-app@0.7.2
Patch Changes
-
d7a3d04: Created a flag for scaffolding apps using the new frontend system.
-
4704160: Bumped create-app version.
-
1e8a013: Bumped create-app version.
-
e33fce1: Added Notifications and Signals to be installed by default
-
8b1bf6e: Updated the
app.packagesconfig setting now that it no longer is experimental -
2a156e0: Updated the
better-sqlitedependency fromv9.0.0tov13.0.0. You can apply this change to your instance by applying the following change to yourpackages/backend/package.jsonand runningyarn install."dependencies": {
"app": "link:../app",
- "better-sqlite3": "^9.0.0",
+ "better-sqlite3": "^12.0.0",
"node-gyp": "^10.0.0",
"pg": "^8.11.3"
}
@backstage/dev-utils@1.1.13
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/plugin-catalog-react@1.20.0
- @backstage/theme@0.6.8
- @backstage/app-defaults@1.6.5
@backstage/frontend-dynamic-feature-loader@0.1.4
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0
@backstage/frontend-test-utils@0.3.5
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
- @backstage/frontend-app-api@0.12.0
- @backstage/plugin-app@0.2.0
- @backstage/test-utils@1.7.11
@backstage/repo-tools@0.15.1
Patch Changes
- 33060b5: Removed build-in ignore of the
packages/canonpackage for knip reports. - 225d7c2: Added
stringEnumstomustachetemplates - Updated dependencies
- @backstage/cli-node@0.2.14
- @backstage/backend-plugin-api@1.4.2
@techdocs/cli@1.9.6
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.12.0
- @backstage/plugin-techdocs-node@1.13.6
@backstage/test-utils@1.7.11
Patch Changes
- Updated dependencies
- @backstage/theme@0.6.8
@backstage/theme@0.6.8
Patch Changes
- b731527: We are introducing two new data attributes on the
bodyto support Backstage UI (BUI) new theming system.
@backstage/plugin-api-docs@0.12.10
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - 633327c: Improved styling for dark mode
- 8b1bf6e: Updated README instructions for the new frontend system
- Updated dependencies
- @backstage/plugin-catalog@1.31.2
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-catalog-react@1.20.0
@backstage/plugin-app-backend@0.5.5
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-app-node@0.1.36
@backstage/plugin-app-node@0.1.36
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-app-visualizer@0.1.22
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
@backstage/plugin-auth-backend@0.25.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-atlassian-provider@0.4.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-auth0-provider@0.2.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.25.3
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.11
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-bitbucket-provider@0.3.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-github-provider@0.3.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-gitlab-provider@0.3.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-google-provider@0.3.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-guest-provider@0.2.11
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-microsoft-provider@0.3.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-oauth2-provider@0.4.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.11
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-oidc-provider@0.4.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.25.3
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-okta-provider@0.2.6
Patch Changes
- 94476d2: Updated dependency
@davidzemon/passport-okta-oauthto^0.0.7. - Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-onelogin-provider@0.3.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-pinniped-provider@0.3.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.5.6
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-node@0.6.6
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-auth-react@0.1.18
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
@backstage/plugin-catalog@1.31.2
Patch Changes
- c0ea01b: Fix card scrolling behaviour
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - f4622e8: Adding a more sensible default order to the default filters
- 77eebdc: Support multiple headers in new frontend system, and don't render a header until the entity has finished loading
- b158801: Fixed bug in EntityLayout that caused wiping existing query parameters when opening the InspectEntityDialog.
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/plugin-scaffolder-common@1.7.0
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-search-react@1.9.3
- @backstage/plugin-catalog-react@1.20.0
- @backstage/catalog-client@1.11.0
- @backstage/plugin-techdocs-react@1.3.2
@backstage/plugin-catalog-backend@3.0.1
Patch Changes
-
1752be6: Attempt to circumvent event listener memory leak in compression middleware
-
9658703: Sort built-in relation fields for more stable entity hash in the processing engine
-
9dd213c: Make the processing hash calculation not care about the order of the processors.
This change does not affect the behavior of the catalog, but it will make the processing hash calculation more robust against changes in the order of processors. This should lead to more stable processing hashes, which in turn should lead to fewer unnecessary reprocessing of entities.
After deploying this fix, you may see a period of increased processing and stitching, but this should stabilize over time as the processing hashes become more consistent.
-
fa6fa60: Fixed getLocationByEntity to use
original_valueinstead ofvaluewhen querying search table -
3a7dad9: Updated
better-sqlite3to v12 -
Updated dependencies
- @backstage/backend-openapi-utils@0.6.0
- @backstage/catalog-client@1.11.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/plugin-permission-node@0.10.3
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-catalog-backend-module-aws@0.4.14
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.12.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-backend-module-azure@0.3.8
Patch Changes
- b3aa80e:
hostshould be optional inconfigschema - Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-backend-module-backstage-openapi@0.5.5
Patch Changes
- Updated dependencies
- @backstage/backend-openapi-utils@0.6.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.5.2
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.11.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-catalog-backend-module-bitbucket-server@0.5.2
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.11.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-catalog-backend-module-gcp@0.3.11
Patch Changes
- cb36a86: Added support for Google Service account credentials config used in GkeEntityProvider.
Added support for additional metadata
authProviderandownerto be set for the GKE cluster entities. - Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-backend-module-gerrit@0.3.5
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-backend-module-gitea@0.1.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-backend-module-github@0.10.2
Patch Changes
- d421b16: This change introduces single user versions of the user group resolution code in the multi org provider that will not page through all membership when updating a single user.
- f6c64d1: Fix GitHub catalog entity provider branch matching on event processing.
- Updated dependencies
- @backstage/plugin-catalog-backend@3.0.1
- @backstage/catalog-client@1.11.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-catalog-backend-module-github-org@0.3.13
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/plugin-catalog-backend-module-github@0.10.2
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-catalog-backend-module-gitlab@0.7.2
Patch Changes
- 8dfe76f: Added support for multiple group patterns instead of a single one to increase flexibility when filtering groups from GitLab.
- Updated dependencies
- @backstage/backend-defaults@0.12.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.12
Patch Changes
- d8cb60e: feat: Add gitlabOrgEntityProviderTransformsExtensionPoint for overriding user and group transformers
- Updated dependencies
- @backstage/plugin-catalog-backend-module-gitlab@0.7.2
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.3
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.12.0
- @backstage/plugin-catalog-backend@3.0.1
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-catalog-backend-module-ldap@0.11.8
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-backend-module-logs@0.1.13
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@3.0.1
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-catalog-backend-module-msgraph@0.7.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-backend-module-openapi@0.2.13
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-backend-module-puppetdb@0.2.13
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.11
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-common@1.7.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-backend-module-unprocessed@0.6.3
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-catalog-graph@0.4.22
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- 8b1bf6e: Updated README instructions for the new frontend system
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-catalog-react@1.20.0
- @backstage/catalog-client@1.11.0
@backstage/plugin-catalog-import@0.13.4
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-catalog-react@1.20.0
- @backstage/catalog-client@1.11.0
@backstage/plugin-catalog-unprocessed-entities@0.2.20
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
@backstage/plugin-config-schema@0.1.71
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
@backstage/plugin-devtools@0.1.30
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
@backstage/plugin-devtools-backend@0.5.8
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.12.0
- @backstage/plugin-permission-node@0.10.3
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-events-backend@0.5.5
Patch Changes
- Updated dependencies
- @backstage/backend-openapi-utils@0.6.0
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-events-backend-module-aws-sqs@0.4.14
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-events-backend-module-azure@0.2.23
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.23
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-events-backend-module-bitbucket-server@0.1.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-events-backend-module-gerrit@0.2.23
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-events-backend-module-github@0.4.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-events-backend-module-gitlab@0.3.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-events-backend-module-google-pubsub@0.1.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-events-backend-module-kafka@0.1.2
Patch Changes
- 0d38009: Remove luxon dependency and minor internal improvements
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-events-backend-test-utils@0.1.47
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-events-node@0.4.14
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-gateway-backend@1.0.4
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-home@0.8.11
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- f16d380: Add the missing Visits API to the alpha plugin, fixing a crash due to the API not being installed.
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - 121899a: BREAKING ALPHA: The
app-root-elementextension now only acceptsJSX.Elementin itselementparam, meaning overrides need to be updated. - 166dfd7: Fixed bug in CustomHomepageGrid where
clearAlldid not respect thedeletableflag on widgets - Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-catalog-react@1.20.0
- @backstage/theme@0.6.8
- @backstage/catalog-client@1.11.0
- @backstage/plugin-home-react@0.1.29
@backstage/plugin-home-react@0.1.29
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
@backstage/plugin-kubernetes@0.12.10
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - 3025cf5: Removed the kubernetes content padding to avoid double padding on k8s entity page
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-catalog-react@1.20.0
- @backstage/plugin-kubernetes-react@0.5.10
@backstage/plugin-kubernetes-cluster@0.0.28
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/plugin-catalog-react@1.20.0
- @backstage/plugin-kubernetes-react@0.5.10
@backstage/plugin-kubernetes-node@0.3.3
Patch Changes
- 79e342e: Added support for providing a factory to the extension points
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-kubernetes-react@0.5.10
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
@backstage/plugin-mcp-actions-backend@0.1.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.12.0
- @backstage/catalog-client@1.11.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-notifications@0.5.8
Patch Changes
-
e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
-
f2f133c: Internal update to use the new variant of
ApiBlueprint. -
5a70981: Fix duplicate notification origins with multiple channels
-
8a24e0f: Improve customization of the notification snackbar.
Users can now customize the notification snackbar by providing custom components and icons for different severity levels. Additionally, the location of the snackbar notifications can be modified, the density of the snackbar can be changed, and the number of snacks can be limited.
-
Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
- @backstage/theme@0.6.8
- @backstage/plugin-notifications-common@0.1.0
@backstage/plugin-notifications-backend@0.5.9
Patch Changes
- 9152ba8: Add an optional generic object
metadatafield toNotificationPayload. Metadata can be used to store additional unstructured data for the notification and are available to use by processors. - Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/plugin-notifications-common@0.1.0
- @backstage/plugin-auth-node@0.6.6
- @backstage/plugin-notifications-node@0.2.18
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
- @backstage/plugin-signals-node@0.1.23
@backstage/plugin-notifications-backend-module-email@0.3.12
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.11.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/plugin-notifications-common@0.1.0
- @backstage/plugin-notifications-node@0.2.18
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-notifications-backend-module-slack@0.1.4
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.18.0
- @backstage/plugin-notifications-common@0.1.0
- @backstage/plugin-notifications-node@0.2.18
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-notifications-node@0.2.18
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.11.0
- @backstage/plugin-notifications-common@0.1.0
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-signals-node@0.1.23
@backstage/plugin-org@0.6.42
Patch Changes
- 43cbb10: Added OwnershipCard, ComponentsGrid and UserProfileCard components to the
overridableComponents. - 8b1bf6e: Updated README instructions for the new frontend system
- 4ee19ed: Added support for scrolling to OwnershipCard component
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-catalog-react@1.20.0
@backstage/plugin-org-react@0.1.41
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/plugin-catalog-react@1.20.0
- @backstage/catalog-client@1.11.0
@backstage/plugin-permission-backend@0.7.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/plugin-permission-node@0.10.3
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-permission-backend-module-allow-all-policy@0.2.11
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/plugin-permission-node@0.10.3
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-permission-node@0.10.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-proxy-backend@0.6.5
Patch Changes
- 0810cd8: correct rewrite rule to avoid extra subpath in proxy path
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-proxy-node@0.1.7
@backstage/plugin-proxy-node@0.1.7
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-azure@0.2.12
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-bitbucket@0.3.13
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.12
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.12
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.12
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.12
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.12
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.14
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.12.0
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-gcp@0.2.12
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-gerrit@0.2.12
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-gitea@0.2.12
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-github@0.8.2
Patch Changes
- a22cce0: Fixed bug in the
customPropertiestype which was preventing it being used to set a list of values against a key (e.g. for multi-select fields) - Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-gitlab@0.9.4
Patch Changes
- 5bb870b: Show additional information about the cause in error messages from GitLab
- df2bfab: The
descriptionproperty inpublish:gitlab:merge-requesthas been made optional again to comply with the GitLab API. - Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-notifications@0.1.13
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/plugin-notifications-common@0.1.0
- @backstage/plugin-notifications-node@0.2.18
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-rails@0.5.12
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-sentry@0.2.12
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-backend-module-yeoman@0.4.13
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/plugin-scaffolder-node-test-utils@0.3.2
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-scaffolder-node-test-utils@0.3.2
Patch Changes
- 812485c: Add step info to scaffolder action context to access the step id and name.
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.11.0
- @backstage/backend-test-utils@1.8.0
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-search@1.4.29
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-search-react@1.9.3
- @backstage/plugin-catalog-react@1.20.0
@backstage/plugin-search-backend@2.0.5
Patch Changes
- Updated dependencies
- @backstage/backend-openapi-utils@0.6.0
- @backstage/backend-defaults@0.12.0
- @backstage/plugin-permission-node@0.10.3
- @backstage/plugin-search-backend-node@1.3.14
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-search-backend-module-catalog@0.3.7
Patch Changes
- d9bda0f: Allow filter to be an array in config schema
- Updated dependencies
- @backstage/catalog-client@1.11.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/plugin-search-backend-node@1.3.14
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-search-backend-module-elasticsearch@1.7.5
Patch Changes
- Updated dependencies
- @backstage/plugin-search-backend-node@1.3.14
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-search-backend-module-explore@0.3.5
Patch Changes
- 3b8fac1: Updated dependency
@backstage-community/plugin-explore-commonto^0.5.0. - Updated dependencies
- @backstage/plugin-search-backend-node@1.3.14
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-search-backend-module-pg@0.5.47
Patch Changes
- Updated dependencies
- @backstage/plugin-search-backend-node@1.3.14
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-search-backend-module-stack-overflow-collator@0.3.12
Patch Changes
- Updated dependencies
- @backstage/plugin-search-backend-node@1.3.14
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-search-backend-module-techdocs@0.4.5
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.11.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/plugin-search-backend-node@1.3.14
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-techdocs-node@1.13.6
@backstage/plugin-search-backend-node@1.3.14
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-search-react@1.9.3
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/theme@0.6.8
@backstage/plugin-signals@0.0.22
Patch Changes
- f2f133c: Internal update to use the new variant of
ApiBlueprint. - 121899a: BREAKING ALPHA: The
app-root-elementextension now only acceptsJSX.Elementin itselementparam, meaning overrides need to be updated. - Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
- @backstage/theme@0.6.8
@backstage/plugin-signals-backend@0.3.7
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
- @backstage/plugin-signals-node@0.1.23
@backstage/plugin-signals-node@0.1.23
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-events-node@0.4.14
@backstage/plugin-techdocs-addons-test-utils@1.0.52
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.31.2
- @backstage/plugin-search-react@1.9.3
- @backstage/plugin-techdocs@1.14.0
- @backstage/plugin-catalog-react@1.20.0
- @backstage/test-utils@1.7.11
- @backstage/plugin-techdocs-react@1.3.2
@backstage/plugin-techdocs-backend@2.0.5
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.12.0
- @backstage/catalog-client@1.11.0
- @backstage/plugin-catalog-node@1.18.0
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-search-backend-module-techdocs@0.4.5
- @backstage/plugin-techdocs-node@1.13.6
@backstage/plugin-techdocs-module-addons-contrib@1.1.27
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/plugin-techdocs-react@1.3.2
@backstage/plugin-techdocs-node@1.13.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2
@backstage/plugin-techdocs-react@1.3.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
@backstage/plugin-user-settings@0.8.25
Patch Changes
- e4ddf22: Internal update to align with new blueprint parameter naming in the new frontend system.
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-catalog-react@1.20.0
- @backstage/theme@0.6.8
@backstage/plugin-user-settings-backend@0.3.5
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.12.0
- @backstage/plugin-auth-node@0.6.6
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-signals-node@0.1.23
example-app@0.2.112
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.31.2
- @backstage/plugin-org@0.6.42
- @backstage/core-components@0.17.5
- @backstage/plugin-scaffolder-react@1.19.0
- @backstage/plugin-scaffolder@1.34.0
- @backstage/frontend-app-api@0.12.0
- @backstage/ui@0.7.0
- @backstage/cli@0.34.0
- @backstage/plugin-catalog-unprocessed-entities@0.2.20
- @backstage/plugin-catalog-import@0.13.4
- @backstage/plugin-catalog-graph@0.4.22
- @backstage/plugin-notifications@0.5.8
- @backstage/plugin-user-settings@0.8.25
- @backstage/plugin-search-react@1.9.3
- @backstage/plugin-kubernetes@0.12.10
- @backstage/plugin-api-docs@0.12.10
- @backstage/plugin-devtools@0.1.30
- @backstage/plugin-techdocs@1.14.0
- @backstage/plugin-search@1.4.29
- @backstage/plugin-home@0.8.11
- @backstage/plugin-signals@0.0.22
- @backstage/plugin-catalog-react@1.20.0
- @backstage/theme@0.6.8
- @backstage/app-defaults@1.6.5
- @backstage/plugin-auth-react@0.1.18
- @backstage/plugin-kubernetes-cluster@0.0.28
- @backstage/plugin-techdocs-module-addons-contrib@1.1.27
- @backstage/plugin-techdocs-react@1.3.2
example-app-next@0.0.26
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.31.2
- @backstage/plugin-org@0.6.42
- @backstage/core-components@0.17.5
- @backstage/frontend-defaults@0.3.0
- @backstage/frontend-plugin-api@0.11.0
- @backstage/plugin-scaffolder-react@1.19.0
- @backstage/plugin-scaffolder@1.34.0
- @backstage/frontend-app-api@0.12.0
- @backstage/plugin-app@0.2.0
- @backstage/ui@0.7.0
- @backstage/cli@0.34.0
- @backstage/plugin-catalog-unprocessed-entities@0.2.20
- @backstage/core-compat-api@0.5.0
- @backstage/plugin-app-visualizer@0.1.22
- @backstage/plugin-catalog-import@0.13.4
- @backstage/plugin-catalog-graph@0.4.22
- @backstage/plugin-notifications@0.5.8
- @backstage/plugin-user-settings@0.8.25
- @backstage/plugin-search-react@1.9.3
- @backstage/plugin-kubernetes@0.12.10
- @backstage/plugin-api-docs@0.12.10
- @backstage/plugin-techdocs@1.14.0
- @backstage/plugin-search@1.4.29
- @backstage/plugin-home@0.8.11
- @backstage/plugin-signals@0.0.22
- @backstage/plugin-catalog-react@1.20.0
- @backstage/theme@0.6.8
- @backstage/app-defaults@1.6.5
- @backstage/plugin-auth-react@0.1.18
- @backstage/plugin-kubernetes-cluster@0.0.28
- @backstage/plugin-techdocs-module-addons-contrib@1.1.27
- @backstage/plugin-techdocs-react@1.3.2
app-next-example-plugin@0.0.26
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
- @backstage/frontend-plugin-api@0.11.0
example-backend@0.0.41
Patch Changes
- Updated dependencies
- @backstage/plugin-kubernetes-backend@0.20.0
- @backstage/plugin-scaffolder-backend@2.2.0
- @backstage/backend-defaults@0.12.0
- @backstage/plugin-catalog-backend@3.0.1
- @backstage/plugin-proxy-backend@0.6.5
- @backstage/plugin-search-backend-module-explore@0.3.5
- @backstage/plugin-scaffolder-backend-module-github@0.8.2
- @backstage/plugin-techdocs-backend@2.0.5
- @backstage/plugin-search-backend-module-catalog@0.3.7
- @backstage/plugin-notifications-backend@0.5.9
- @backstage/plugin-app-backend@0.5.5
- @backstage/plugin-auth-backend@0.25.3
- @backstage/plugin-auth-backend-module-github-provider@0.3.6
- @backstage/plugin-auth-node@0.6.6
- @backstage/plugin-devtools-backend@0.5.8
- @backstage/plugin-events-backend@0.5.5
- @backstage/plugin-events-backend-module-google-pubsub@0.1.3
- @backstage/plugin-mcp-actions-backend@0.1.2
- @backstage/plugin-permission-backend@0.7.3
- @backstage/plugin-permission-node@0.10.3
- @backstage/plugin-search-backend@2.0.5
- @backstage/plugin-search-backend-node@1.3.14
- @backstage/plugin-signals-backend@0.3.7
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.13
- @backstage/backend-plugin-api@1.4.2
- @backstage/plugin-auth-backend-module-guest-provider@0.2.11
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.5.5
- @backstage/plugin-catalog-backend-module-openapi@0.2.13
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.11
- @backstage/plugin-catalog-backend-module-unprocessed@0.6.3
- @backstage/plugin-permission-backend-module-allow-all-policy@0.2.11
- @backstage/plugin-search-backend-module-techdocs@0.4.5
e2e-test@0.2.31
Patch Changes
- Updated dependencies
- @backstage/create-app@0.7.2
@internal/frontend@0.0.12
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0
@internal/scaffolder@0.0.12
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.11.0
- @backstage/plugin-scaffolder-react@1.19.0
techdocs-cli-embedded-app@0.2.111
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.31.2
- @backstage/core-components@0.17.5
- @backstage/cli@0.34.0
- @backstage/plugin-techdocs@1.14.0
- @backstage/theme@0.6.8
- @backstage/app-defaults@1.6.5
- @backstage/test-utils@1.7.11
- @backstage/plugin-techdocs-react@1.3.2
@internal/plugin-todo-list@1.0.42
Patch Changes
- Updated dependencies
- @backstage/core-components@0.17.5
@internal/plugin-todo-list-backend@1.0.42
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.4.2