Release v1.34.0
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.34.0
@backstage/backend-app-api@1.1.0
Minor Changes
- ebf083d: Service factories added by feature loaders now have lower priority and will be ignored if a factory for the same service is added directly by
backend.add(serviceFactory). - 12eac85: EXPERIMENTAL: Adds a new
instanceMetadataServiceto hold information about a specific backend instance.
Patch Changes
- eef3ef1: Removed unused
expressdependencies. - ae2408b: Add a
toStringon the defaultBackendFeatureMetaimplementations - 5c9cc05: Use native fetch instead of node-fetch
- 0e9c9fa: As soon as a backend termination signal is received, call before shutting down root lifecycle hooks.
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/backend-defaults@0.6.0
Minor Changes
-
fd5d337: Added a new
backend.health.headersconfiguration that can be used to set additional headers to include in health check responses.BREAKING CONSUMERS: As part of this change the
createHealthRouterfunction exported from@backstage/backend-defaults/rootHttpRouternow requires the root config service to be passed through theconfigoption. -
3f34ea9: Throttles Bitbucket Server API calls
-
de6f280: BREAKING Upgraded @keyv/redis and keyv packages to resolve a bug related to incorrect resolution of cache keys.
This is a breaking change for clients using the
redisstore for cache withuseRedisSetsoption set to false since cache keys will be calculated differently (without the sets:namespace: prefix). For clients with default configuration (or useRedisSets set to false) the cache keys will stay the same, but since @keyv/redis library no longer supports redis sets they won't be utilised anymore.If you were using
useRedisSetsoption in configuration make sure to remove it fromapp-config.yaml:backend:
cache:
store: redis
connection: redis://user:pass@cache.example.com:6379
- useRedisSets: false -
29180ec: BREAKING PRODUCERS: The
LifecycleMiddlewareOptions.startupRequestPauseTimeouthas been removed. Use thebackend.lifecycle.startupRequestPauseTimeoutsetting in yourapp-config.yamlfile to customize how thecreateLifecycleMiddlewarefunction should behave. Also the root config service is required as an option when calling thecreateLifecycleMiddlewarefunction:- createLifecycleMiddleware({ lifecycle, startupRequestPauseTimeout })
+ createLifecycleMiddleware({ config, lifecycle }) -
277092a: Implemented
AzureBlobStorageUrlReaderto read from the url of committed location from the entity provider -
18a2c00: All middleware used by the default
coreServices.httpis now exported for use by custom implementations.
Patch Changes
- dfc8b41: Updated dependency
@opentelemetry/apito^1.9.0. - 5b1e68c: Immediately close all connections when shutting down in local development.
- 8863b38: Export
PluginTokenHandlerandpluginTokenHandlerDecoratorServiceRefto allow for custom decoration of the plugin token handler without having to re-implement the entire handler. - 29180ec: Fix server response time by moving the lifecycle startup hooks back to the plugin lifecycle service.
- 57e0b11: The user and plugin token verification in the default
AuthServiceimplementation will no longer forward verification errors to the caller, and instead log them as warnings. - 97c6837: Export
DefaultHttpAuthServiceto allow for custom token extraction logic. - e5255f1: Log request and response metadata so it can be used for filtering log messages.
The format of the request date was also changed from
clftoutc. - 57e0b11: The default
authServiceFactorynow correctly depends on the plugin scopedLoggerservices rather than the root scoped one. - fe87fbf: Add task metrics as two gauges that track the last start and end timestamps as epoch seconds.
- 1ac6b72: Support
connection.type: cloudsqlin database client for usage with@google-cloud/cloud-sql-connectorandiamauth - 0e9c9fa: Implements the
DefaultRootLifecycleService.addBeforeShutdownHookmethod, and updatesDefaultRootHttpRouterServiceandDefaultRootHealthServiceto listen to that event to stop accepting traffic and close service connections. - d0cbd82: Remove use of the
stoppablelibrary on theDefaultRootHttpRouterServiceas Node's native http server close method already drains requests. - 5c9cc05: Use native fetch instead of node-fetch
- cf627c6: Fixed an issue in the WinstonLogger where Errors thrown and given to logger.error with field values that could not be cast to a string would throw a TypeError
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/backend-app-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/cli-node@0.2.11
- @backstage/plugin-permission-node@0.8.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/backend-dev-utils@0.1.5
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/types@1.2.0
@backstage/backend-openapi-utils@0.4.0
Minor Changes
- afcebea: Fixed a Typescript error when trying to use the new OpenAPI server-side generated code.
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
@backstage/backend-plugin-api@1.1.0
Minor Changes
- 12eac85: EXPERIMENTAL: Adds a new
instanceMetadataServiceto hold information about a specific backend instance.
Patch Changes
-
eef3ef1: Removed unused
expressdependencies. -
0e9c9fa: The
RootLifecycleServicenow has a newaddBeforeShutdownHookmethod, and hooks added through this method will run immediately when a termination event is received.The backend will not proceed with the shutdown and run the
Shutdownhooks until allBeforeShutdownhooks have completed. -
Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
@backstage/backend-test-utils@1.2.0
Minor Changes
-
de6f280: BREAKING Upgraded @keyv/redis and keyv packages to resolve a bug related to incorrect resolution of cache keys.
This is a breaking change for clients using the
redisstore for cache withuseRedisSetsoption set to false since cache keys will be calculated differently (without the sets:namespace: prefix). For clients with default configuration (or useRedisSets set to false) the cache keys will stay the same, but since @keyv/redis library no longer supports redis sets they won't be utilised anymore.If you were using
useRedisSetsoption in configuration make sure to remove it fromapp-config.yaml:backend:
cache:
store: redis
connection: redis://user:pass@cache.example.com:6379
- useRedisSets: false
Patch Changes
- 0e9c9fa: Mock the new
RootLifecycleService.addBeforeShutdownHookmethod. - Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/backend-app-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/catalog-client@1.9.0
Minor Changes
- 384e494: Internal updates to generated code.
Patch Changes
- d7e7836: Fixed a bug in the
queryEntitiesmethod where errors were not being handled properly. - Updated dependencies
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
@backstage/integration@1.16.0
Minor Changes
- 277092a: Add the integration for Azure blob storage to read the credentials to access the storage account and provide the default credential provider.
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/repo-tools@0.12.0
Minor Changes
- c1eccd6: Fix invalid path and malformed flags bugs in api-reports.ts
Patch Changes
- 860e3b5: Generated OpenAPI clients now support paths with tags.
- 5f04976: Fixed a bug that caused missing code in published packages.
- 00058d0: The
generate-patchcommand will now add a single resolution entry for all versions of the patched package, rather than separate entries for each version query. - Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/cli-node@0.2.11
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/cli-common@0.1.15
@backstage/plugin-catalog@1.26.0
Minor Changes
- 25beb82: Adds an optional columns attribute to HasSubdomainsCardProps and changes its default columns
- 39f1abc: Consistent title behaviour across CatalogTable, CursorPaginatedCatalogTable, and OffsetPaginatedCatalogTable.
- 1ffb9f3: Update
CatalogTabletitle to use properly capitalized Kind facets (e.g. 'Component' instead of 'component')
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/plugin-search-react@1.8.4
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-react@0.4.29
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-catalog-backend@1.29.0
Minor Changes
- 02bd2cb: Added a new
catalog.disableRelationsCompatibilityconfiguration option that avoids JSON deserialization and serialization if possible when reading entities. This significantly reduces the memory usage of the catalog, and slightly increases performance, but it removes the backwards compatibility processing that ensures that bothentity.relation[].targetandentity.relation[].targetRefare present in returned entities. - c1307b4: Implement
/entitiesin terms ofqueryEntitiesto not run into memory and performance problems on large catalogs - 384e494: Internal updates to generated code.
- 1d0bc11: Fetch all facets in a single database query
Patch Changes
- dfc8b41: Updated dependency
@opentelemetry/apito^1.9.0. - 8013c9c: Perform the by-query count inlined with the main query
- feba9ee: Internal refactor of filter parsing logic.
- 1fdb48e: Use a faster count method on pg when computing some metrics
- e4aab10: Fix a bug where sometimes the
by-queryendpoint could return nulls for entities that were not yet stitched. - f159b25: Compute deltas more efficiently, which generally leads to less wasted processing cycles
- 0c33465: Implement
/entities/by-name/:kind/:namespace/:nameusinggetEntitiesByRefs - 56511ba: Be more aggressive in dequeueing entities for stitching
- 71152e3: Correctly report stitching queue length
- 5c9cc05: Use native fetch instead of node-fetch
- d93390d: When parsing filters, do not make redundant
anyOfandallOfnodes when there's only a single entry within them - 3ab57c6: Support changing location keys on existing entities, in delta mutations
- 24ecea8: Avoid extra ordering in by-query when the user doesn't ask for it
- 2924ffe: Compute some metrics using search table facet aggregations instead of reading the full refresh state
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-search-backend-module-catalog@0.2.6
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/backend-openapi-utils@0.4.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-catalog-backend-module-azure@0.3.0
Minor Changes
- 277092a: Added the Azure Blob Storage as catalog entity provider to import all the desired entities from storage account provided in app-config.yaml
Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-bitbucket-server@0.3.0
Minor Changes
- 3f34ea9: Throttles Bitbucket Server API calls
Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
@backstage/plugin-catalog-backend-module-gitlab@0.6.0
Minor Changes
- 99dce5c: Implemented discovery for top-level groups defined in config.group or if undefined global top-level group in Gitlab
Patch Changes
- 191e5bf:
restrictUsersToGroupshould use the entire group path when getting members - 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-ldap@0.11.0
Minor Changes
- 732700a: Updated fix for ldap entity mapping which doesn't require extra config setting of dnCaseSensitive
- 95ac4a2: Add new ldap vendor config 'LLDAP'
Patch Changes
- 5f04976: Fixed a bug that caused missing code in published packages.
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-node@1.15.0
Minor Changes
- 8edc4cd: Updated the
catalogServiceMockreturn type to match bothCatalogServiceandCatalogApi
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-catalog-react@1.15.0
Minor Changes
- 1ffb9f3: Update
EntityKindFilterto include alabelfield with the properly capitalized Kind facet string - ceaf602: Sort EntityTypePicker by default
Patch Changes
- d97a2cd: Fixed an issue causing the
EntityOwnerPickerto reset scrolling when more elements are loaded. - c36bd35: Internal refactor to break potential circular imports
- f18c67d: Fix catalog filtering to allow searching entities by display name
- 95092a6: Fixed an issue where
<CatalogFilterLayout.Filters />would re-render its children on page load for smaller screens, potentially leading to unnecessary additional backend requests. - 4a43398: Fixed an issue where the
EntityOwnerPickercomponent failed to load when themodeprop was set toowners-only. In this mode, theEntityOwnerPickerdoes not load details about the owners, such asdisplayNameortitle. To display these details, usemode=allinstead. - Updated dependencies
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/frontend-test-utils@0.2.4
- @backstage/integration-react@1.2.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-permission-react@0.4.29
@backstage/plugin-devtools-backend@0.5.0
Minor Changes
- c781a9a: BREAKING Removed support for what is known as the legacy backend, please use the New Backend System.
Patch Changes
- 1e624ca: Restrict
@types/expressversion range from*to^4.17.6. - 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-devtools-common@0.1.14
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-events-backend@0.4.0
Minor Changes
- 384e494: Internal updates to generated code.
Patch Changes
-
1577511: Allow configuring a timeout for event bus polling requests. This can be set like so in your app-config:
events:
notifyTimeoutMs: 30000 -
Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/backend-openapi-utils@0.4.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-notifications@0.5.0
Minor Changes
- fc15b77: Switched to using the new
/notificationsendpoints. Be sure to update thenotificationsplugin backend before deploying this frontend plugin change.
Patch Changes
- Updated dependencies
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-notifications-common@0.0.7
- @backstage/plugin-signals-react@0.0.8
@backstage/plugin-notifications-backend@0.5.0
Minor Changes
- fc15b77: BREAKING: Removed redundant
/healthendpoint, switch to using the built-in endpoint instead.
Patch Changes
- fc15b77: Deprecated root '/' endpoints, moving them under
/notificationsinstead. - 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/plugin-notifications-node@0.2.10
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-notifications-common@0.0.7
- @backstage/plugin-signals-node@0.1.15
@backstage/plugin-scaffolder-backend@1.28.0
Minor Changes
- c05a343: Emit scaffolder events using the optional
EventsService
Patch Changes
- dfc8b41: Updated dependency
@opentelemetry/apito^1.9.0. - 3c62a50: Experimental support for
formDecoratorsto enable secret collection and mutations to the parameters for scaffolder tasks - 6c326cf: The --no-node-snapshot check needs to be done against process.execArgv instead of process.argv
- e913fdf: Add github backend module to create-app and improve error messages
- 8f59dc5: Add fs:readdir to scaffolder startup
- 0851834: Resolved an issue where the
templateManagementPermissionwas not being exposed through the/permissions/metadataendpoint. - Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-scaffolder-backend-module-github@0.5.4
- @backstage/integration@1.16.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/plugin-scaffolder-backend-module-gitlab@0.7.0
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.4
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.5
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.4
- @backstage/plugin-scaffolder-backend-module-gerrit@0.2.4
- @backstage/plugin-scaffolder-backend-module-gitea@0.2.4
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-bitbucket-cloud-common@0.2.26
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.3
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-scaffolder-backend-module-azure@0.2.4
@backstage/plugin-scaffolder-backend-module-gitlab@0.7.0
Minor Changes
- c4ffd13: Added the autocomplete feature to GitlabRepoUrlPicker
- 32459d0: BREAKING: Upgraded the
gitbeakerlibrary to version 41. As part of this, thescopesparameter to thegitlab:projectDeployToken:createis no longer optional, so you will have to pass it a value (for example['read_repository']).
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-search-backend@1.8.0
Minor Changes
- 384e494: Internal updates to generated code.
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/backend-openapi-utils@0.4.0
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-techdocs@1.12.0
Minor Changes
- e153ca6: Add pagination support to TechDocs Index Page and make it the default
Patch Changes
- 7d8777d: Added support for the Search bar in docs residing in the entity page tab, and not only the global "/docs" page.
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/integration@1.16.0
- @backstage/plugin-search-react@1.8.4
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/plugin-auth-react@0.1.10
- @backstage/plugin-search-common@1.2.16
- @backstage/plugin-techdocs-common@0.1.0
- @backstage/plugin-techdocs-react@1.2.12
@backstage/app-defaults@1.5.15
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.15.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-permission-react@0.4.29
@backstage/backend-dynamic-feature-service@0.5.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/backend-app-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/plugin-scaffolder-node@0.6.2
- @backstage/cli-node@0.2.11
- @backstage/plugin-events-backend@0.4.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/plugin-search-backend-node@1.3.6
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-app-node@0.1.28
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
@backstage/catalog-model@1.7.2
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
@backstage/cli@0.29.4
Patch Changes
- 2b6c1ea: If the Backstage yarn plugin is installed, it will now be automatically updated as part of
versions:bump. - 7dcff85: Remove special-casing for
@typespackages when generating dependency entries during templating - 3c3a7e6: Revert
css-loader@v7bump - 0aff006: Bumped the version range for
html-webpack-pluginto fix thehtmlPluginExports.getCompilationHooks is not a functionerror when using experimental Rspack. - 583f3d4: Added
@backstage/cli/config/prettieras a replacement for@spotify/prettier-config, but with the same configuration. - 62a9062: Updated dependency
@module-federation/enhancedto^0.8.0. - 5f04976: Update
rollupto avoid issues with build output when runningbackstage-cli package build. - 5f04976: Fixed a bug that caused missing code in published packages.
- a49030a: Add support for
--output-fileoption from ESLint topackage lintandrepo lintcommands. - 96331fa: Enhance the behavior of the experimental support for module federation in the backstage CLI,
by using the
package.jsonexports (when present) to complete the list of exposed modules. This allows, for example, using exportedalphadefinitions through module federation. - 5c9cc05: Use native fetch instead of node-fetch
- dcd99d2: added experimental RSPack support for build command in the repo scope
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/release-manifests@0.0.12
- @backstage/cli-node@0.2.11
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/eslint-plugin@0.1.10
- @backstage/types@1.2.0
@backstage/cli-node@0.2.11
Patch Changes
- af665ea: add PackageManager and Lockfile interfaces for future use
- cbfc69e: Internal refactor
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/types@1.2.0
@backstage/config@1.3.1
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
@backstage/config-loader@1.9.3
Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/core-app-api@1.15.3
Patch Changes
- e5fa018: The OAuth 2 client implementations will now attempt to refresh the session when the existing session doesn't have the required scopes. The previous behavior was to only try to refresh the session of it was missing, and otherwise directly request a new session. This fixes an issue where some auth providers will not return access tokens with certain scopes unless explicitly requested, leading to an auth popup even if the underlying session already had been granted the requested scopes.
- 2830689: Decrease OAuth2 token refresh grace period
- Updated dependencies
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
@backstage/core-compat-api@0.3.4
Patch Changes
- 1f30730: Updated dependency
@oriflame/backstage-plugin-score-cardto^0.9.0. - Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-plugin-api@1.10.2
- @backstage/version-bridge@1.0.10
@backstage/core-components@0.16.2
Patch Changes
- e47be38: Added data-testid to placeholder rendered by Progress component to simplify assertions in tests
- Updated dependencies
- @backstage/theme@0.6.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/version-bridge@1.0.10
@backstage/core-plugin-api@1.10.2
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
@backstage/create-app@0.5.23
Patch Changes
- 5819f8d: Updated Dockerfile to include
backstage.jsonfile - 583f3d4: Updated the template to use
@backstage/cli/config/prettierinstead of@spotify/prettier-config. - e913fdf: Add github backend module to create-app and improve error messages
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/cli-common@0.1.15
@backstage/dev-utils@1.1.5
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-app-api@1.15.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/app-defaults@1.5.15
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
@backstage/errors@1.2.6
Patch Changes
- 1d4b5b9: Trim
error.cause.stackin addition toerror.stackwhen trimming stack traces from serialized errors. - Updated dependencies
- @backstage/types@1.2.0
@backstage/frontend-app-api@0.10.3
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.15.3
- @backstage/frontend-plugin-api@0.9.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/frontend-defaults@0.1.4
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
@backstage/frontend-defaults@0.1.4
Patch Changes
- Updated dependencies
- @backstage/plugin-app@0.1.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/frontend-app-api@0.10.3
@backstage/frontend-plugin-api@0.9.3
Patch Changes
- 5f04976: Fixed a bug that caused missing code in published packages.
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
@backstage/frontend-test-utils@0.2.4
Patch Changes
- Updated dependencies
- @backstage/plugin-app@0.1.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/config@1.3.1
- @backstage/frontend-app-api@0.10.3
- @backstage/test-utils@1.7.3
- @backstage/types@1.2.0
- @backstage/version-bridge@1.0.10
@backstage/integration-aws-node@0.1.14
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/integration-react@1.2.2
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
@backstage/release-manifests@0.0.12
Patch Changes
- 2e140dc: Switch to native fetch for loading release manifests
- b29eaea: Allow overriding the fetch function used inside getManifestByVersion
@techdocs/cli@1.8.24
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-techdocs-node@1.12.15
- @backstage/catalog-model@1.7.2
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.1
@backstage/test-utils@1.7.3
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.15.3
- @backstage/theme@0.6.3
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-permission-react@0.4.29
@backstage/theme@0.6.3
Patch Changes
- 5f04976: Fixed a bug that caused missing code in published packages.
@backstage/plugin-api-docs@0.12.2
Patch Changes
- 11babd9: Fix link styling in ProvidedApisCard component so it aligns with other card components.
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/plugin-catalog@1.26.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-permission-react@0.4.29
@backstage/plugin-app@0.1.4
Patch Changes
- e5fa018: The OAuth 2 client implementations will now attempt to refresh the session when the existing session doesn't have the required scopes. The previous behavior was to only try to refresh the session of it was missing, and otherwise directly request a new session. This fixes an issue where some auth providers will not return access tokens with certain scopes unless explicitly requested, leading to an auth popup even if the underlying session already had been granted the requested scopes.
- 5f04976: Fixed a bug that caused missing code in published packages.
- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/plugin-permission-react@0.4.29
@backstage/plugin-app-backend@0.4.3
Patch Changes
- 74c3f2a: Fixed a bug where config would not be injected on the
/and/index.htmlpaths. - 5c9cc05: Use native fetch instead of node-fetch
- d66fa80: Fix root route handling when query parameters are present
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/config-loader@1.9.3
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-app-node@0.1.28
@backstage/plugin-app-node@0.1.28
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/config-loader@1.9.3
@backstage/plugin-app-visualizer@0.1.14
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
@backstage/plugin-auth-backend@0.24.1
Patch Changes
- c907440: Improved error forwarding for OAuth refresh endpoints
- 40518ab: Fix issue with
jwksendpoint returning invalid data withfirestore - 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.3
- @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.3
- @backstage/plugin-auth-backend-module-microsoft-provider@0.2.3
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.1
- @backstage/plugin-auth-backend-module-google-provider@0.2.3
- @backstage/errors@1.2.6
- @backstage/plugin-auth-backend-module-atlassian-provider@0.3.3
- @backstage/plugin-auth-backend-module-auth0-provider@0.1.3
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.3
- @backstage/plugin-auth-backend-module-github-provider@0.2.3
- @backstage/plugin-auth-backend-module-gitlab-provider@0.2.3
- @backstage/plugin-auth-backend-module-oauth2-provider@0.3.3
- @backstage/plugin-auth-backend-module-oidc-provider@0.3.3
- @backstage/plugin-auth-backend-module-okta-provider@0.1.3
- @backstage/plugin-auth-backend-module-onelogin-provider@0.2.3
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.3
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.3
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.3
@backstage/plugin-auth-backend-module-atlassian-provider@0.3.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-auth0-provider@0.1.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-aws-alb-provider@0.3.1
Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-backend@0.24.1
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
@backstage/plugin-auth-backend-module-bitbucket-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.3
Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.3
Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
@backstage/plugin-auth-backend-module-github-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-gitlab-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-google-provider@0.2.3
Patch Changes
- 79b055a: Pass through
includeGrantedScopesin order to persist scopes across refresh calls - Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-guest-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
@backstage/plugin-auth-backend-module-microsoft-provider@0.2.3
Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-oauth2-provider@0.3.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
@backstage/plugin-auth-backend-module-oidc-provider@0.3.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend@0.24.1
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-okta-provider@0.1.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-onelogin-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
@backstage/plugin-auth-backend-module-pinniped-provider@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/config@1.3.1
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.4.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-model@1.7.2
@backstage/plugin-auth-node@0.5.5
Patch Changes
- c907440: Improved error forwarding for OAuth refresh endpoints
- 1e624ca: Restrict
@types/expressversion range from*to^4.17.6. - 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/catalog-client@1.9.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-auth-react@0.1.10
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
@backstage/plugin-bitbucket-cloud-common@0.2.26
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
@backstage/plugin-catalog-backend-module-aws@0.4.6
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/plugin-catalog-common@1.1.2
- @backstage/plugin-kubernetes-common@0.9.1
@backstage/plugin-catalog-backend-module-backstage-openapi@0.4.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/backend-openapi-utils@0.4.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.4.3
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-bitbucket-cloud-common@0.2.26
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-gcp@0.3.3
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-kubernetes-common@0.9.1
@backstage/plugin-catalog-backend-module-gerrit@0.2.5
Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/config@1.3.1
@backstage/plugin-catalog-backend-module-github@0.7.8
Patch Changes
- 468bbcc: Pass in a default schedule to the
GithubEntityProviderif none is provided - 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/catalog-client@1.9.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-github-org@0.3.5
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend-module-github@0.7.8
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
@backstage/plugin-catalog-backend-module-gitlab-org@0.2.4
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend-module-gitlab@0.6.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.6.1
Patch Changes
- dfc8b41: Updated dependency
@opentelemetry/apito^1.9.0. - cce9cae: Deprecate old-backend-system
IncrementalCatalogBuilder - fe87fbf: Add task metrics as two gauges that track the last start and end timestamps as epoch seconds.
- 5aa44d2: Wire up the events together in the new backend system
- d42ecb0: Remove backend-common package from incremental-ingestion plugin and update related code
- cbfc69e: Create a
dev/index.tsentrypoint foryarn start - 3ca5f70: Ensure that the scheduled worker task doesn't run at an unreasonably high frequency
- Updated dependencies
- @backstage/backend-defaults@0.6.0
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/plugin-events-node@0.4.6
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-catalog-backend-module-logs@0.1.5
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-catalog-backend-module-msgraph@0.6.5
Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-openapi@0.2.5
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.29.0
- @backstage/integration@1.16.0
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-puppetdb@0.2.5
Patch Changes
- 5c9cc05: Use native fetch instead of node-fetch
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-common@1.5.8
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-model@1.7.2
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-backend-module-unprocessed@0.5.3
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/plugin-catalog-unprocessed-entities-common@0.0.6
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-catalog-common@1.1.2
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.7.2
- @backstage/plugin-permission-common@0.8.3
- @backstage/plugin-search-common@1.2.16
@backstage/plugin-catalog-graph@0.4.14
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
@backstage/plugin-catalog-import@0.12.8
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/integration@1.16.0
- @backstage/catalog-client@1.9.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
- @backstage/integration-react@1.2.2
- @backstage/plugin-catalog-common@1.1.2
@backstage/plugin-catalog-unprocessed-entities@0.2.12
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
@backstage/plugin-catalog-unprocessed-entities-common@0.0.6
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-config-schema@0.1.63
Patch Changes
- c36bd35: Internal refactor to break potential circular imports
- Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
- @backstage/types@1.2.0
@backstage/plugin-devtools@0.1.22
Patch Changes
- Updated dependencies
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/errors@1.2.6
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-devtools-common@0.1.14
- @backstage/plugin-permission-react@0.4.29
@backstage/plugin-devtools-common@0.1.14
Patch Changes
- Updated dependencies
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-events-backend-module-aws-sqs@0.4.6
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
- @backstage/types@1.2.0
@backstage/plugin-events-backend-module-azure@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-events-backend-module-bitbucket-cloud@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-events-backend-module-gerrit@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-events-backend-module-github@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
@backstage/plugin-events-backend-module-gitlab@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-events-node@0.4.6
- @backstage/config@1.3.1
@backstage/plugin-events-backend-test-utils@0.1.39
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.4.6
@backstage/plugin-events-node@0.4.6
Patch Changes
-
79a06f6: Clarified purpose of subscriber ID in TSDoc for
EventsServiceSubscribeOptions. -
1577511: Allow configuring a timeout for event bus polling requests. This can be set like so in your app-config:
events:
notifyTimeoutMs: 30000 -
Updated dependencies
- @backstage/backend-plugin-api@1.1.0
- @backstage/errors@1.2.6
- @backstage/types@1.2.0
@backstage/plugin-home@0.8.3
Patch Changes
-
7248f3b: Added a new Quick Start Card to
plugin-home, which can display basic info to get users the info they need to onboard to the Catalog.import { QuickStartCard } from '@backstage/plugin-home';
<QuickStartCard
title="Onboarding to the Catalog"
modalTitle="Onboarding Quick Start"
docsLinkTitle="Learn more with getting started docs"
docsLink="https://backstage.io/docs/getting-started"
image={
<img
src={ContentImage}
alt="quick start"
width="100%"
height="100%"
/>
}
cardDescription="Backstage system model will help you create new entities"
video={
<video
controls
preload="auto"
poster={"./videoPoster.png"}
>
<source src={"OnboardingDemo.mp4"} type="video/mp4" />
</video>
}
downloadImage={
<Button
href={QuickStartPDF}
target={'_blank'}
download={true}
>
Download infographic button
</Button>
}
/>See the storybook examples
-
9951ba4: Updated dependency
@rjsf/utilsto5.23.1. Updated dependency@rjsf/coreto5.23.1. Updated dependency@rjsf/material-uito5.23.1. Updated dependency@rjsf/validator-ajv8to5.23.1. -
Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-app-api@1.15.3
- @backstage/catalog-client@1.9.0
- @backstage/plugin-home-react@0.1.21
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/theme@0.6.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/core-plugin-api@1.10.2
@backstage/plugin-home-react@0.1.21
Patch Changes
- 9951ba4: Updated dependency
@rjsf/utilsto5.23.1. Updated dependency@rjsf/coreto5.23.1. Updated dependency@rjsf/material-uito5.23.1. Updated dependency@rjsf/validator-ajv8to5.23.1. - Updated dependencies
- @backstage/core-components@0.16.2
- @backstage/core-plugin-api@1.10.2
@backstage/plugin-kubernetes@0.12.2
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-compat-api@0.3.4
- @backstage/frontend-plugin-api@0.9.3
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-kubernetes-common@0.9.1
- @backstage/plugin-kubernetes-react@0.5.2
@backstage/plugin-kubernetes-backend@0.19.1
Patch Changes
- cbfc69e: Create a
dev/index.tsentrypoint foryarn start - 928db6a: Support fetch pod metrics with custom resources
- Updated dependencies
- @backstage/plugin-auth-node@0.5.5
- @backstage/backend-plugin-api@1.1.0
- @backstage/plugin-catalog-node@1.15.0
- @backstage/catalog-client@1.9.0
- @backstage/plugin-permission-node@0.8.6
- @backstage/errors@1.2.6
- @backstage/plugin-kubernetes-node@0.2.1
- @backstage/catalog-model@1.7.2
- @backstage/config@1.3.1
- @backstage/integration-aws-node@0.1.14
- @backstage/types@1.2.0
- @backstage/plugin-kubernetes-common@0.9.1
- @backstage/plugin-permission-common@0.8.3
@backstage/plugin-kubernetes-cluster@0.0.20
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.15.0
- @backstage/core-components@0.16.2
- @backstage/catalog-model@1.7.2
- @backstage/core-plugin-api@1.10.2
- @backstage/plugin-kubernetes-common@0.9.1
- @backstage/plugin-kubernetes-react@0.5.2
@backstage/plugin-kubernetes-common@0.9.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.7.2
- @backstage/types@1.2.0
- @backstage/plugin-permission-common@0.8.3