fix(deps): update backstage monorepo #126
Loading…
x
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.0
1.15.4
->1.15.5
1.15.4
->1.15.5
0.16.3
->0.16.4
1.10.3
->1.10.4
1.1.6
->1.1.7
1.2.3
->1.2.4
0.12.3
->0.12.4
0.4.4
->0.4.5
0.24.2
->0.24.3
1.26.1
->1.27.0
1.30.0
->1.31.0
0.7.9
->0.7.10
0.4.15
->0.4.16
0.12.9
->0.12.10
1.15.1
->1.15.2
0.6.35
->0.6.36
0.8.7
->0.8.8
0.4.30
->0.4.31
0.5.10
->0.5.11
1.27.5
->1.28.0
1.29.0
->1.30.0
1.4.22
->1.4.23
1.8.1
->1.8.2
0.5.40
->0.5.41
1.3.7
->1.3.8
1.8.5
->1.8.6
1.12.2
->1.12.3
1.11.5
->1.11.6
1.1.20
->1.1.21
1.2.13
->1.2.14
0.8.18
->0.8.19
1.7.4
->1.7.5
0.6.3
->0.6.4
Release Notes
backstage/backstage (@backstage/app-defaults)
v1.5.17
Compare 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.0
Compare 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:
.mjs
and.mts
files as explicit ESM files, as well as.cjs
and.cts
as explicit CommonJS files."type": "module"
field inpackage.json
to indicate that the package is an ESM package.There are a few caveats to be aware of:
--experimental-vm-modules
flag enabled, typically viaNODE_OPTIONS='--experimental-vm-modules'
."type": "module"
inpackage.json
is 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..cts
or.cjs
extension. This is because the interoperability layer is not fully compatible with the NPM ecosystem, and would break package if it was enabled for.js
files.require
, or to use the explicit CommonJS extensions as mentioned above. If you do need to dynamically import CommonJS packages, avoid usingdefault
exports, 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
: Thenew
command 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
new
command have been deprecated and will be removed in a future release:--license=<license>
: Configure the globallicense
instead.--no-private
: Configure the globalprivate
instead.--baseVersion=<version>
: Configure the globalversion
instead.--npmRegistry=<url>
: Configure the globalpublishRegistry
instead.--scope=<scope>
: Configure the globalnamePrefix
and/ornamePluginInfix
instead.As part of this change the template IDs and their options have changed. The following backwards compatibility mappings for the
--select
and--option
flags are enabled when using the default set of templates, but they will also be removed in the future:--select=plugin
is mapped to--select=frontend-plugin
instead.--option=id=<id>
is mapped to--option=pluginId=<id>
instead.Patch Changes
f17ef61
: Theversions:bump
command will now reject*
as a pattern.86c72c1
: The packing process when runningbuild-workspace
with the--alwaysYarnPack
flag now respects theBACKSTAGE_CLI_BUILD_PARALLEL
environment 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--link
option for thestart
command 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.mjs
in Jest transform if static ESM is supported.9d49e04
: Replaced dependencynode-libs-browser
withnode-stdlib-browser
2c14147
: Corrected path when trying to add dependency to respectivepackage.json
when usingyarn new
templatesf21b125
: Ensure that both global-agent and undici agents are enabled when proxying is enabled.backstage/backstage (@backstage/core-app-api)
v1.15.5
Compare 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.4
Compare Source
Patch Changes
9c9f4ff
: AddednestedValuesAsYaml
option toStructuredMetadataTable
to render data as yaml.47c27c2
: Upgradedagre
to@dagrejs/dagre
17088d2
: Updating theTaskLogStream
to 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.4
Compare 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.7
Compare 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.4
Compare 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.4
Compare 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.5
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-auth-backend)
v0.24.3
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-catalog)
v1.27.0
Compare 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.0
Compare 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
: TheUrlReaderProccessor
accepts a new config flagcatalog.useUrlReadersSearch
to always call thesearch
method 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
search
method only if the parsed Git URL's filename contained a wildcard and usereadUrl
otherwise.UrlReaderService
must implement this logic in thesearch
method instead.This allows each
UrlReaderService
implementation 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 theauditor
service into the Catalog plugin.Patch Changes
c9139e1
: Ignore benign database conflict errors during stitching, now logged with debug level instead.f178b12
: Cleanuprefresh_state_references
for entity processors and providers that are no longer in control of arefresh_state
row 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.10
Compare Source
Patch Changes
eb80a1a
: Minor doc string updatebackstage/backstage (@backstage/plugin-catalog-graph)
v0.4.16
Compare Source
Patch Changes
719e48d
: Fixed an issue causing theCatalogGraphCard
to 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.10
Compare 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.2
Compare 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.36
Compare Source
Patch Changes
9cf1260
: Added support forspec.profile.displayName
to be used in theMyGroupsSidebarItem
component via theEntityDisplayName
component 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.8
Compare Source
Patch Changes
049d5d4
: The returned router fromcreatePermissionIntegrationRouter
is now mutable, allowing for permissions and resources to be added after creation of the router.b71f634
: Added a newPermissionRuleset
type that encapsulates a lookup function for permission rules, which can be created by the newPermissionsRegistryService
via thegetPermissionRuleset
method. ThecreateConditionTransformer
andcreateConditionAuthorizer
functions have been adapted to receive these accessors as arguments, with their older counterparts being deprecated.a9621de
: Added a newcreatePermissionResourceRef
utility that encapsulates the constants and types related to a permission resource types. ThecreateConditionExports
andcreatePermissionRule
functions have also been adapted to accept these references as arguments, deprecating their older counterparts.backstage/backstage (@backstage/plugin-permission-react)
v0.4.31
Compare 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.11
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-scaffolder)
v1.28.0
Compare Source
Minor Changes
17088d2
: Updating theTaskLogStream
to 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 toonChange
handler when usingGitLab
autocomplete3edf7e7
: Add schema output return type to themakeFieldSchema
function return1e935f0
: Added conditional rendering ofoneOf
output 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.0
Compare Source
Minor Changes
dc8dd4b
: Added newcreateTemplateFilter
,createTemplateGlobalFunction
,createTemplateGlobalValue
for template extensions.a4aa244
: This change integrates theauditor
service 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_gracefulShutdown
flag 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
TaskWorker
stop
method 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.each
caused an error.1e935f0
: Added conditional rendering ofoneOf
output schemas on the Installed Actions page for scaffolder actionsbackstage/backstage (@backstage/plugin-search)
v1.4.23
Compare Source
Patch Changes
63e1012
: Added new extension points to extend search filtersSearchFilterBlueprint
andSearchFilterResultTypeBlueprint
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-search-backend)
v1.8.2
Compare Source
Patch Changes
backstage/backstage (@backstage/plugin-search-backend-module-pg)
v0.5.41
Compare Source
Patch Changes
8699b79
: Removed unused dependenciesbackstage/backstage (@backstage/plugin-search-backend-node)
v1.3.8
Compare Source
Patch Changes
8699b79
: Removed unused dependenciesbackstage/backstage (@backstage/plugin-search-react)
v1.8.6
Compare Source
Patch Changes
63e1012
: Added new extension points to extend search filtersSearchFilterBlueprint
andSearchFilterResultTypeBlueprint
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)
v1.12.3
Compare 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/alpha
entity 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 toTechDocCustomHome
to allow for more flexibility:Add new Grid option called
InfoCardGrid
which is a more customizable card option for the Docs grid.Expose existing
CustomDocsPanel
so 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.6
Compare Source
Patch Changes
b78e3fd
: Fixed issuesyncEntityDocs
that would cause the/sync
endpoint to be continuously called if the request failsbackstage/backstage (@backstage/plugin-techdocs-module-addons-contrib)
v1.1.21
Compare 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.14
Compare 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.19
Compare 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.5
Compare 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.4
Compare 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.