Release v1.33.0
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.33.0
@backstage/backend-dynamic-feature-service@0.5.0
Minor Changes
-
e939cd7: BREAKING The
dynamicPluginsFeatureLoader
options related to the root logger behavior (transports
,level
,format
) are now gathered under a singlelogger
option which is a function taking an optionalConfig
argument and returning the logger options.This breaking change is required for 2 reasons:
- it's totally possible that the current
Config
would be required to provide the logger options, - the logger-related options should be gathered under a common
logger
option because, when the root auditing service is introduced, distinct but similarly-named options would be required for the auditor as well.
- it's totally possible that the current
Patch Changes
- 1aeec12: Enhance the
CommonJSModuleLoader
to add support forresolvePackagePath
calls from backend dynamic plugins, with customizable package resolution, and make theCommonJSModuleLoader
public API. Fixing this backend dynamic plugin limitation related toresolvePackagePath
is important for backend dynamic plugins which use the database, since database migration scripts systematically useresolvePackagePath
. - 8593dfa: Improve the way alpha packages are supported when loading dynamic backend plugins.
The
ScannedPluginPackage
descriptor of dynamic backend plugins loaded from their alphapackage.json
now contain both the main package manifest and the alpha manifest. Previously it used to contain only the content of the alphapackage.json
, which is nearly empty. This will make it easier to use or display metadata of loaded dynamic backend plugins, which is contained in the main manifest. - Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/backend-defaults@0.5.3
- @backstage/types@1.2.0
- @backstage/plugin-catalog-backend@1.28.0
- @backstage/plugin-events-backend@0.3.16
- @backstage/config-loader@1.9.2
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-search-backend-node@1.3.5
- @backstage/plugin-permission-common@0.8.2
- @backstage/backend-app-api@1.0.2
- @backstage/cli-common@0.1.15
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/cli-node@0.2.10
- @backstage/errors@1.2.5
- @backstage/plugin-app-node@0.1.27
- @backstage/plugin-permission-node@0.8.5
- @backstage/plugin-search-common@1.2.15
@backstage/backend-openapi-utils@0.3.0
Minor Changes
- 1440232: Adds a new
createValidatedOpenApiRouterFromGeneratedEndpointMap
function that uses the new static server generation inbackstage-cli package schema openapi generate --server
to create a typed express router.
Patch Changes
- f01787a: Moves msw from dependencies to devDependencies
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/errors@1.2.5
@backstage/backend-test-utils@1.1.0
Minor Changes
- 5064827: Made it possible to construct
mockServices.database
with a given knex instance
Patch Changes
- 7aae8e3: The
mockServices.discovery.factory()
factory now uses the mocked discovery service as its implementation, avoid the need for configuration. - eb82994: Removed unused
msw
dependency. - 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/backend-defaults@0.5.3
- @backstage/types@1.2.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/backend-app-api@1.0.2
- @backstage/errors@1.2.5
@backstage/catalog-client@1.8.0
Minor Changes
- 656d1ef: Internal update to use the updated generated code from
backstage-cli package schema openapi generate --client-package ...
. - 31c4fe0: The client now automatically splits up very large
getEntitiesByRefs
calls into several smaller requests behind the scenes when needed. This ensures that each individual request does not exceed common Express.js request body limits or overload the server.
Patch Changes
- 873f89a: Fix for certain filter fields in the
catalogApiMock
being case sensitive. - Updated dependencies
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
@backstage/cli@0.29.0
Minor Changes
-
bc47b17: BREAKING: Updates ESLint config to ignore all generated source code under
src/**/generated/**/*.ts
. -
6819f8c: Added a new optimization to the
repo test
command that will filter out unused packages in watch mode if all provide filters are paths that point from the repo root. This significantly speeds up running individual tests from the repo root in a large workspace, for example:yarn test packages/app/src/App.test.tsx
-
d849865: The package packing now populates
typesVersions
for additional entry points rather than using additionalpackage.json
files for type resolution. This improves auto completion of separate entry points when consuming published packages. -
bc71665: BREAKING: The
LEGACY_BACKEND_START
flag has been removed, along with support forsrc/run.ts
as the development entry point.
Patch Changes
-
4046d53: Fixed an issue where the
--successCache
option for therepo test
andrepo lint
commands would be include the workspace path in generated cache keys. This previously broke caching in environments where the workspace path varies across builds. -
4a378d3: Fix dev server reloads of plugin discovery for new frontend system.
-
28b60ad: The check for
react-dom/client
in the Jest configuration will now properly always run from the target directory. -
6b2888c: Fixed an issue with the
--successCache
flag forrepo test
where the tree hash for the wrong package directory would sometimes be used to generate the cache key. -
e30b65d: Added
--alwaysPack
as a replacement for the now hidden--alwaysYarnPack
flag for thebuild-workspace
command. -
be0278e: Removed circular import
-
a7f97e4: Added a new
"rejectFrontendNetworkRequests"
configuration flag that can be set in the"jest"
field in the rootpackage.json
:{
"jest": {
"rejectFrontendNetworkRequests": true
}
}This flag causes rejection of any form of network requests that are attempted to be made in frontend or common package tests. This flag can only be set in the root
package.json
and can not be overridden in individual package configurations. -
6c48ebd: Add
--max-warnings -1
support tobackstage-cli package lint
-
04297a0: The
--successCache
option for therepo test
andrepo lint
commands now use an additive store that keeps old entries around for a week before they are cleaned up automatically. -
a2f0559: When using the experimental Rspack flag the app build and dev server now injects configuration via a
<script type="backstage.io/config">...</script>
tag inindex.html
rather than theprocess.env.APP_CONFIG
definition, which will now be defined as an empty array instead.This requires the app to be using the config loader from the 1.31 release of Backstage. Make sure your app is using at least that version if you are upgrading to this version of the CLI.
If you have copied the implementation of the
defaultConfigLoader
, make sure to update it to the new implementation. In particular the config loader needs to be able to read configuration fromscript
tags with the typebackstage.io/config
. -
b4627f2: Fixed an issue where the
raw-loader
for loading HTML templates was not resolved from the context of the CLI package. -
cd1ef2b: Updated dependency
vite
to^5.0.0
. -
23f1da2: Updated dependency
ts-morph
to^24.0.0
. -
b533056: Updated dependency
css-loader
to^7.0.0
. -
be008c3: Updated dependency
@module-federation/enhanced
to^0.7.0
. -
6266ed3: Updated dependency
del
to^8.0.0
. -
4046d53: Fixed an issue with the
repo lint
command where the cache key for the--successCache
option would not properly ignore files that should be ignored according to.eslintignore
s. -
e19c53c: Fix for the
--link
flag forpackage start
to deduplicatereact-router
andreact-router-dom
. -
17850a5: Update upgrade-helper link in
versions:bump
command to includeyarnPlugin
parameter when the yarn plugin is installed -
09ea093: Fixed an issue where
.css
style injection would fail for published packages. -
702f41d: Bumped dev dependencies
@types/node
-
5d74716: Remove unused backend-common dependency
-
b084f5a: Bump the Webpack dependency range to
^5.94.0
, as our current configuration is not compatible with some older versions. -
e565f73: Added support for
.webp
files in the frontend tooling. -
946fa34: Added a new
--link <workspace-path>
option for frontend builds that allow you to override module resolution to link in an external workspace at runtime.As part of this change the Webpack linked workspace resolution plugin for frontend builds has been removed. It was in place to support the old workspace linking where it was done by Yarn, which is no longer a working option.
-
Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/config-loader@1.9.2
- @backstage/cli-common@0.1.15
- @backstage/catalog-model@1.7.1
- @backstage/cli-node@0.2.10
- @backstage/errors@1.2.5
- @backstage/eslint-plugin@0.1.10
- @backstage/integration@1.15.2
- @backstage/release-manifests@0.0.11
@backstage/config@1.3.0
Minor Changes
- d52d7f9: Make
readDurationFromConfig
support both ISO and ms formats as well, to make it easier to enter time as an end user
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/errors@1.2.5
@backstage/core-components@0.16.0
Minor Changes
- dc409c5: The SupportButton component will now be hidden if no support config is specified in app-config
Patch Changes
-
0f18340: Change core component Table tool bar search box to the a appropriate Search icon and text
-
af9097e: Adds the ability to mock a media query per break point and to change the active break point during a test. Usage example:
const { set } = mockBreakpoint({
initialBreakpoint: 'md',
queryBreakpointMap: {
'(min-width:1500px)': 'xl',
'(min-width:1000px)': 'lg',
'(min-width:700px)': 'md',
'(min-width:400px)': 'sm',
'(min-width:0px)': 'xs',
},
});
// assertions for when the active break point is "md"
set('lg');
// assertions for when the active break point is "lg" -
Updated dependencies
- @backstage/config@1.3.0
- @backstage/theme@0.6.1
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
- @backstage/version-bridge@1.0.10
@backstage/repo-tools@0.11.0
Minor Changes
- 1440232:
backstage-repo-tools package schema openapi generate --server
now generates complete TS interfaces for all request/response objects in your OpenAPI schema. This fixes an edge case around recursive schemas and standardizes both the generated client and server to have similar generated types. - 47fdbb4: Adds a
--watch
mode to theschema openapi generate
command for a better local schema writing experience.
Patch Changes
- 95401a8: The
generate-patch
command now properly includes newly created files in the patch. - 23f1da2: Updated dependency
ts-morph
to^24.0.0
. - 3f1fb21: The
generate-patch
command will now fall back to always adding aresolutions
entry, even if no matching descriptors are found. - dde85ee: Added a new
generate-patch
command that can be used to generate patches for current changes in a source workspace to be installed it a target workspace. - 702f41d: Bumped dev dependencies
@types/node
- Updated dependencies
- @backstage/config-loader@1.9.2
- @backstage/backend-plugin-api@1.0.2
- @backstage/cli-common@0.1.15
- @backstage/catalog-model@1.7.1
- @backstage/cli-node@0.2.10
- @backstage/errors@1.2.5
@backstage/types@1.2.0
Minor Changes
- c5e39e7: Introduce
createDeferred
andDeferredPromise
.
@backstage/plugin-api-docs@0.12.0
Minor Changes
- 6836522: Added support for pagination in api-docs plugin - DefaultApiExplorerPage
Patch Changes
- 11f57de: bump
@asyncapi/react-component
to latest2.x
- 3cd1dee: Uses theme values to style the API definition schema so that theme overrides apply.
- Updated dependencies
- @backstage/plugin-catalog@1.25.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-plugin-api@0.9.1
- @backstage/plugin-catalog-common@1.1.1
- @backstage/plugin-permission-react@0.4.28
@backstage/plugin-app-backend@0.4.0
Minor Changes
- 815b702: Configuration is no longer injected into static assets if a
index.html.tmpl
file is present.
Patch Changes
- 815b702: The
index.html
templating is now done and served from memory rather than written to the filesystem. This means that you can now use config injection with a read-only filesystem, and you no longer need to use theapp.disableConfigInjection
flag. - Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/config-loader@1.9.2
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/errors@1.2.5
- @backstage/plugin-app-node@0.1.27
@backstage/plugin-auth-backend@0.24.0
Minor Changes
- 75168e3: BREAKING: The AWS ALB
fullProfile
will no longer have the its username or email converted to lowercase. This is to ensure unique handling of the users. You may need to update and configure a custom sign-in resolver or profile transform as a result.
Patch Changes
- d52d7f9: Support ISO and ms string forms of durations in config too
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/plugin-auth-backend-module-google-provider@0.2.2
- @backstage/types@1.2.0
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/plugin-catalog-node@1.14.0
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.2
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-auth-backend-module-oidc-provider@0.3.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/plugin-auth-backend-module-atlassian-provider@0.3.2
- @backstage/plugin-auth-backend-module-auth0-provider@0.1.2
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.2
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.2
- @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.2
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.2
- @backstage/plugin-auth-backend-module-github-provider@0.2.2
- @backstage/plugin-auth-backend-module-gitlab-provider@0.2.2
- @backstage/plugin-auth-backend-module-microsoft-provider@0.2.2
- @backstage/plugin-auth-backend-module-oauth2-provider@0.3.2
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.2
- @backstage/plugin-auth-backend-module-okta-provider@0.1.2
- @backstage/plugin-auth-backend-module-onelogin-provider@0.2.2
@backstage/plugin-auth-backend-module-aws-alb-provider@0.3.0
Minor Changes
- 75168e3: BREAKING: The AWS ALB
fullProfile
will no longer have the its username or email converted to lowercase. This is to ensure unique handling of the users. You may need to update and configure a custom sign-in resolver or profile transform as a result.
Patch Changes
- 5d74716: Remove unused backend-common dependency
- Updated dependencies
- @backstage/plugin-auth-backend@0.24.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/errors@1.2.5
@backstage/plugin-catalog@1.25.0
Minor Changes
-
50df3c8: - Updated EntityLayout component to implement breadcrumb navigation based on the entity relations.
- Added parentEntityRelations prop to EntityLayoutProps to specify relation types for parent entities.
-
79e9631: Allow
OffsetPaginatedCatalogTable
to configure Table options andCursorPaginatedCatalogTable
to configurepaginationPosition
.
Patch Changes
- 2a67594: Fixed an issue causing the
CatalogIndexPage
to not properly filter results when using offset pagination. - Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/types@1.2.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/plugin-scaffolder-common@1.5.7
- @backstage/core-components@0.16.0
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
- @backstage/frontend-plugin-api@0.9.1
- @backstage/integration-react@1.2.1
- @backstage/plugin-catalog-common@1.1.1
- @backstage/plugin-permission-react@0.4.28
- @backstage/plugin-search-common@1.2.15
- @backstage/plugin-search-react@1.8.2
@backstage/plugin-catalog-backend@1.28.0
Minor Changes
-
39fd704: Internal update to use the new generated server types from
backstage-cli package schema openapi generate --server
. -
76857da: Added
entity_ref
column tofinal_entities
in order to moverefresh_state
away from the read path -
34d4360: Drop redundant indices from the database.
The following redundant indices are removed in this version:
final_entities_entity_id_idx
- overlaps withfinal_entities_pkey
refresh_state_entity_id_idx
- overlaps withrefresh_state_pkey
refresh_state_entity_ref_idx
- overlaps withrefresh_state_entity_ref_uniq
search_key_idx
andsearch_value_idx
- these were replaced by the composite indexsearch_key_value_idx
in #22594
No negative end user impact is expected, but rather that performance should increase due to less index churn.
Patch Changes
- d52d7f9: Support ISO and ms string forms of durations in config too
- b89834b: Fixed an issue where entities would not be marked for restitching if only the target of a relationship changed.
- 1bf02cc: Fixed bug when searching an entity by
spec.profile.displayName
in the catalog on the frontend. Text filter fields were not applied correctly to the database query resulting in empty results. - 4e58bc7: Upgrade to uuid v11 internally
- 5efde17: Internal refactor to slightly speed up the processing loop
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/types@1.2.0
- @backstage/plugin-search-backend-module-catalog@0.2.5
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/backend-openapi-utils@0.3.0
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
- @backstage/plugin-catalog-common@1.1.1
- @backstage/plugin-permission-node@0.8.5
@backstage/plugin-catalog-backend-module-gitlab@0.5.0
Minor Changes
- 1b5fdd9: Extended the configuration with the
includeArchivedRepos
property, which allows including repositories when the project is archived.
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/backend-defaults@0.5.3
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/integration@1.15.2
- @backstage/plugin-catalog-common@1.1.1
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.6.0
Minor Changes
-
6cf91c5: Use
HumanDuration
for all duration needs in the public API, instead ofluxon
types. These are generally compatible, with a few caveats:- If you scheduled things to run quarterly (
quarter
orquarters
), you can use{ months: 3 }
instead. - If you used the singular nouns such as
year: 1
, use plurals instead (e.g.years: 1
).
- If you scheduled things to run quarterly (
Patch Changes
- c5e39e7: Internal refactor to use the deferred from the types package
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/types@1.2.0
- @backstage/plugin-catalog-backend@1.28.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
@backstage/plugin-catalog-backend-module-ldap@0.10.0
Minor Changes
- 415aeb3: Add Support for Google LDAP Vendor
Patch Changes
- 884a86c: Added a
dnCaseSensitive
flag to support LDAP servers with mixed-case attributes. - 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/plugin-catalog-common@1.1.1
@backstage/plugin-catalog-node@1.14.0
Minor Changes
-
bc13b42: The
catalogServiceRef
now has its own accompanyingCatalogService
interface that requires Backstagecredentials
objects to be passed. This new version of thecatalogServiceRef
has been promoted and is now available via the main@backstage/plugin-catalog-node
entry point.The old
catalogServiceRef
with the oldCatalogApi
type is still available from the/alpha
entry point.
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/plugin-catalog-common@1.1.1
- @backstage/plugin-permission-node@0.8.5
@backstage/plugin-kubernetes@0.12.0
Minor Changes
- 71b8704: Bumping @kubernetes/client-node to 1.0.0-rc7 to mitigate CVEs related to the request and tough-cookie packages
Patch Changes
- Updated dependencies
- @backstage/plugin-kubernetes-react@0.5.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/plugin-kubernetes-common@0.9.0
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-plugin-api@0.9.1
@backstage/plugin-kubernetes-backend@0.19.0
Minor Changes
- 71b8704: Bumping @kubernetes/client-node to 1.0.0-rc7 to mitigate CVEs related to the request and tough-cookie packages
Patch Changes
- bee9664: Adapted the config.d.ts for custom k8s cluster authProvider implementations
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/integration-aws-node@0.1.13
- @backstage/plugin-kubernetes-common@0.9.0
- @backstage/plugin-kubernetes-node@0.2.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/plugin-permission-node@0.8.5
@backstage/plugin-kubernetes-common@0.9.0
Minor Changes
- 71b8704: Bumping @kubernetes/client-node to 1.0.0-rc7 to mitigate CVEs related to the request and tough-cookie packages
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
@backstage/plugin-kubernetes-node@0.2.0
Minor Changes
- 71b8704: Bumping @kubernetes/client-node to 1.0.0-rc7 to mitigate CVEs related to the request and tough-cookie packages
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-kubernetes-common@0.9.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
@backstage/plugin-kubernetes-react@0.5.0
Minor Changes
- 71b8704: Bumping @kubernetes/client-node to 1.0.0-rc7 to mitigate CVEs related to the request and tough-cookie packages
Patch Changes
- 0b729da: add the pod delete feature to the kubernetes react plugin
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/core-components@0.16.0
- @backstage/plugin-kubernetes-common@0.9.0
- @backstage/catalog-model@1.7.1
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
@backstage/plugin-notifications@0.4.0
Minor Changes
- 87ffc1c: Rephrasing labels of the View filter to be more clear. Based on the received users' feedback.
Patch Changes
- 4186105: Added title to the Notifications' table. The title clearly states the filter selection and total count of messages. This change aligns the look and feel closer to other tables.
- 3a0731e: The "Created after" filter renamed to the "Sent out" based on the received users' feedback.
- 3e135f2: The notification's title is emphasized to be clearly distinguished from the description.
- 97ba58f: Add support for user specific notification settings
- 1d87c43: Show count of unread notifications in the left-side MenuItem. This replaces the simple true/false bullet.
- Updated dependencies
- @backstage/theme@0.6.1
- @backstage/types@1.2.0
- @backstage/core-components@0.16.0
- @backstage/plugin-notifications-common@0.0.6
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
- @backstage/plugin-signals-react@0.0.7
@backstage/plugin-scaffolder@1.27.0
Minor Changes
- f61d4cc: Add scaffolder permission
scaffolder.template.management
for accessing the template management features - 69fb6e7: Fix
contextMenu
not being disabled bug in new scaffolder pages
Patch Changes
- 99471cd: fix(scaffolder): use
onInputChange
inRepoUrlPicker
to fix issue with the value not updating properly - 8e4bed4: Updated dependency
idb-keyval
to5.1.5
. - 7669af3: Revert the change of the option label for
EntityPicker
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/types@1.2.0
- @backstage/plugin-scaffolder-react@1.14.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/plugin-scaffolder-common@1.5.7
- @backstage/core-components@0.16.0
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
- @backstage/frontend-plugin-api@0.9.1
- @backstage/integration@1.15.2
- @backstage/integration-react@1.2.1
- @backstage/plugin-catalog-common@1.1.1
- @backstage/plugin-permission-react@0.4.28
@backstage/plugin-scaffolder-backend@1.27.0
Minor Changes
-
0587633: Bumped the
isolated-vm
dependency from v4 to v5, which drops support for Node.js v16. -
e61d5ef: BREAKING EXPERIMENTAL: The
checkpoint
method now takes an object instead of previous arguments.await ctx.checkpoint({ key: 'repo.create', fn: () => ockokit.repo.create({...})})
You can also now return
void
from the checkpoint if the method returnsvoid
inside thecheckpoint
handler.
Patch Changes
- 6aa5b98: Fix tasks listing with postgres
- 59137ff: Fix issue with token not being available because it's now non-enumerable
- c5e39e7: Internal refactor to use the deferred from the types package
- e4f5d95: Align with type declaration of template filter/global function by supporting undefined as return value.
- d52d7f9: Support ISO and ms string forms of durations in config too
- 7ab3371: Modified
createDryRunner
and corresponding route to includetemplateMetaData
inside thetemplateInfo
. This allows custom action writers to access things liketemplateInfo.entity.metadata.name
via the action context while executing templates using the dry run framework. - 4e58bc7: Upgrade to uuid v11 internally
- 2dae341: Add new
fs:readdir
action to list current content of the workspace - 97ba58f: Add example template for notification sending
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/backend-defaults@0.5.3
- @backstage/types@1.2.0
- @backstage/plugin-scaffolder-backend-module-gitlab@0.6.1
- @backstage/plugin-scaffolder-common@1.5.7
- @backstage/plugin-auth-node@0.5.4
- @backstage/plugin-bitbucket-cloud-common@0.2.25
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.2
- @backstage/plugin-permission-node@0.8.5
- @backstage/plugin-scaffolder-backend-module-azure@0.2.2
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.2
- @backstage/plugin-scaffolder-backend-module-gerrit@0.2.2
- @backstage/plugin-scaffolder-backend-module-gitea@0.2.2
- @backstage/plugin-scaffolder-backend-module-github@0.5.2
@backstage/plugin-scaffolder-node@0.6.0
Minor Changes
-
e61d5ef: BREAKING EXPERIMENTAL: The
checkpoint
method now takes an object instead of previous arguments.await ctx.checkpoint({ key: 'repo.create', fn: () => ockokit.repo.create({...})})
You can also now return
void
from the checkpoint if the method returnsvoid
inside thecheckpoint
handler.
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-scaffolder-common@1.5.7
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-react@1.14.0
Minor Changes
- 69fb6e7: Fix
contextMenu
not being disabled bug in new scaffolder pages
Patch Changes
- 8b5ff7e: Fix issue with form state not refreshing when updating
- ade301c: Fix issue with
Stepper
and trying to trim additional properties. This is now all behindliveOmit
andomitExtraData
instead. - f61d4cc: Add scaffolder permission
scaffolder.template.management
for accessing the template management features - Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/theme@0.6.1
- @backstage/types@1.2.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/plugin-scaffolder-common@1.5.7
- @backstage/core-components@0.16.0
- @backstage/catalog-model@1.7.1
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-plugin-api@0.9.1
- @backstage/version-bridge@1.0.10
- @backstage/plugin-permission-react@0.4.28
@backstage/plugin-search-backend@1.7.0
Minor Changes
- 39fd704: Internal update to use the new generated server types from
backstage-cli package schema openapi generate --server
.
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-defaults@0.5.3
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/backend-openapi-utils@0.3.0
- @backstage/plugin-search-backend-node@1.3.5
- @backstage/plugin-permission-common@0.8.2
- @backstage/errors@1.2.5
- @backstage/plugin-permission-node@0.8.5
- @backstage/plugin-search-common@1.2.15
@backstage/app-defaults@1.5.13
Patch Changes
- Updated dependencies
- @backstage/theme@0.6.1
- @backstage/core-components@0.16.0
- @backstage/core-app-api@1.15.2
- @backstage/core-plugin-api@1.10.1
- @backstage/plugin-permission-react@0.4.28
@backstage/backend-app-api@1.0.2
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- 5d74716: Remove unused backend-common dependency
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/config-loader@1.9.2
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/cli-common@0.1.15
- @backstage/errors@1.2.5
- @backstage/plugin-permission-node@0.8.5
@backstage/backend-defaults@0.5.3
Patch Changes
- bf306cb: Removed dependency
@backstage/backend-common
. - e30bb46: Disabling database migrations now correctly uses the
backend.default.skipMigrations
config value. - d52d7f9: Support ISO and ms string forms of durations in config too
- f6eaec2: Link to proper package in
rootLoggerServiceFactory
doc string. - ecf6b39: Use
node-fetch
instead of native fetch, as per https://backstage.io/docs/architecture-decisions/adrs-adr013 - 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/types@1.2.0
- @backstage/integration-aws-node@0.1.13
- @backstage/config-loader@1.9.2
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/backend-app-api@1.0.2
- @backstage/cli-common@0.1.15
- @backstage/backend-dev-utils@0.1.5
- @backstage/cli-node@0.2.10
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
- @backstage/plugin-permission-node@0.8.5
@backstage/backend-plugin-api@1.0.2
Patch Changes
- d52d7f9: Support ISO and ms string forms of durations in config too
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/plugin-permission-common@0.8.2
- @backstage/cli-common@0.1.15
- @backstage/errors@1.2.5
@backstage/catalog-model@1.7.1
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/errors@1.2.5
@backstage/cli-common@0.1.15
Patch Changes
- 702f41d: Bumped dev dependencies
@types/node
@backstage/cli-node@0.2.10
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/cli-common@0.1.15
- @backstage/errors@1.2.5
@backstage/codemods@0.1.52
Patch Changes
- 702f41d: Bumped dev dependencies
@types/node
- Updated dependencies
- @backstage/cli-common@0.1.15
@backstage/config-loader@1.9.2
Patch Changes
- c5e39e7: Internal refactor to use the deferred from the types package
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/cli-common@0.1.15
- @backstage/errors@1.2.5
@backstage/core-app-api@1.15.2
Patch Changes
- 44b82da: The default config loader no longer requires
process.env.APP_CONFIG
to be set, allowing config to be read from other sources instead. - Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/core-plugin-api@1.10.1
- @backstage/version-bridge@1.0.10
@backstage/core-compat-api@0.3.2
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-plugin-api@0.9.1
- @backstage/version-bridge@1.0.10
@backstage/core-plugin-api@1.10.1
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/errors@1.2.5
- @backstage/version-bridge@1.0.10
@backstage/create-app@0.5.22
Patch Changes
- 7907e3b: Bumped create-app version.
- 42386c2: Bumped create-app version.
- 702f41d: Updated engines to support Node 20 or 22
- a917f86: This update adds the @backstage/repo-tools package to the versions.ts file, enabling proper version resolution for templates. The {{version '@backstage/repo-tools'}} placeholder now works as expected in the create-app process.
- 5872964: Use the main entrypoint for
create-app
installs - 702f41d: Bumped dev dependencies
@types/node
- Updated dependencies
- @backstage/cli-common@0.1.15
@backstage/dev-utils@1.1.3
Patch Changes
- Updated dependencies
- @backstage/theme@0.6.1
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/core-app-api@1.15.2
- @backstage/app-defaults@1.5.13
- @backstage/catalog-model@1.7.1
- @backstage/core-plugin-api@1.10.1
- @backstage/integration-react@1.2.1
@backstage/errors@1.2.5
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
@backstage/frontend-app-api@0.10.1
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/core-app-api@1.15.2
- @backstage/frontend-defaults@0.1.2
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
- @backstage/frontend-plugin-api@0.9.1
- @backstage/version-bridge@1.0.10
@backstage/frontend-defaults@0.1.2
Patch Changes
- 44b82da: The default config loader no longer requires
process.env.APP_CONFIG
to be set, allowing config to be read from other sources instead. - Updated dependencies
- @backstage/config@1.3.0
- @backstage/errors@1.2.5
- @backstage/frontend-app-api@0.10.1
- @backstage/frontend-plugin-api@0.9.1
- @backstage/plugin-app@0.1.2
@backstage/frontend-plugin-api@0.9.1
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/core-components@0.16.0
- @backstage/core-plugin-api@1.10.1
- @backstage/version-bridge@1.0.10
@backstage/frontend-test-utils@0.2.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/frontend-app-api@0.10.1
- @backstage/frontend-plugin-api@0.9.1
- @backstage/test-utils@1.7.1
- @backstage/version-bridge@1.0.10
- @backstage/plugin-app@0.1.2
@backstage/integration@1.15.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/errors@1.2.5
@backstage/integration-aws-node@0.1.13
Patch Changes
- 52ae92d: The
getDefaultCredentialsChain
function now accepts and applies aregion
parameter, preventing it from defaulting tous-east-1
when no region is specified. - Updated dependencies
- @backstage/config@1.3.0
- @backstage/errors@1.2.5
@backstage/integration-react@1.2.1
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/core-plugin-api@1.10.1
- @backstage/integration@1.15.2
@techdocs/cli@1.8.22
Patch Changes
- 702f41d: Bumped dev dependencies
@types/node
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-defaults@0.5.3
- @backstage/cli-common@0.1.15
- @backstage/catalog-model@1.7.1
- @backstage/plugin-techdocs-node@1.12.13
@backstage/test-utils@1.7.1
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/theme@0.6.1
- @backstage/types@1.2.0
- @backstage/core-app-api@1.15.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/core-plugin-api@1.10.1
- @backstage/plugin-permission-react@0.4.28
@backstage/theme@0.6.1
Patch Changes
- ea75c37: Internal refactor to avoid top-level imports from MUI.
@backstage/plugin-app@0.1.2
Patch Changes
- Updated dependencies
- @backstage/theme@0.6.1
- @backstage/core-components@0.16.0
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-plugin-api@0.9.1
- @backstage/integration-react@1.2.1
- @backstage/plugin-permission-react@0.4.28
@backstage/plugin-app-node@0.1.27
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.9.2
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-app-visualizer@0.1.12
Patch Changes
- e586e77: New
devDependency
for local development setup. - Updated dependencies
- @backstage/core-components@0.16.0
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-plugin-api@0.9.1
@backstage/plugin-auth-backend-module-atlassian-provider@0.3.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-auth0-provider@0.1.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
@backstage/plugin-auth-backend-module-bitbucket-provider@0.2.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.2
Patch Changes
- d52d7f9: Support ISO and ms string forms of durations in config too
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/errors@1.2.5
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.2
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/errors@1.2.5
@backstage/plugin-auth-backend-module-github-provider@0.2.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-gitlab-provider@0.2.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-google-provider@0.2.2
Patch Changes
- b833660: Fix visibility of config for use in front end code
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-guest-provider@0.2.2
Patch Changes
- 5d74716: Remove unused backend-common dependency
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
@backstage/plugin-auth-backend-module-microsoft-provider@0.2.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-oauth2-provider@0.3.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/errors@1.2.5
@backstage/plugin-auth-backend-module-oidc-provider@0.3.2
Patch Changes
- 5d74716: Remove unused backend-common dependency
- Updated dependencies
- @backstage/plugin-auth-backend@0.24.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-okta-provider@0.1.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-onelogin-provider@0.2.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-pinniped-provider@0.2.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.4.1
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
@backstage/plugin-auth-node@0.5.4
Patch Changes
- a0a9a4a: Browsers silently drop cookies that exceed 4KB, which can be problematic for refresh tokens and other large cookies.This update ensures that large cookies, like refresh tokens, are not dropped by browsers, maintaining the integrity of the authentication process. The changes include both the implementation of the cookie splitting logic and corresponding tests to validate the new functionality.
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
@backstage/plugin-auth-react@0.1.8
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.0
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
@backstage/plugin-bitbucket-cloud-common@0.2.25
Patch Changes
- 23f1da2: Updated dependency
ts-morph
to^24.0.0
. - Updated dependencies
- @backstage/integration@1.15.2
@backstage/plugin-catalog-backend-module-aws@0.4.5
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-defaults@0.5.3
- @backstage/integration-aws-node@0.1.13
- @backstage/plugin-kubernetes-common@0.9.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
- @backstage/plugin-catalog-common@1.1.1
@backstage/plugin-catalog-backend-module-azure@0.2.4
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/integration@1.15.2
- @backstage/plugin-catalog-common@1.1.1
@backstage/plugin-catalog-backend-module-backstage-openapi@0.4.2
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/backend-openapi-utils@0.3.0
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.4.2
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- f6b4b8a: Implemented discovery on project-level to shift Bitbucket Cloud API limits
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/plugin-bitbucket-cloud-common@0.2.25
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/integration@1.15.2
- @backstage/plugin-catalog-common@1.1.1
@backstage/plugin-catalog-backend-module-bitbucket-server@0.2.4
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-catalog-backend-module-gcp@0.3.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-kubernetes-common@0.9.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
@backstage/plugin-catalog-backend-module-gerrit@0.2.4
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-catalog-backend-module-github@0.7.7
Patch Changes
- 9790c02: Fixed an issue in
GithubOrgEntityProvider
that caused an error when processing teams without a parent. - 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/plugin-catalog-backend@1.28.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/integration@1.15.2
- @backstage/plugin-catalog-common@1.1.1
@backstage/plugin-catalog-backend-module-github-org@0.3.4
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/plugin-catalog-backend-module-github@0.7.7
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.5
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-catalog-backend-module-gitlab@0.5.0
@backstage/plugin-catalog-backend-module-logs@0.1.4
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.5
- @backstage/plugin-catalog-backend@1.28.0
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-catalog-backend-module-msgraph@0.6.4
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/plugin-catalog-common@1.1.1
@backstage/plugin-catalog-backend-module-openapi@0.2.4
Patch Changes
- 5f058e2: Updated dependency
@apidevtools/json-schema-ref-parser
to^11.0.0
. - Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/plugin-catalog-backend@1.28.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/integration@1.15.2
- @backstage/plugin-catalog-common@1.1.1
@backstage/plugin-catalog-backend-module-puppetdb@0.2.4
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.2
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-common@1.5.7
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/plugin-catalog-common@1.1.1
@backstage/plugin-catalog-backend-module-unprocessed@0.5.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.5
@backstage/plugin-catalog-common@1.1.1
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
- @backstage/plugin-search-common@1.2.15
@backstage/plugin-catalog-graph@0.4.12
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/types@1.2.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-plugin-api@0.9.1
@backstage/plugin-catalog-import@0.12.6
Patch Changes
- ea5b7f3: Fixed parsing of catalog-info.yaml when creating a PR to register a repository if the file contains more than one document
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
- @backstage/frontend-plugin-api@0.9.1
- @backstage/integration@1.15.2
- @backstage/integration-react@1.2.1
- @backstage/plugin-catalog-common@1.1.1
@backstage/plugin-catalog-react@1.14.1
Patch Changes
- 9cc82c0: Fixed bug in
EntityDisplayName
where text was overflowing. - 6fcbb3b: Ensure EntityDisplayName component link receives underline on hover.
- 9670906: Improve UI consistency of default catalog filters
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/types@1.2.0
- @backstage/core-components@0.16.0
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
- @backstage/frontend-plugin-api@0.9.1
- @backstage/frontend-test-utils@0.2.2
- @backstage/integration-react@1.2.1
- @backstage/version-bridge@1.0.10
- @backstage/plugin-catalog-common@1.1.1
- @backstage/plugin-permission-react@0.4.28
@backstage/plugin-catalog-unprocessed-entities@0.2.10
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.0
- @backstage/catalog-model@1.7.1
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
@backstage/plugin-catalog-unprocessed-entities-common@0.0.5
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.8.2
@backstage/plugin-config-schema@0.1.61
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/core-components@0.16.0
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
@backstage/plugin-devtools@0.1.20
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.0
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
- @backstage/frontend-plugin-api@0.9.1
- @backstage/plugin-devtools-common@0.1.13
- @backstage/plugin-permission-react@0.4.28
@backstage/plugin-devtools-backend@0.4.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/config-loader@1.9.2
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/cli-common@0.1.15
- @backstage/errors@1.2.5
- @backstage/plugin-devtools-common@0.1.13
- @backstage/plugin-permission-node@0.8.5
@backstage/plugin-devtools-common@0.1.13
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.2
@backstage/plugin-events-backend@0.3.16
Patch Changes
- e02a02b: Fix
events.useEventBus
by propagating config toDefaultEventsService
- 9816f51: Add raw body information to
RequestDetails
and use the raw body when validating incoming event requests. - b7d0334: Cleaning up event subscriptions after the max age window
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/backend-openapi-utils@0.3.0
- @backstage/errors@1.2.5
@backstage/plugin-events-backend-module-aws-sqs@0.4.5
Patch Changes
- d52d7f9: Support ISO and ms string forms of durations in config too
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-events-backend-module-azure@0.2.14
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.5
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.14
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.5
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-events-backend-module-gerrit@0.2.14
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.5
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-events-backend-module-github@0.2.14
Patch Changes
- 9816f51: Fix the event request validation for incoming requests for GitHub webhook events by using the raw body when verifying the signature.
- 9816f51: Add raw body information to
RequestDetails
and use the raw body when validating incoming event requests. - Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-events-backend-module-gitlab@0.2.14
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-events-backend-test-utils@0.1.38
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.5
@backstage/plugin-events-node@0.4.5
Patch Changes
-
4501631: Fixed an issue where subscribing to events threw an error and gave up too easily. Calling the subscribe method will cause the background polling loop to keep trying to connect to the events backend, even if the initial request fails.
By default the events service will attempt to publish and subscribe to events from the events bus API in the events backend, but if it fails due to the events backend not being installed, it will bail and never try calling the API again. There is now a new
events.useEventBus
configuration and option for theDefaultEventsService
that lets you control this behavior. You can set it to'never'
to disabled API calls to the events backend completely, or'always'
to never allow it to be disabled. -
e02a02b: Fix
events.useEventBus
by propagating config toDefaultEventsService
-
9816f51: Add raw body information to
RequestDetails
and use the raw body when validating incoming event requests. -
5d74716: Remove unused backend-common dependency
-
0b57aa1: Fixed an issue where the event bus polling would duplicate and increase exponentially over time.
-
Updated dependencies
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/errors@1.2.5
@backstage/plugin-home@0.8.1
Patch Changes
-
8b1b2cf: Improve Starred Entities UI to reduce whitespace and provide more context on the entities:
- Use the Entity Presentation API (via
<EntityDisplayName>
) to display the entity's name - Component's
kind
andspec.type
are displayed as a secondary text - List items are condensed to reduce unnecessary spacing
- Use the Entity Presentation API (via
-
Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/theme@0.6.1
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/core-app-api@1.15.2
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-plugin-api@0.9.1
- @backstage/plugin-home-react@0.1.19
@backstage/plugin-home-react@0.1.19
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.0
- @backstage/core-plugin-api@1.10.1
@backstage/plugin-kubernetes-cluster@0.0.18
Patch Changes
- 702f41d: Bumped dev dependencies
@types/node
- Updated dependencies
- @backstage/plugin-kubernetes-react@0.5.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/plugin-kubernetes-common@0.9.0
- @backstage/catalog-model@1.7.1
- @backstage/core-plugin-api@1.10.1
@backstage/plugin-notifications-backend@0.4.3
Patch Changes
- 97ba58f: Add support for user specific notification settings
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/plugin-auth-node@0.5.4
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-notifications-common@0.0.6
- @backstage/plugin-notifications-node@0.2.9
- @backstage/plugin-signals-node@0.1.14
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
@backstage/plugin-notifications-backend-module-email@0.3.3
Patch Changes
- d52d7f9: Support ISO and ms string forms of durations in config too
- 5d74716: Remove unused backend-common dependency
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/integration-aws-node@0.1.13
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-notifications-common@0.0.6
- @backstage/plugin-notifications-node@0.2.9
- @backstage/catalog-model@1.7.1
@backstage/plugin-notifications-common@0.0.6
Patch Changes
- 97ba58f: Add support for user specific notification settings
- Updated dependencies
- @backstage/config@1.3.0
@backstage/plugin-notifications-node@0.2.9
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- 5d74716: Remove unused backend-common dependency
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-notifications-common@0.0.6
- @backstage/plugin-signals-node@0.1.14
- @backstage/catalog-model@1.7.1
@backstage/plugin-org@0.6.32
Patch Changes
- a278fdd: Fix rendering of description in MembersListCard. Add guardrails for potential long texts to prevent it from breaking the UI.
- Updated dependencies
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-plugin-api@0.9.1
- @backstage/plugin-catalog-common@1.1.1
@backstage/plugin-org-react@0.1.31
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/catalog-model@1.7.1
- @backstage/core-plugin-api@1.10.1
@backstage/plugin-permission-backend@0.5.51
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/errors@1.2.5
- @backstage/plugin-permission-node@0.8.5
@backstage/plugin-permission-backend-module-allow-all-policy@0.2.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/plugin-permission-node@0.8.5
@backstage/plugin-permission-common@0.8.2
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/errors@1.2.5
@backstage/plugin-permission-node@0.8.5
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/errors@1.2.5
@backstage/plugin-permission-react@0.4.28
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-permission-common@0.8.2
- @backstage/core-plugin-api@1.10.1
@backstage/plugin-proxy-backend@0.5.8
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-scaffolder-backend-module-azure@0.2.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-bitbucket@0.3.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.2
Patch Changes
-
9cf827c: Fix double branch creation in
public:bitbucket{Cloud,Server}:pull-request
This resulted in the following error when using the actions:AlreadyExistsError: Failed to create branch at create-test because it already exists.
The issue was original introduced in d103a48fa306d745599dc0c793668c9e6a479d32
-
Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-bitbucket-cloud-common@0.2.25
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.2
Patch Changes
-
9cf827c: Fix double branch creation in
public:bitbucket{Cloud,Server}:pull-request
This resulted in the following error when using the actions:AlreadyExistsError: Failed to create branch at create-test because it already exists.
The issue was original introduced in d103a48fa306d745599dc0c793668c9e6a479d32
-
Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.3.3
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-defaults@0.5.3
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-gcp@0.2.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-gerrit@0.2.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-gitea@0.2.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-github@0.5.2
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-gitlab@0.6.1
Patch Changes
- cdc8b4c: Improve error messages from Gitlab
- 2dbdccb: Removed circular import
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-notifications@0.1.3
Patch Changes
- 5d74716: Remove unused backend-common dependency
- Updated dependencies
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-notifications-common@0.0.6
- @backstage/plugin-notifications-node@0.2.9
- @backstage/plugin-scaffolder-node@0.6.0
@backstage/plugin-scaffolder-backend-module-rails@0.5.2
Patch Changes
- 702f41d: Bumped dev dependencies
@types/node
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
@backstage/plugin-scaffolder-backend-module-sentry@0.2.2
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/errors@1.2.5
@backstage/plugin-scaffolder-backend-module-yeoman@0.4.3
Patch Changes
- 5d74716: Remove unused backend-common dependency
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-scaffolder-node@0.6.0
- @backstage/plugin-scaffolder-node-test-utils@0.1.15
@backstage/plugin-scaffolder-common@1.5.7
Patch Changes
- f61d4cc: Add scaffolder permission
scaffolder.template.management
for accessing the template management features - Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
@backstage/plugin-scaffolder-node-test-utils@0.1.15
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/backend-test-utils@1.1.0
- @backstage/plugin-scaffolder-node@0.6.0
@backstage/plugin-search@1.4.19
Patch Changes
- a4ccc82: Removes the card UI from the search results type filter for a cleaner UI consistent with other filters
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
- @backstage/frontend-plugin-api@0.9.1
- @backstage/version-bridge@1.0.10
- @backstage/plugin-search-common@1.2.15
- @backstage/plugin-search-react@1.8.2
@backstage/plugin-search-backend-module-catalog@0.2.5
Patch Changes
- 0b8f344: Fixed a bug where the
filter
setting of the collator was not permitted to be an array. - 1a1e2f4: Fix search collator text formatting for catalog entities without description
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-search-backend-node@1.3.5
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/plugin-catalog-common@1.1.1
- @backstage/plugin-search-common@1.2.15
@backstage/plugin-search-backend-module-elasticsearch@1.6.2
Patch Changes
- dae59c1: Updated dependency
@short.io/opensearch-mock
to^0.4.0
. - 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/integration-aws-node@0.1.13
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-search-backend-node@1.3.5
- @backstage/plugin-search-common@1.2.15
@backstage/plugin-search-backend-module-explore@0.2.5
Patch Changes
- a9a7c7c: Updated dependency
@backstage-community/plugin-explore-common
to^0.0.7
. - Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-search-backend-node@1.3.5
- @backstage/plugin-search-common@1.2.15
@backstage/plugin-search-backend-module-pg@0.5.38
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-search-backend-node@1.3.5
- @backstage/plugin-search-common@1.2.15
@backstage/plugin-search-backend-module-stack-overflow-collator@0.3.3
Patch Changes
- 5d74716: Remove unused backend-common dependency
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-search-backend-node@1.3.5
- @backstage/plugin-search-common@1.2.15
@backstage/plugin-search-backend-module-techdocs@0.3.2
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-search-backend-node@1.3.5
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
- @backstage/plugin-catalog-common@1.1.1
- @backstage/plugin-search-common@1.2.15
- @backstage/plugin-techdocs-node@1.12.13
@backstage/plugin-search-backend-node@1.3.5
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-defaults@0.5.3
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/errors@1.2.5
- @backstage/plugin-search-common@1.2.15
@backstage/plugin-search-common@1.2.15
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.2
@backstage/plugin-search-react@1.8.2
Patch Changes
- Updated dependencies
- @backstage/theme@0.6.1
- @backstage/types@1.2.0
- @backstage/core-components@0.16.0
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-plugin-api@0.9.1
- @backstage/version-bridge@1.0.10
- @backstage/plugin-search-common@1.2.15
@backstage/plugin-signals@0.0.12
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/theme@0.6.1
- @backstage/types@1.2.0
- @backstage/core-components@0.16.0
- @backstage/core-plugin-api@1.10.1
- @backstage/plugin-signals-react@0.0.7
@backstage/plugin-signals-backend@0.2.3
Patch Changes
- a1e01ff: The signals backend now supports scaled deployments where clients may be connecting to one of many signal backend instances.
- 4e58bc7: Upgrade to uuid v11 internally
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/types@1.2.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-signals-node@0.1.14
@backstage/plugin-signals-node@0.1.14
Patch Changes
- 4e58bc7: Upgrade to uuid v11 internally
- 5d74716: Remove unused backend-common dependency
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/types@1.2.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
@backstage/plugin-signals-react@0.0.7
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/core-plugin-api@1.10.1
@backstage/plugin-techdocs@1.11.1
Patch Changes
- 37a7810: Fixed an issue where
<TechDocsReaderPageContent />
would re-render infinitely under certain conditions. - e937ae7: Fix an issue with index page of documentation site being re-rendered.
- 90246a9: Fix techdocs config schema for custom elements sanitizer
- 605bdc0: Avoid page re-rendering when clicking on anchor links in the same documentation page.
- 4f0cb89: Added DomPurify sanitizer configuration for custom elements implementing RFC https://github.com/backstage/backstage/issues/26988. See https://backstage.io/docs/features/techdocs/how-to-guides#how-to-enable-custom-elements-in-techdocs for how to enable it in the configuration.
- f246178: Removed
canvas
dev dependency. - 4a2f73a: Fix an issue that caused the current documentation page to be re-rendered when navigating to another one.
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/theme@0.6.1
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/plugin-techdocs-react@1.2.10
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
- @backstage/frontend-plugin-api@0.9.1
- @backstage/integration@1.15.2
- @backstage/integration-react@1.2.1
- @backstage/plugin-auth-react@0.1.8
- @backstage/plugin-search-common@1.2.15
- @backstage/plugin-search-react@1.8.2
- @backstage/plugin-techdocs-common@0.1.0
@backstage/plugin-techdocs-addons-test-utils@1.0.41
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.25.0
- @backstage/plugin-techdocs@1.11.1
- @backstage/plugin-catalog-react@1.14.1
- @backstage/plugin-techdocs-react@1.2.10
- @backstage/core-app-api@1.15.2
- @backstage/core-plugin-api@1.10.1
- @backstage/integration-react@1.2.1
- @backstage/test-utils@1.7.1
- @backstage/plugin-search-react@1.8.2
@backstage/plugin-techdocs-backend@1.11.2
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-permission-common@0.8.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
- @backstage/plugin-catalog-common@1.1.1
- @backstage/plugin-search-backend-module-techdocs@0.3.2
- @backstage/plugin-techdocs-common@0.1.0
- @backstage/plugin-techdocs-node@1.12.13
@backstage/plugin-techdocs-module-addons-contrib@1.1.17
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.0
- @backstage/plugin-techdocs-react@1.2.10
- @backstage/core-plugin-api@1.10.1
- @backstage/integration@1.15.2
- @backstage/integration-react@1.2.1
@backstage/plugin-techdocs-node@1.12.13
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/integration-aws-node@0.1.13
- @backstage/backend-plugin-api@1.0.2
- @backstage/catalog-model@1.7.1
- @backstage/errors@1.2.5
- @backstage/integration@1.15.2
- @backstage/plugin-search-common@1.2.15
- @backstage/plugin-techdocs-common@0.1.0
@backstage/plugin-techdocs-react@1.2.10
Patch Changes
- 4a2f73a: Fix an issue that caused the current documentation page to be re-rendered when navigating to another one.
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/core-components@0.16.0
- @backstage/catalog-model@1.7.1
- @backstage/core-plugin-api@1.10.1
- @backstage/version-bridge@1.0.10
@backstage/plugin-user-settings@0.8.15
Patch Changes
- Updated dependencies
- @backstage/theme@0.6.1
- @backstage/types@1.2.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/core-components@0.16.0
- @backstage/core-app-api@1.15.2
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/errors@1.2.5
- @backstage/frontend-plugin-api@0.9.1
- @backstage/plugin-signals-react@0.0.7
- @backstage/plugin-user-settings-common@0.0.1
@backstage/plugin-user-settings-backend@0.2.27
Patch Changes
- Updated dependencies
- @backstage/config@1.3.0
- @backstage/backend-defaults@0.5.3
- @backstage/types@1.2.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-signals-node@0.1.14
- @backstage/errors@1.2.5
- @backstage/plugin-user-settings-common@0.0.1
example-app@0.2.103
Patch Changes
- Updated dependencies
- @backstage/cli@0.29.0
- @backstage/plugin-catalog@1.25.0
- @backstage/plugin-api-docs@0.12.0
- @backstage/config@1.3.0
- @backstage/theme@0.6.1
- @backstage/plugin-notifications@0.4.0
- @backstage/plugin-techdocs@1.11.1
- @backstage/plugin-search@1.4.19
- @backstage/plugin-org@0.6.32
- @backstage/plugin-scaffolder-react@1.14.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/plugin-scaffolder@1.27.0
- @backstage/plugin-catalog-import@0.12.6
- @backstage/core-components@0.16.0
- @backstage/plugin-kubernetes@0.12.0
- @backstage/plugin-home@0.8.1
- @backstage/plugin-techdocs-react@1.2.10
- @backstage/core-app-api@1.15.2
- @backstage/plugin-signals@0.0.12
- @backstage/plugin-kubernetes-cluster@0.0.18
- @backstage/app-defaults@1.5.13
- @backstage/catalog-model@1.7.1
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-app-api@0.10.1
- @backstage/integration-react@1.2.1
- @backstage/plugin-auth-react@0.1.8
- @backstage/plugin-catalog-common@1.1.1
- @backstage/plugin-catalog-graph@0.4.12
- @backstage/plugin-catalog-unprocessed-entities@0.2.10
- @backstage/plugin-devtools@0.1.20
- @backstage/plugin-permission-react@0.4.28
- @backstage/plugin-search-common@1.2.15
- @backstage/plugin-search-react@1.8.2
- @backstage/plugin-techdocs-module-addons-contrib@1.1.17
- @backstage/plugin-user-settings@0.8.15
example-app-next@0.0.17
Patch Changes
- Updated dependencies
- @backstage/cli@0.29.0
- @backstage/plugin-catalog@1.25.0
- @backstage/plugin-api-docs@0.12.0
- @backstage/config@1.3.0
- @backstage/theme@0.6.1
- @backstage/plugin-notifications@0.4.0
- @backstage/plugin-techdocs@1.11.1
- @backstage/plugin-search@1.4.19
- @backstage/plugin-org@0.6.32
- @backstage/plugin-scaffolder-react@1.14.0
- @backstage/plugin-catalog-react@1.14.1
- @backstage/plugin-scaffolder@1.27.0
- @backstage/plugin-catalog-import@0.12.6
- @backstage/core-components@0.16.0
- @backstage/plugin-kubernetes@0.12.0
- @backstage/plugin-home@0.8.1
- @backstage/plugin-techdocs-react@1.2.10
- @backstage/plugin-app-visualizer@0.1.12
- @backstage/core-app-api@1.15.2
- @backstage/frontend-defaults@0.1.2
- @backstage/plugin-signals@0.0.12
- @backstage/plugin-kubernetes-cluster@0.0.18
- @backstage/app-defaults@1.5.13
- @backstage/catalog-model@1.7.1
- @backstage/core-compat-api@0.3.2
- @backstage/core-plugin-api@1.10.1
- @backstage/frontend-app-api@0.10.1
- @backstage/frontend-plugin-api@0.9.1
- @backstage/integration-react@1.2.1
- @backstage/plugin-app@0.1.2
- @backstage/plugin-auth-react@0.1.8
- @backstage/plugin-catalog-common@1.1.1
- @backstage/plugin-catalog-graph@0.4.12
- @backstage/plugin-catalog-unprocessed-entities@0.2.10
- @backstage/plugin-permission-react@0.4.28
- @backstage/plugin-search-common@1.2.15
- @backstage/plugin-search-react@1.8.2
- @backstage/plugin-techdocs-module-addons-contrib@1.1.17
- @backstage/plugin-user-settings@0.8.15
app-next-example-plugin@0.0.17
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.0
- @backstage/frontend-plugin-api@0.9.1
example-backend@0.0.32
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.5.3
- @backstage/plugin-app-backend@0.4.0
- @backstage/plugin-search-backend-module-catalog@0.2.5
- @backstage/plugin-scaffolder-backend@1.27.0
- @backstage/plugin-auth-backend@0.24.0
- @backstage/plugin-catalog-backend@1.28.0
- @backstage/plugin-search-backend@1.7.0
- @backstage/plugin-events-backend@0.3.16
- @backstage/plugin-kubernetes-backend@0.19.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/plugin-search-backend-module-explore@0.2.5
- @backstage/plugin-catalog-backend-module-openapi@0.2.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-notifications-backend@0.4.3
- @backstage/plugin-signals-backend@0.2.3
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.4.2
- @backstage/plugin-search-backend-node@1.3.5
- @backstage/plugin-permission-common@0.8.2
- @backstage/plugin-proxy-backend@0.5.8
- @backstage/plugin-scaffolder-backend-module-notifications@0.1.3
- @backstage/plugin-auth-backend-module-guest-provider@0.2.2
- @backstage/catalog-model@1.7.1
- @backstage/plugin-auth-backend-module-github-provider@0.2.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.2
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.2
- @backstage/plugin-devtools-backend@0.4.2
- @backstage/plugin-permission-backend@0.5.51
- @backstage/plugin-permission-backend-module-allow-all-policy@0.2.2
- @backstage/plugin-permission-node@0.8.5
- @backstage/plugin-scaffolder-backend-module-github@0.5.2
- @backstage/plugin-search-backend-module-techdocs@0.3.2
- @backstage/plugin-techdocs-backend@1.11.2
example-backend-legacy@0.2.104
Patch Changes
- Updated dependencies
- @backstage/catalog-client@1.8.0
- @backstage/config@1.3.0
- @backstage/plugin-events-node@0.4.5
- @backstage/backend-defaults@0.5.3
- @backstage/plugin-app-backend@0.4.0
- @backstage/plugin-search-backend-module-catalog@0.2.5
- @backstage/plugin-scaffolder-backend@1.27.0
- @backstage/plugin-auth-backend@0.24.0
- @backstage/plugin-catalog-backend@1.28.0
- @backstage/plugin-search-backend@1.7.0
- @backstage/plugin-events-backend@0.3.16
- @backstage/plugin-scaffolder-backend-module-gitlab@0.6.1
- @backstage/plugin-kubernetes-backend@0.19.0
- @backstage/plugin-auth-node@0.5.4
- @backstage/plugin-search-backend-module-elasticsearch@1.6.2
- @backstage/plugin-search-backend-module-explore@0.2.5
- @backstage/plugin-catalog-node@1.14.0
- @backstage/backend-plugin-api@1.0.2
- @backstage/plugin-signals-backend@0.2.3
- @backstage/plugin-search-backend-module-pg@0.5.38
- @backstage/plugin-search-backend-node@1.3.5
- @backstage/plugin-permission-common@0.8.2
- @backstage/plugin-proxy-backend@0.5.8
- @backstage/plugin-signals-node@0.1.14
- @backstage/plugin-scaffolder-backend-module-rails@0.5.2
- @backstage/catalog-model@1.7.1
- @backstage/integration@1.15.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.2
- @backstage/plugin-catalog-backend-module-unprocessed@0.5.2
- @backstage/plugin-devtools-backend@0.4.2
- @backstage/plugin-permission-backend@0.5.51
- @backstage/plugin-permission-node@0.8.5
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.3.2
- @backstage/plugin-search-backend-module-techdocs@0.3.2
- @backstage/plugin-techdocs-backend@1.11.2
e2e-test@0.2.22
Patch Changes
- Updated dependencies
- @backstage/create-app@0.5.22
- @backstage/cli-common@0.1.15
- @backstage/errors@1.2.5
@internal/frontend@0.0.3
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/frontend-plugin-api@0.9.1
- @backstage/version-bridge@1.0.10
@internal/scaffolder@0.0.3
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-react@1.14.0
techdocs-cli-embedded-app@0.2.102
Patch Changes
- Updated dependencies
- @backstage/cli@0.29.0
- @backstage/plugin-catalog@1.25.0
- @backstage/config@1.3.0
- @backstage/theme@0.6.1
- @backstage/plugin-techdocs@1.11.1
- @backstage/core-components@0.16.0
- @backstage/plugin-techdocs-react@1.2.10
- @backstage/core-app-api@1.15.2
- @backstage/app-defaults@1.5.13
- @backstage/catalog-model@1.7.1
- @backstage/core-plugin-api@1.10.1
- @backstage/integration-react@1.2.1
- @backstage/test-utils@1.7.1
yarn-plugin-backstage@0.0.3
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.15
- @backstage/release-manifests@0.0.11
@internal/plugin-todo-list@1.0.33
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.0
- @backstage/core-plugin-api@1.10.1
@internal/plugin-todo-list-backend@1.0.33
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.4
- @backstage/backend-plugin-api@1.0.2
- @backstage/errors@1.2.5
@internal/plugin-todo-list-common@1.0.22
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.8.2