fix(deps): update backstage monorepo #126
Reference in New Issue
Block a user
No description provided.
Delete Branch "renovate/backstage-monorepo"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
This PR contains the following updates:
1.5.16->1.5.17^0.29.0->^0.30.0^0.29.0->^0.30.01.15.4->1.15.51.15.4->1.15.50.16.3->0.16.41.10.3->1.10.41.1.6->1.1.71.2.3->1.2.40.12.3->0.12.40.4.4->0.4.50.24.2->0.24.31.26.1->1.27.01.30.0->1.31.00.7.9->0.7.100.4.15->0.4.160.12.9->0.12.101.15.1->1.15.20.6.35->0.6.360.8.7->0.8.80.4.30->0.4.310.5.10->0.5.111.27.5->1.28.01.29.0->1.30.01.4.22->1.4.231.8.1->1.8.20.5.40->0.5.411.3.7->1.3.81.8.5->1.8.61.12.2->1.12.31.11.5->1.11.61.1.20->1.1.211.2.13->1.2.140.8.18->0.8.191.7.4->1.7.50.6.3->0.6.4Release Notes
backstage/backstage (@backstage/app-defaults)
v1.5.17Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/cli)
v0.30.0Compare Source
Minor Changes
cb76663: BREAKING: Add support for native ESM in Node.js code. This changes the behavior of dynamic import expressions in Node.js code. Typically this can be fixed by replacingimport(...)withrequire(...), with anas typeof import(...)cast if needed for types. This is because dynamic imports will no longer be transformed torequire(...)calls, but instead be left as-is. This in turn allows you to load ESM modules from CommonJS code usingimport(...).This change adds support for the following in Node.js packages, across type checking, package builds, runtime transforms and Jest tests:
.mjsand.mtsfiles as explicit ESM files, as well as.cjsand.ctsas explicit CommonJS files."type": "module"field inpackage.jsonto indicate that the package is an ESM package.There are a few caveats to be aware of:
--experimental-vm-modulesflag enabled, typically viaNODE_OPTIONS='--experimental-vm-modules'."type": "module"inpackage.jsonis supported, but in tests it will cause all local transitive dependencies to also be treated as ESM, regardless of whether they declare"type": "module"or not..ctsor.cjsextension. This is because the interoperability layer is not fully compatible with the NPM ecosystem, and would break package if it was enabled for.jsfiles.require, or to use the explicit CommonJS extensions as mentioned above. If you do need to dynamically import CommonJS packages, avoid usingdefaultexports, as the shape of them vary across different environments and you would otherwise need to manually unwrap the import based on the shape of the module object.b30e788: Thenewcommand is now powered by a new template system that allows you to define your own templates in a declarative way, as well as import existing templates from external sources. See the CLI templates documentation for more information.The following flags for the
newcommand have been deprecated and will be removed in a future release:--license=<license>: Configure the globallicenseinstead.--no-private: Configure the globalprivateinstead.--baseVersion=<version>: Configure the globalversioninstead.--npmRegistry=<url>: Configure the globalpublishRegistryinstead.--scope=<scope>: Configure the globalnamePrefixand/ornamePluginInfixinstead.As part of this change the template IDs and their options have changed. The following backwards compatibility mappings for the
--selectand--optionflags are enabled when using the default set of templates, but they will also be removed in the future:--select=pluginis mapped to--select=frontend-plugininstead.--option=id=<id>is mapped to--option=pluginId=<id>instead.Patch Changes
f17ef61: Theversions:bumpcommand will now reject*as a pattern.86c72c1: The packing process when runningbuild-workspacewith the--alwaysYarnPackflag now respects theBACKSTAGE_CLI_BUILD_PARALLELenvironment variable, defaulting parallel work limits based on CPU availability.2167afc: Treat static file assets as always being free from side effects in package builds.f54eed0: Fixed an issue where default feature type information wasn't being added to package.json/exports before publishing if exports didn't exist beforehand90a1edf: Add check to make sure that the--linkoption for thestartcommand is a valid workspace.207f88f: Fixed the file path pattern of many static assets output as part of the frontend build process, where there was an extra.before the extension, leading to names likeimage-af7946b..png.9638f6d: Only allow pass through of.mjsin Jest transform if static ESM is supported.9d49e04: Replaced dependencynode-libs-browserwithnode-stdlib-browser2c14147: Corrected path when trying to add dependency to respectivepackage.jsonwhen usingyarn newtemplatesf21b125: Ensure that both global-agent and undici agents are enabled when proxying is enabled.backstage/backstage (@backstage/core-app-api)
v1.15.5Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/core-components)
v0.16.4Compare Source
Patch Changes
9c9f4ff: AddednestedValuesAsYamloption toStructuredMetadataTableto render data as yaml.47c27c2: Upgradedagreto@dagrejs/dagre17088d2: Updating theTaskLogStreamto take up all space in a running task, and also show the last line of the log by default58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/core-plugin-api)
v1.10.4Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/dev-utils)
v1.1.7Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/integration-react)
v1.2.4Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-api-docs)
v0.12.4Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-app-backend)
v0.4.5Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-auth-backend)
v0.24.3Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-catalog)
v1.27.0Compare Source
Minor Changes
b07756e: The Entity Page now retains the visibility of the Inspect Dialog after a reload. This allows sharing the URL with the dialog open.Patch Changes
7a15cff: Revert client side paginated catalog table to using built in Material Table toolbar component58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-catalog-backend)
v1.31.0Compare Source
Minor Changes
9b9737c: Added support for emitting entities with an explicit location key during processing.8805f93: The catalog backend now supports the newPermissionsRegistryService, which can be used to add custom permission rules.5aebc13: TheUrlReaderProccessoraccepts a new config flagcatalog.useUrlReadersSearchto always call thesearchmethod ofUrlReaders.This flag currently defaults to
false, but adopters are encouraged to enable it as this behavior will be the default in a future release.Previous behavior was to call the
searchmethod only if the parsed Git URL's filename contained a wildcard and usereadUrlotherwise.UrlReaderServicemust implement this logic in thesearchmethod instead.This allows each
UrlReaderServiceimplementation to check whether it's a search URL (that contains a wildcard pattern) or not using logic that is specific to each provider.a4aa244: This change integrates theauditorservice into the Catalog plugin.Patch Changes
c9139e1: Ignore benign database conflict errors during stitching, now logged with debug level instead.f178b12: Cleanuprefresh_state_referencesfor entity processors and providers that are no longer in control of arefresh_staterow for entitycd372e4: Improved performance when applying conditional decisions to entities within the permission framework.4ae6884: Fixed an bug in the entity processing caching that would prevent entities that were emitted during processing to be restored after being overridden.ef73f97: Updated permission integration to use new permission resource ref.backstage/backstage (@backstage/plugin-catalog-backend-module-github)
v0.7.10Compare Source
Patch Changes
eb80a1a: Minor doc string updatebackstage/backstage (@backstage/plugin-catalog-graph)
v0.4.16Compare Source
Patch Changes
719e48d: Fixed an issue causing theCatalogGraphCardto redraw its content whenever the parent component re-renders, resulting in flickering.58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-catalog-import)
v0.12.10Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-catalog-react)
v1.15.2Compare Source
Patch Changes
b07756e: The Entity Page now retains the visibility of the Inspect Dialog after a reload. This allows sharing the URL with the dialog open.58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-org)
v0.6.36Compare Source
Patch Changes
9cf1260: Added support forspec.profile.displayNameto be used in theMyGroupsSidebarItemcomponent via theEntityDisplayNamecomponent when you are a member of multiple Groups.58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-permission-node)
v0.8.8Compare Source
Patch Changes
049d5d4: The returned router fromcreatePermissionIntegrationRouteris now mutable, allowing for permissions and resources to be added after creation of the router.b71f634: Added a newPermissionRulesettype that encapsulates a lookup function for permission rules, which can be created by the newPermissionsRegistryServicevia thegetPermissionRulesetmethod. ThecreateConditionTransformerandcreateConditionAuthorizerfunctions have been adapted to receive these accessors as arguments, with their older counterparts being deprecated.a9621de: Added a newcreatePermissionResourceRefutility that encapsulates the constants and types related to a permission resource types. ThecreateConditionExportsandcreatePermissionRulefunctions have also been adapted to accept these references as arguments, deprecating their older counterparts.backstage/backstage (@backstage/plugin-permission-react)
v0.4.31Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-proxy-backend)
v0.5.11Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-scaffolder)
v1.28.0Compare Source
Minor Changes
17088d2: Updating theTaskLogStreamto take up all space in a running task, and also show the last line of the log by default5d469c9: Added support for autocompletion of GitHub branches in scaffolder8e67e4a: Added support for autocompletion to GithubRepoPicker componentPatch Changes
82300ea: Added support for experimental form decorators when dry-running templates in the template editor.eb3d91a: Use the custom error page if provided for displaying errors instead of the default error page3107f1f: Fixed a bug in the BitbucketRepoBranchPicker component that crashed the scaffolderfe44946: Fixed bug of passing wrong value toonChangehandler when usingGitLabautocomplete3edf7e7: Add schema output return type to themakeFieldSchemafunction return1e935f0: Added conditional rendering ofoneOfoutput schemas on the Installed Actions page for scaffolder actions58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.65d7020: Use template title for ongoing task page headerbackstage/backstage (@backstage/plugin-scaffolder-backend)
v1.30.0Compare Source
Minor Changes
dc8dd4b: Added newcreateTemplateFilter,createTemplateGlobalFunction,createTemplateGlobalValuefor template extensions.a4aa244: This change integrates theauditorservice into the Scaffolder plugin.3d6ef79: Support file globbing in fs:delete91f3313: Added experimental flag for scaffolder to wait for running tasks to complete on shutdownEnabling the
EXPERIMENTAL_gracefulShutdownflag in the scaffolder config will make thescaffolder block the shutdown process until all running tasks have completed. This is useful
when there is a need to ensure that all tasks have completed before the scaffolder is shut down.
Please note, that the
TaskWorkerstopmethod is now asynchronous and awaited for thetasks to complete when the experimental flag is enabled.
Patch Changes
37ab712: Fixed an issue where invalid expressions or non-object values instep.eachcaused an error.1e935f0: Added conditional rendering ofoneOfoutput schemas on the Installed Actions page for scaffolder actionsbackstage/backstage (@backstage/plugin-search)
v1.4.23Compare Source
Patch Changes
63e1012: Added new extension points to extend search filtersSearchFilterBlueprintandSearchFilterResultTypeBlueprint58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-search-backend)
v1.8.2Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-search-backend-module-pg)
v0.5.41Compare Source
Patch Changes
8699b79: Removed unused dependenciesbackstage/backstage (@backstage/plugin-search-backend-node)
v1.3.8Compare Source
Patch Changes
8699b79: Removed unused dependenciesbackstage/backstage (@backstage/plugin-search-react)
v1.8.6Compare Source
Patch Changes
63e1012: Added new extension points to extend search filtersSearchFilterBlueprintandSearchFilterResultTypeBlueprint58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-techdocs)
v1.12.3Compare Source
Patch Changes
eb3d91a: Use the custom error page if provided for displaying errors instead of the default error page524f0af: Add missing route ref to the/alphaentity content extension.f4be934: Changed the base URL in addLinkClickListener from window.location.origin to app.baseUrl for improved path handling. This fixes an issue where Backstage, when running on a subpath, was unable to handle non-Backstage URLs of the same origin correctly.1f40e6b: Add optional props toTechDocCustomHometo allow for more flexibility:Add new Grid option called
InfoCardGridwhich is a more customizable card option for the Docs grid.Expose existing
CustomDocsPanelso that it can be used independently if desired.58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.Updated dependencies
backstage/backstage (@backstage/plugin-techdocs-backend)
v1.11.6Compare Source
Patch Changes
b78e3fd: Fixed issuesyncEntityDocsthat would cause the/syncendpoint to be continuously called if the request failsbackstage/backstage (@backstage/plugin-techdocs-module-addons-contrib)
v1.1.21Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-techdocs-react)
v1.2.14Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/plugin-user-settings)
v0.8.19Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/test-utils)
v1.7.5Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.backstage/backstage (@backstage/theme)
v0.6.4Compare Source
Patch Changes
58ec9e7: Removed older versions of React packages as a preparatory step for upgrading to React 19. This commit does not introduce any functional changes, but removes dependencies on previous React versions, allowing for a cleaner upgrade path in subsequent commits.Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Renovate Bot.