Release v1.10.0
@backstage/plugin-scaffolder-react@1.0.0
Major Changes
- b4955ed7b9: Re-home some of the common types, components, hooks and
scaffolderApiReffor the@backstage/plugin-scaffolderto this package for easy re-use across things that want to interact with thescaffolder.
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-scaffolder-common@1.2.4
- @backstage/catalog-client@1.3.0
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.3
@backstage/app-defaults@1.1.0
Minor Changes
- bca8e8b393: Allow defining application level feature flags. See Feature Flags documentation for reference.
Patch Changes
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/core-app-api@1.4.0
- @backstage/plugin-permission-react@0.4.9
- @backstage/theme@0.2.16
@backstage/backend-app-api@0.3.0
Minor Changes
-
02b119ff93: BREAKING: The
httpRouterFactorynow accepts agetPathoption rather thanindexPlugin. To set up custom index path, configure the newrootHttpRouterFactorywith a customindexPathinstead.Added an implementation for the new
rootHttpRouterServiceRef.
Patch Changes
- ecc6bfe4c9: Use new
ServiceFactoryOrFunctiontype. - b99c030f1b: Moved over implementation of the root HTTP service from
@backstage/backend-common, and replaced themiddlewareoption with aconfigurecallback option. - 170282ece6: Fixed a bug in the default token manager factory where it created multiple incompatible instances.
- 843a0a158c: Added service factory for the new core identity service.
- 150a7dd790: An error will now be thrown if attempting to override the plugin metadata service.
- 483e907eaf: Internal updates of
createServiceFactoryfrom@backstage/backend-plugin-api. - 015a6dced6: The
createSpecializedBackendfunction will now throw an error if duplicate service implementations are provided. - e3fca10038: Tweaked the plugin logger to use
pluginas the label for the plugin ID, rather thanpluginId. - ecbec4ec4c: Internal refactor to match new options pattern in the experimental backend system.
- 51b7a7ed07: Exported the default root HTTP router implementation as
DefaultRootHttpRouter. It only implements the routing layer and needs to be exposed via an HTTP server similar to the built-in setup in therootHttpRouterFactory. - 0e63aab311: Moved over logging and configuration loading implementations from
@backstage/backend-common. There is a nowWinstonLoggerwhich implements theRootLoggerServicethrough Winston with accompanying utilities. For configuration theloadBackendConfigfunction has been moved over, but it now instead returns an object with aconfigproperty. - 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - 3b8fd4169b: Internal folder structure refactor.
- 6cfd4d7073: Updated implementations for the new
RootLifecycleService. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/backend-tasks@0.4.1
- @backstage/config@1.0.6
- @backstage/cli-common@0.1.11
- @backstage/config-loader@1.1.8
- @backstage/errors@1.1.4
- @backstage/types@1.0.2
- @backstage/plugin-auth-node@0.2.9
- @backstage/plugin-permission-node@0.7.3
@backstage/backend-common@0.18.0
Minor Changes
-
5e2cebe9a3: BREAKING: Removed deprecated
readmethod from theUrlReaderinterface. All implementations should use thereadUrlmethod instead.Migrated
UrlReaderand related types tobackend/backend-plugin-api, types remain re-exported frombackend-commonfor now.
Patch Changes
- 0e63aab311: Internal refactor of the logger and configuration loading implementations.
- 31e2309c8c: Added
legacyPluginand the lower levelmakeLegacyPluginwrappers that convert legacy plugins to the new backend system. This will be used to ease the future migration to the new backend system, but we discourage use of it for now. - 8e06f3cf00: Added
loggerToWinstonLogger, which was moved from@backstage/backend-plugin-api. - 2b1554cebf: Replaced dependencies on the
Loggertype fromwinstonwithLoggerServicefrom@backstage/backend-plugin-api. This is not a breaking change as theLoggerServiceis a subset of theLoggerinterface. - 5437fe488f: Migrated types related to
TokenManagerService,CacheServiceandDatabaseServiceinto backend-plugin-api. - 6f02d23b01: Moved
PluginEndpointDiscoverytype from backend-common to backend-plugin-api. - d592ec4f51: Updated the logger created by
createRootLoggerto make it possible to override the defaultservicelog label. - b99c030f1b: Refactor to rely on
@backstage/backend-app-apifor the implementation ofcreateServiceBuilder. - f23eef3aa2: Updated dependency
better-sqlite3to^8.0.0. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-app-api@0.3.0
- @backstage/config@1.0.6
- @backstage/cli-common@0.1.11
- @backstage/config-loader@1.1.8
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/types@1.0.2
@backstage/backend-plugin-api@0.3.0
Minor Changes
- 8e06f3cf00: Moved
loggerToWinstonLoggerto@backstage/backend-common. - ecbec4ec4c: Updated all factory function creators to accept options as a top-level callback rather than extra parameter to the main factory function.
Patch Changes
-
6cfd4d7073: Added
RootLifecycleServiceandrootLifecycleServiceRef, as well as added aloggeroption to the existingLifecycleServiceShutdownHook. -
ecc6bfe4c9: Added
ServiceFactoryOrFunctiontype, for use when either aServiceFactoryor() => ServiceFactorycan be used. -
5b7bcd3c5e: Added
createSharedEnvironmentfor creating a shared environment containing commonly used services in a split backend setup of the backend. -
02b119ff93: Added a new
rootHttpRouterServiceRefandRootHttpRouterServiceinterface. -
5e2cebe9a3: Migrate
UrlReaderinto this package to gradually remove the dependency on backend-common. -
843a0a158c: Added new core identity service.
-
5437fe488f: Migrated types related to
TokenManagerService,CacheServiceandDatabaseServiceinto backend-plugin-api. -
6f02d23b01: Moved
PluginEndpointDiscoverytype from backend-common to backend-plugin-api. -
483e907eaf: The
createServiceFactoryfunction has been updated to no longer use a duplicate callback pattern for plugin scoped services. The outer callback is now replaced by an optionalcreateRootContextmethod. This change was made in order to support TypeScript 4.9, but it also simplifies the API surface a bit, especially for plugin scoped service factories that don't need to create a root context. In addition, the factory and root context functions can now be synchronous.A factory that previously would have looked like this:
createServiceFactory({
service: coreServices.cache,
deps: {
config: coreServices.config,
plugin: coreServices.pluginMetadata,
},
async factory({ config }) {
const cacheManager = CacheManager.fromConfig(config);
return async ({ plugin }) => {
return cacheManager.forPlugin(plugin.getId());
};
},
});Now instead looks like this:
createServiceFactory({
service: coreServices.cache,
deps: {
config: coreServices.config,
plugin: coreServices.pluginMetadata,
},
async createRootContext({ config }) {
return CacheManager.fromConfig(config);
},
async factory({ plugin }, manager) {
return manager.forPlugin(plugin.getId());
},
});Although in many cases the
createRootContextisn't needed, for example:createServiceFactory({
service: coreServices.logger,
deps: {
rootLogger: coreServices.rootLogger,
plugin: coreServices.pluginMetadata,
},
factory({ rootLogger, plugin }) {
return rootLogger.child({ plugin: plugin.getId() });
},
}); -
16054afdec: Documented
coreServicesan all of its members. -
0e63aab311: Updated the
RootLoggerServiceto also have anaddRedactionsmethod. -
62b04bb865: Updates all
create*methods to simplify their type definitions and ensure they all have configuration interfaces. -
Updated dependencies
- @backstage/backend-tasks@0.4.1
- @backstage/config@1.0.6
- @backstage/types@1.0.2
- @backstage/plugin-auth-node@0.2.9
- @backstage/plugin-permission-common@0.7.3
@backstage/catalog-client@1.3.0
Minor Changes
- f75bf76330: Implemented support for the
orderdirective ongetEntities
Patch Changes
- e23f13a573: Enable the
by-refsendpoint to receivefieldsthrough the POST body as well as through query parameters. - Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/errors@1.1.4
@backstage/core-app-api@1.4.0
Minor Changes
- bca8e8b393: Allow defining application level feature flags. See Feature Flags documentation for reference.
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.3
@backstage/core-plugin-api@1.3.0
Minor Changes
- bca8e8b393: Allow defining application level feature flags. See Feature Flags documentation for reference.
Patch Changes
- Updated dependencies
- @backstage/config@1.0.6
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.3
@techdocs/cli@1.3.0
Minor Changes
- bc18c902a2: Add
--preview-app-bundle-pathand--preview-app-portoptions to theservecommand enabling previewing with apps other than the provided one
Patch Changes
- 9f2b786fc9: Provide context for logged errors.
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/config@1.0.6
- @backstage/cli-common@0.1.11
- @backstage/plugin-techdocs-node@1.4.4
@backstage/plugin-adr@0.3.0
Minor Changes
-
e4469d0ec1: The ADR plugin can now work with sites other than GitHub. Expanded the ADR backend plugin to provide endpoints to facilitate this.
BREAKING The ADR plugin now requires the
@backstage/plugin-adr-backendplugin to be installed by using thecreateRoutermethod to add into yourbackend. You read more in the install instructions
Patch Changes
- 21ffbdd5ee: Clarify that default ADR parsers support MADR specification v2.x
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/plugin-search-react@1.4.0
- @backstage/core-plugin-api@1.3.0
- @backstage/integration-react@1.1.9
- @backstage/theme@0.2.16
- @backstage/plugin-adr-common@0.2.5
- @backstage/plugin-search-common@1.2.1
@backstage/plugin-catalog-backend@1.7.0
Minor Changes
- f75bf76330: Implemented server side ordering in the entities endpoint
Patch Changes
- e23f13a573: Enable the
by-refsendpoint to receivefieldsthrough the POST body as well as through query parameters. - f23eef3aa2: Updated dependency
better-sqlite3to^8.0.0. - d136793ff0: Fixed an issue where internal references in the catalog would stick around for longer than expected, causing entities to not be deleted or orphaned as expected.
- 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/plugin-scaffolder-common@1.2.4
- @backstage/catalog-client@1.3.0
- @backstage/plugin-catalog-node@1.3.1
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.10
- @backstage/plugin-permission-common@0.7.3
- @backstage/plugin-permission-node@0.7.3
- @backstage/plugin-search-common@1.2.1
@backstage/plugin-scaffolder@1.10.0
Minor Changes
-
e4c0240445: Added
catalogFilterfield to OwnerPicker and EntityPicker components to support filtering options by any field(s) of an entity.The
allowedKindsfield has been deprecated. UsecatalogFilterinstead. This field allows users to specify a filter on the shape of EntityFilterQuery, which can be passed into the CatalogClient. See examples below:-
Get all entities of kind
Groupowner:
title: Owner
type: string
description: Owner of the component
ui:field: OwnerPicker
ui:options:
catalogFilter:
- kind: Group -
Get entities of kind
Groupand spec.typeteamowner:
title: Owner
type: string
description: Owner of the component
ui:field: OwnerPicker
ui:options:
catalogFilter:
- kind: Group
spec.type: team
-
-
b4955ed7b9: - Deprecation - Deprecated the following exports, please import them directly from
@backstage/plugin-scaffolder-reactinsteadcreateScaffolderFieldExtension
ScaffolderFieldExtensions
useTemplateSecrets
scaffolderApiRef
ScaffolderApi
ScaffolderUseTemplateSecrets
TemplateParameterSchema
CustomFieldExtensionSchema
CustomFieldValidator
FieldExtensionOptions
FieldExtensionComponentProps
FieldExtensionComponent
ListActionsResponse
LogEvent
ScaffolderDryRunOptions
ScaffolderDryRunResponse
ScaffolderGetIntegrationsListOptions
ScaffolderGetIntegrationsListResponse
ScaffolderOutputlink
ScaffolderScaffoldOptions
ScaffolderScaffoldResponse
ScaffolderStreamLogsOptions
ScaffolderTask
ScaffolderTaskOutput
ScaffolderTaskStatus-
Deprecation - Deprecated the
rootRouteRefexport, this should now be used fromscaffolderPlugin.routes.root -
The following
/alphatypes have removed from this package and moved to the@backstage/plugin-scaffolder-react/alphapackagecreateNextScaffolderFieldExtension
FormProps
NextCustomFieldValidator
NextFieldExtensionComponentProps
NextFieldExtensionOptions
-
Patch Changes
- 3c112f6967: rollback
@rjsf/validator-ajv8to@rjsf/validator-v6 - 2fadff2a25: Render the scaffolder action description using the
MarkdownContentcomponent. This will allow the page to show richer content to describe scaffolder actions. - 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
- 223e2c5f03: add
onChangehandler toSteppercomponent - 659c92a1dc: Updated dependency
use-immerto^0.8.0. - 489935d625: Show action example yaml on the scaffolder actions documentation page.
- b8269de9f1: Explicitly declaring children as optional props to facilitate react 18 changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-scaffolder-common@1.2.4
- @backstage/catalog-client@1.3.0
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/plugin-scaffolder-react@1.0.0
- @backstage/core-plugin-api@1.3.0
- @backstage/plugin-permission-react@0.4.9
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/integration-react@1.1.9
- @backstage/theme@0.2.16
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.10
@backstage/plugin-scaffolder-backend@1.10.0
Minor Changes
-
a6808b67a7: Implement
Required approving review count,Restrictions, andRequired commit signingsupport forpublish:githubaction -
04a2048fb8: Allow custom repository roles to be configured on github repos
-
c0ad7341f7: Add Scaffolder action
catalog:fetchto get entity by entity reference from catalog -
b44eb68bcb: This change adds changes to provide examples alongside scaffolder task actions.
The
createTemplateActionfunction now takes a list of examples e.g.const actionExamples = [
{
description: 'Example 1',
example: yaml.stringify({
steps: [
{
action: 'test:action',
id: 'test',
input: {
input1: 'value',
},
},
],
}),
},
];
export function createTestAction() {
return createTemplateAction({
id: 'test:action',
examples: [
{
description: 'Example 1',
examples: actionExamples
}
],
...,
});These examples can be retrieved later from the api.
curl http://localhost:7007/api/scaffolder/v2/actions[
{
"id": "test:action",
"examples": [
{
"description": "Example 1",
"example": "steps:\n - action: test:action\n id: test\n input:\n input1: value\n"
}
],
"schema": {
"input": {
"type": "object",
"properties": {
"input1": {
"title": "Input 1",
"type": "string"
}
}
}
}
}
] -
72d6b9f4e2: Added ability to override the commit message and author details for the
publish:bitbucketServeraction. -
a69664faee: Add Github repository support for squash merge commit title and message options
Patch Changes
-
2fadff2a25: Change scaffolder task actions to include markdown to demonstrate the new
ActionsPagemarkdown feature. -
ecbec4ec4c: Internal refactor to match new options pattern in the experimental backend system.
-
e4c0240445: Added
catalogFilterfield to OwnerPicker and EntityPicker components to support filtering options by any field(s) of an entity.The
allowedKindsfield has been deprecated. UsecatalogFilterinstead. This field allows users to specify a filter on the shape of EntityFilterQuery, which can be passed into the CatalogClient. See examples below:-
Get all entities of kind
Groupowner:
title: Owner
type: string
description: Owner of the component
ui:field: OwnerPicker
ui:options:
catalogFilter:
- kind: Group -
Get entities of kind
Groupand spec.typeteamowner:
title: Owner
type: string
description: Owner of the component
ui:field: OwnerPicker
ui:options:
catalogFilter:
- kind: Group
spec.type: team
-
-
8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. -
Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/plugin-scaffolder-common@1.2.4
- @backstage/catalog-client@1.3.0
- @backstage/backend-tasks@0.4.1
- @backstage/plugin-catalog-node@1.3.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/types@1.0.2
- @backstage/plugin-auth-node@0.2.9
@backstage/plugin-scaffolder-backend-module-sentry@0.1.0
Minor Changes
- 66ff367af6: Add Sentry "Create Project" Scaffolder as new package
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.10.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
@backstage/plugin-search-react@1.4.0
Minor Changes
-
6d9a93def8: Allow customizing empty state component through
noResultsComponentproperty.Example:
<SearchResult noResultsComponent={<>No results were found</>}>
{({ results }) => (
<List>
{results.map(({ type, document }) => {
switch (type) {
case 'custom-result-item':
return (
<CustomResultListItem
key={document.location}
result={document}
/>
);
default:
return (
<DefaultResultListItem
key={document.location}
result={document}
/>
);
}
})}
</List>
)}
</SearchResult>
Patch Changes
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.3
- @backstage/plugin-search-common@1.2.1
@backstage/plugin-tech-radar@0.6.0
Minor Changes
- 38fd519fc1: Add highlighting of legend item and show bubble on hover within the Tech Radar
Patch Changes
- 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/backend-defaults@0.1.5
Patch Changes
- 6cfd4d7073: Include implementations for the new
rootLifecycleServiceRef. - ecc6bfe4c9: Use new
ServiceFactoryOrFunctiontype. - 015a6dced6: Updated to make sure that service implementations replace default service implementations.
- 843a0a158c: Added factory for the new core identity service to the set of default service factories.
- 5b7bcd3c5e: Added support to supply a shared environment to
createBackend, which can be created usingcreateSharedEnvironmentfrom@backstage/backend-plugin-api. - 02b119ff93: The new root HTTP router service is now installed by default.
- Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-app-api@0.3.0
@backstage/backend-tasks@0.4.1
Patch Changes
- 3fad4ed40a: Added a new static
TaskScheduler.forPluginmethod. - b99c030f1b: Minor internal refactor to avoid import cycle issue.
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/types@1.0.2
@backstage/backend-test-utils@0.1.32
Patch Changes
- 6cfd4d7073: Include implementations for the new
rootLifecycleServiceRef. - 015a6dced6: Updated to make sure that service implementations replace default service implementations.
- a3ec2f32ea: The
startTestBackendsetup now includes default implementations for all core services. - 483e907eaf: Internal updates of
createServiceFactoryfrom@backstage/backend-plugin-api. - 51b7a7ed07: The backend started by
startTestBackendnow has default implementations of all core services. It now also returns aTestBackendinstance, which provides access to the underlyingserverthat can be used with testing libraries such assupertest. - f23eef3aa2: Updated dependency
better-sqlite3to^8.0.0. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/cli@0.22.1
- @backstage/backend-common@0.18.0
- @backstage/backend-app-api@0.3.0
- @backstage/config@1.0.6
- @backstage/types@1.0.2
- @backstage/plugin-auth-node@0.2.9
@backstage/catalog-model@1.1.5
Patch Changes
- 011bd518b7: Fixed spelling mistakes in documentation.
- Updated dependencies
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/types@1.0.2
@backstage/cli@0.22.1
Patch Changes
- db2e137744: Removed unnecessary usage of
ThemeProviderfrom theExampleComponenttest in the plugin template. - 47c10706df: Fixed an issue where the CLI would fail to function when there was a mix of workspace and non-workspace versions of the same package in
yarn.lockwhen using Yarn 3. - 2b435be4cf: Updated backend plugin ID during creation to match user-entered input.
- 4b572126f1: Add experimental environment variable to enable caching for production builds.
- 7b407b303b: Slightly improve readability of "base URL conflict" error handling code
- a62a1f9dca: The frontend serve task now filters out allowed package duplicates during its package check, just like
versions:bumpandversions:check. - d06a7890c6: Removed unused package
type-fest - 7c8a974515: The
repo test,repo lint, andrepo buildcommands will now analyzeyarn.lockfor dependency changes when searching for changed packages. This allows you to use the--since <ref>flag even if you haveyarn.lockchanges. - e1b71e142e: Workspace ranges are no longer considered invalid by version commands.
- Updated dependencies
- @backstage/config@1.0.6
- @backstage/cli-common@0.1.11
- @backstage/config-loader@1.1.8
- @backstage/errors@1.1.4
- @backstage/release-manifests@0.0.8
- @backstage/types@1.0.2
@backstage/config@1.0.6
Patch Changes
- ba2d69ee17: Adds the ability to coerce values to their boolean representatives.
Values such as
"true"1onandywill becometruewhen usinggetBooleanand the oppositesfalse. This happens particularly when such parameters are used with environmental substitution as environment variables are always strings. - Updated dependencies
- @backstage/types@1.0.2
@backstage/config-loader@1.1.8
Patch Changes
- Updated dependencies
- @backstage/config@1.0.6
- @backstage/cli-common@0.1.11
- @backstage/errors@1.1.4
- @backstage/types@1.0.2
@backstage/core-components@0.12.3
Patch Changes
- f2ea446de0: Applied fix from v1.9.1
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- f23146520e: Ensure that the "Custom User" sign-in makes use of supplied custom tokens, if any
- Updated dependencies
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
- @backstage/version-bridge@1.0.3
@backstage/create-app@0.4.36
Patch Changes
-
f834622f56: Bumped create-app version.
-
724b55689b: Avoid potential temporary directory conflict.
-
a2a70504e3: Remove deprecated
create-pluginscript from thedefault-apptemplate'spackage.json.hbs. Also, update the documentation to not mention thecreate-pluginscript and instead mention thenewscript. -
016a52c28f: Bumped the minimum version of
better-sqlite3. You can make the following change to yourpackages/backend/package.jsonto keep your instance of Backstage updated.- "better-sqlite3": "^7.5.0",
+ "better-sqlite3": "^8.0.0", -
Updated dependencies
- @backstage/cli-common@0.1.11
@backstage/dev-utils@1.0.11
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/app-defaults@1.1.0
- @backstage/core-plugin-api@1.3.0
- @backstage/core-app-api@1.4.0
- @backstage/integration-react@1.1.9
- @backstage/test-utils@1.2.4
- @backstage/theme@0.2.16
@backstage/integration@1.4.2
Patch Changes
- Updated dependencies
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
@backstage/integration-aws-node@0.1.1
Patch Changes
- 89062b8ba0: Skip STS API calls where not needed, to support Minio use cases
- Updated dependencies
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
@backstage/integration-react@1.1.9
Patch Changes
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/integration@1.4.2
- @backstage/theme@0.2.16
@backstage/repo-tools@0.1.1
Patch Changes
- c447a5221b: Use the project tsconfig in case of selection all packages
- 93cff3053e: Move some dependencies as
peerDependenciesbecause we need to always use same version as inapi-extractor - d48cf39f2a: fix glob on windows os
- 75275b0b0b: Updated dependency
@microsoft/tsdoc-configto0.16.2. - 76fc6f7ec8: Updates Api-extractor and api-documenter version
- Updated dependencies
- @backstage/cli-common@0.1.11
- @backstage/errors@1.1.4
@backstage/test-utils@1.2.4
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.3.0
- @backstage/core-app-api@1.4.0
- @backstage/plugin-permission-react@0.4.9
- @backstage/config@1.0.6
- @backstage/theme@0.2.16
- @backstage/types@1.0.2
- @backstage/plugin-permission-common@0.7.3
@backstage/plugin-adr-backend@0.2.5
Patch Changes
- aa17643a06: This plugin now exports a
createRoutermethod which usesUrlReadersto make requests to your SCM. Please make sure you read the install instructions - 21ffbdd5ee: Clarify that default ADR parsers support MADR specification v2.x
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/plugin-adr-common@0.2.5
- @backstage/plugin-search-common@1.2.1
@backstage/plugin-adr-common@0.2.5
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/integration@1.4.2
- @backstage/plugin-search-common@1.2.1
@backstage/plugin-airbrake@0.3.14
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/dev-utils@1.0.11
- @backstage/test-utils@1.2.4
- @backstage/theme@0.2.16
@backstage/plugin-airbrake-backend@0.2.13
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
@backstage/plugin-allure@0.1.30
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-analytics-module-ga@0.1.25
Patch Changes
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/theme@0.2.16
@backstage/plugin-apache-airflow@0.2.7
Patch Changes
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
@backstage/plugin-api-docs@0.8.14
Patch Changes
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/plugin-catalog@1.7.2
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-apollo-explorer@0.1.7
Patch Changes
- e8269bca15: Updated dependency
@apollo/explorerto^2.0.0. - Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-app-backend@0.3.40
Patch Changes
- b4ffa3bd91: The warning for missing app contents is now logged as an error instead, but only in production.
- ecbec4ec4c: Internal refactor to match new options pattern in the experimental backend system.
- 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
- @backstage/config-loader@1.1.8
- @backstage/types@1.0.2
@backstage/plugin-auth-backend@0.17.3
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/types@1.0.2
- @backstage/plugin-auth-node@0.2.9
@backstage/plugin-auth-node@0.2.9
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
@backstage/plugin-azure-devops@0.2.5
Patch Changes
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
- @backstage/plugin-azure-devops-common@0.3.0
@backstage/plugin-azure-devops-backend@0.3.19
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
- @backstage/plugin-azure-devops-common@0.3.0
@backstage/plugin-azure-sites@0.1.3
Patch Changes
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
- @backstage/plugin-azure-sites-common@0.1.0
@backstage/plugin-azure-sites-backend@0.1.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
- @backstage/plugin-azure-sites-common@0.1.0
@backstage/plugin-badges@0.2.38
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
@backstage/plugin-badges-backend@0.1.34
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
@backstage/plugin-bazaar@0.2.3
Patch Changes
- 0bf734dbac: Created soft cut on
ProjectCardto indicate more content. - 41d0b0a24a: Added
isBazaarAvailablehelper to be used with theEntitySwitch. - 92a33f0ae3: Updated README.md to include instructions of installing the Bazaar Backend
- 99d52523c7: Allow customisation of title and subtitle on bazaar page.
- 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/cli@0.22.1
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/plugin-catalog@1.7.2
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
@backstage/plugin-bazaar-backend@0.2.3
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/backend-test-utils@0.1.32
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/plugin-auth-node@0.2.9
@backstage/plugin-bitbucket-cloud-common@0.2.3
Patch Changes
- 0358d399ad: Updated dependency
ts-morphto^17.0.0. - Updated dependencies
- @backstage/integration@1.4.2
@backstage/plugin-bitrise@0.1.41
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-catalog@1.7.2
Patch Changes
- cebe24ef1d: Add
EntityLabelsCardto show the labels for an entity. - 5353b4df61: There is now tooltip in the entity context menu
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/plugin-search-react@1.4.0
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/integration-react@1.1.9
- @backstage/theme@0.2.16
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.10
- @backstage/plugin-search-common@1.2.1
@backstage/plugin-catalog-backend-module-aws@0.1.13
Patch Changes
- 9f2b786fc9: Provide context for logged errors.
- 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/backend-tasks@0.4.1
- @backstage/plugin-catalog-node@1.3.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/types@1.0.2
@backstage/plugin-catalog-backend-module-azure@0.1.11
Patch Changes
- 9f2b786fc9: Provide context for logged errors.
- 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/backend-tasks@0.4.1
- @backstage/plugin-catalog-node@1.3.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/types@1.0.2
@backstage/plugin-catalog-backend-module-bitbucket@0.2.7
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/plugin-bitbucket-cloud-common@0.2.3
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/types@1.0.2
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.7
Patch Changes
- 9f2b786fc9: Provide context for logged errors.
- 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/backend-tasks@0.4.1
- @backstage/plugin-catalog-node@1.3.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/plugin-bitbucket-cloud-common@0.2.3
- @backstage/config@1.0.6
- @backstage/plugin-events-node@0.2.1
- @backstage/integration@1.4.2
- @backstage/plugin-catalog-common@1.0.10
@backstage/plugin-catalog-backend-module-bitbucket-server@0.1.5
Patch Changes
- 9f2b786fc9: Provide context for logged errors.
- 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/backend-tasks@0.4.1
- @backstage/plugin-catalog-node@1.3.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
@backstage/plugin-catalog-backend-module-gerrit@0.1.8
Patch Changes
- 9f2b786fc9: Provide context for logged errors.
- 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/backend-tasks@0.4.1
- @backstage/plugin-catalog-node@1.3.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
@backstage/plugin-catalog-backend-module-github@0.2.3
Patch Changes
-
427d8f4411: Added support for event based updates in the
GithubOrgEntityProvider! Based on webhook events from GitHub the affectedUserorGroupentity will be refreshed. This includes adding new entities, refreshing existing ones, and removing obsolete ones.Please find more information at https://backstage.io/docs/integrations/github/org#installation-with-events-support
-
f8d91a8810: fixed
catalogPathoption to properly glob match on received GitHub events. -
9f2b786fc9: Provide context for logged errors.
-
8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. -
Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/backend-tasks@0.4.1
- @backstage/plugin-catalog-node@1.3.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/config@1.0.6
- @backstage/plugin-events-node@0.2.1
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.10
@backstage/plugin-catalog-backend-module-gitlab@0.1.11
Patch Changes
- 9f2b786fc9: Provide context for logged errors.
- 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/backend-tasks@0.4.1
- @backstage/plugin-catalog-node@1.3.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/types@1.0.2
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.1.1
Patch Changes
- ecbec4ec4c: Internal refactor to match new options pattern in the experimental backend system.
- 045b66ce02: Fixed issue with sometimes trying to commit an empty array of references
- 9f2b786fc9: Provide context for logged errors.
- 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/backend-test-utils@0.1.32
- @backstage/catalog-model@1.1.5
- @backstage/backend-tasks@0.4.1
- @backstage/plugin-catalog-node@1.3.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/plugin-permission-common@0.7.3
@backstage/plugin-catalog-backend-module-ldap@0.5.7
Patch Changes
- 9f2b786fc9: Provide context for logged errors.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/backend-tasks@0.4.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/types@1.0.2
@backstage/plugin-catalog-backend-module-msgraph@0.4.6
Patch Changes
- 9f2b786fc9: Provide context for logged errors.
- 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/backend-tasks@0.4.1
- @backstage/plugin-catalog-node@1.3.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/config@1.0.6
@backstage/plugin-catalog-backend-module-openapi@0.1.6
Patch Changes
- f9abdb64fc: Updated internal usage of UrlReader interface.
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-node@1.3.1
- @backstage/plugin-catalog-backend@1.7.0
- @backstage/config@1.0.6
- @backstage/integration@1.4.2
- @backstage/types@1.0.2
@backstage/plugin-catalog-common@1.0.10
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-permission-common@0.7.3
- @backstage/plugin-search-common@1.2.1
@backstage/plugin-catalog-graph@0.2.26
Patch Changes
- 99f05cbc70: The link from the
CatalogGraphCardto theCatalogGraphPageno longer includes an explicitmaxDepthparameter, letting theCatalogGraphPagechoose the initialmaxDepthinstead. - Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-catalog-graphql@0.3.17
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/config@1.0.6
- @backstage/types@1.0.2
@backstage/plugin-catalog-import@0.9.4
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/integration-react@1.1.9
- @backstage/plugin-catalog-common@1.0.10
@backstage/plugin-catalog-node@1.3.1
Patch Changes
- 483e907eaf: Internal updates of
createServiceFactoryfrom@backstage/backend-plugin-api. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/errors@1.1.4
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.10
@backstage/plugin-catalog-react@1.2.4
Patch Changes
- 37426f6f5e: Fixed bug in
EntityTagPickerthat filtered on unavailable tags for the selected kind. - 516b2039b6: Add a reusable pop over
EntityPeekAheadPopovercomponent. It shows more details about the associated entity. See the playbook here https://backstage.io/storybook/?path=/story/catalog-entitypeekaheadpopover--default - 0e33627996: Remove usage of raw span
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/plugin-permission-react@0.4.9
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/theme@0.2.16
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.3
- @backstage/plugin-catalog-common@1.0.10
- @backstage/plugin-permission-common@0.7.3
@backstage/plugin-cicd-statistics@0.1.16
Patch Changes
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-plugin-api@1.3.0
@backstage/plugin-cicd-statistics-module-gitlab@0.1.10
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/core-plugin-api@1.3.0
- @backstage/plugin-cicd-statistics@0.1.16
@backstage/plugin-circleci@0.3.14
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-cloudbuild@0.3.14
Patch Changes
- 1188407632: Fixed bug in the CloudbuildClient reRunWorkflow fetch call. The method in the fetch request was not specified and defaulted to a GET. Method is now explicitly set to POST with this change.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-code-climate@0.1.14
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-code-coverage@0.2.7
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
@backstage/plugin-code-coverage-backend@0.2.6
Patch Changes
- dcfdaeccd3:
RouterOptionsnow accepts an optionalcatalogApiargument, allowing custom catalog clients to be used. This is leveraged in the local standalone development runner to pass in a catalog client that returns fake data. - Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
@backstage/plugin-codescene@0.1.9
Patch Changes
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
@backstage/plugin-config-schema@0.1.37
Patch Changes
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
- @backstage/types@1.0.2
@backstage/plugin-cost-insights@0.12.3
Patch Changes
- 6a41175d70: Removed @backstage/test-utils dependency, since it was already in the devDependencies where it belongs. The main benefit is that this will exclude better-sqlite3 from the production build.
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/theme@0.2.16
- @backstage/plugin-cost-insights-common@0.1.1
@backstage/plugin-dynatrace@1.0.4
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-events-backend@0.2.1
Patch Changes
- 217149ae98: The default event broker will now catch and log errors thrown by the
onEventmethod of subscribers. The returned promise frompublishmethod will also not resolve until all subscribers have handled the event. - 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
- @backstage/plugin-events-node@0.2.1
@backstage/plugin-events-backend-module-aws-sqs@0.1.2
Patch Changes
- 9f2b786fc9: Provide context for logged errors.
- 8e06f3cf00: Switched imports of
loggerToWinstonLoggerto@backstage/backend-common. - Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/backend-common@0.18.0
- @backstage/backend-tasks@0.4.1
- @backstage/config@1.0.6
- @backstage/plugin-events-node@0.2.1
- @backstage/types@1.0.2
@backstage/plugin-events-backend-module-azure@0.1.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/plugin-events-node@0.2.1
@backstage/plugin-events-backend-module-bitbucket-cloud@0.1.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/plugin-events-node@0.2.1
@backstage/plugin-events-backend-module-gerrit@0.1.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/plugin-events-node@0.2.1
@backstage/plugin-events-backend-module-github@0.1.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/config@1.0.6
- @backstage/plugin-events-node@0.2.1
@backstage/plugin-events-backend-module-gitlab@0.1.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.3.0
- @backstage/config@1.0.6
- @backstage/plugin-events-node@0.2.1
@backstage/plugin-events-backend-test-utils@0.1.2
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.2.1
@backstage/plugin-events-node@0.2.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.3.0
@backstage/plugin-explore@0.3.45
Patch Changes
- 9f9d279bd1: Updated
README.mdexamples - d318d4f659: Makes the
GroupsDiagramnot grown on screen on its own. - Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/plugin-search-react@1.4.0
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-explore-react@0.0.25
- @backstage/plugin-search-common@1.2.1
@backstage/plugin-explore-backend@0.0.2
Patch Changes
- 358554ff3c: Bump
mswto^0.49.0 - 9f9d279bd1: Updated
README.mdexamples - Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.1
@backstage/plugin-explore-react@0.0.25
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.3.0
- @backstage/plugin-explore-common@0.0.1
@backstage/plugin-firehydrant@0.1.31
Patch Changes
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-fossa@0.2.46
Patch Changes
- 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
@backstage/plugin-gcalendar@0.3.10
Patch Changes
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
@backstage/plugin-gcp-projects@0.3.33
Patch Changes
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-git-release-manager@0.3.27
Patch Changes
- 8024341620: add exports to clear api-report messages
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/integration@1.4.2
- @backstage/theme@0.2.16
@backstage/plugin-github-actions@0.5.14
Patch Changes
- 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/integration@1.4.2
- @backstage/theme@0.2.16
@backstage/plugin-github-deployments@0.1.45
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/integration-react@1.1.9
- @backstage/theme@0.2.16
@backstage/plugin-github-issues@0.2.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/integration@1.4.2
- @backstage/theme@0.2.16
@backstage/plugin-github-pull-requests-board@0.1.8
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/integration@1.4.2
- @backstage/theme@0.2.16
@backstage/plugin-gitops-profiles@0.3.32
Patch Changes
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-gocd@0.1.20
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
@backstage/plugin-graphiql@0.2.46
Patch Changes
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-graphql-backend@0.1.30
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
- @backstage/plugin-catalog-graphql@0.3.17
@backstage/plugin-home@0.4.30
Patch Changes
- 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/plugin-stack-overflow@0.1.10
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/theme@0.2.16
@backstage/plugin-ilert@0.2.3
Patch Changes
- b1279d396d: fixed error on service page not showing if historical uptime was disabled on a service
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
@backstage/plugin-jenkins@0.7.13
Patch Changes
- 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
- @backstage/plugin-jenkins-common@0.1.12
@backstage/plugin-jenkins-backend@0.1.30
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/plugin-auth-node@0.2.9
- @backstage/plugin-jenkins-common@0.1.12
- @backstage/plugin-permission-common@0.7.3
@backstage/plugin-jenkins-common@0.1.12
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-common@1.0.10
- @backstage/plugin-permission-common@0.7.3
@backstage/plugin-kafka@0.3.14
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/theme@0.2.16
@backstage/plugin-kafka-backend@0.2.33
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/catalog-model@1.1.5
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
@backstage/plugin-kubernetes@0.7.7
Patch Changes
- 27a5e90e97: Small updates to some paragraph components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/theme@0.2.16
- @backstage/plugin-kubernetes-common@0.5.1
@backstage/plugin-kubernetes-backend@0.9.1
Patch Changes
- 083bf1b9fa: fixes a bug affecting clusters that have a base path in the URL. The base path was being replaced with the resource path instead of being appended
- c6f29bfcdc: Added the missing auth provider googleServiceAccount in config schema.
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/backend-test-utils@0.1.32
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/plugin-auth-node@0.2.9
- @backstage/plugin-kubernetes-common@0.5.1
@backstage/plugin-kubernetes-common@0.5.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
@backstage/plugin-lighthouse@0.3.14
Patch Changes
- 2f1b283de2: Fixed bug in Lighthouse Plugin where audit list item and create audit button navigated to a wrong URL.
- 80ce4e8c29: Small updates to some components to ensure theme typography properties are inherited correctly.
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/theme@0.2.16
@backstage/plugin-newrelic@0.3.32
Patch Changes
- Updated dependencies
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-newrelic-dashboard@0.2.7
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
@backstage/plugin-org@0.6.4
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-org-react@0.1.3
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/theme@0.2.16
@backstage/plugin-pagerduty@0.5.7
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
@backstage/plugin-periskop@0.1.12
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/core-plugin-api@1.3.0
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
@backstage/plugin-periskop-backend@0.1.11
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
@backstage/plugin-permission-backend@0.5.15
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/plugin-auth-node@0.2.9
- @backstage/plugin-permission-common@0.7.3
- @backstage/plugin-permission-node@0.7.3
@backstage/plugin-permission-common@0.7.3
Patch Changes
- Updated dependencies
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/types@1.0.2
@backstage/plugin-permission-node@0.7.3
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/plugin-auth-node@0.2.9
- @backstage/plugin-permission-common@0.7.3
@backstage/plugin-permission-react@0.4.9
Patch Changes
- 1a53a735b7: Updated dependency
swrto^2.0.0. - Updated dependencies
- @backstage/core-plugin-api@1.3.0
- @backstage/config@1.0.6
- @backstage/plugin-permission-common@0.7.3
@backstage/plugin-playlist@0.1.5
Patch Changes
- 1a53a735b7: Updated dependency
swrto^2.0.0. - Updated dependencies
- @backstage/catalog-model@1.1.5
- @backstage/plugin-catalog-react@1.2.4
- @backstage/core-components@0.12.3
- @backstage/plugin-search-react@1.4.0
- @backstage/core-plugin-api@1.3.0
- @backstage/plugin-permission-react@0.4.9
- @backstage/errors@1.1.4
- @backstage/theme@0.2.16
- @backstage/plugin-catalog-common@1.0.10
- @backstage/plugin-permission-common@0.7.3
- @backstage/plugin-playlist-common@0.1.4
@backstage/plugin-playlist-backend@0.2.3
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.0
- @backstage/backend-test-utils@0.1.32
- @backstage/catalog-model@1.1.5
- @backstage/catalog-client@1.3.0
- @backstage/config@1.0.6
- @backstage/errors@1.1.4
- @backstage/plugin-auth-node@0.2.9
- @backstage/plugin-permission-common@0.7.3
- @backstage/plugin-permission-node@0.7.3
- @backstage/plugin-playlist-common@0.1.4