Release v1.17.0
@backstage/backend-app-api@0.5.0
Minor Changes
-
b9c57a4f857e: BREAKING: Renamed
configServiceFactorytorootConfigServiceFactory. -
a6d7983f349c: BREAKING: Removed the
servicesoption fromcreateBackend. Service factories are nowBackendFeatures and should be installed withbackend.add(...)instead. The following should be migrated:const backend = createBackend({ services: [myCustomServiceFactory] });To instead pass the service factory via
backend.add(...):const backend = createBackend();
backend.add(customRootLoggerServiceFactory);
Patch Changes
- e65c4896f755: Do not throw in backend.stop, if start failed
- c7aa4ff1793c: Allow modules to register extension points.
- 57a10c6c69cc: Add validation to make sure that extension points do not cross plugin boundaries.
- cc9256a33bcc: Added new experimental
featureDiscoveryServiceFactory, available as an/alphaexport. - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/config-loader@1.4.0
- @backstage/backend-plugin-api@0.6.0
- @backstage/cli-node@0.1.3
- @backstage/plugin-auth-node@0.2.17
- @backstage/backend-tasks@0.5.5
- @backstage/plugin-permission-node@0.7.11
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/backend-defaults@0.2.0
Minor Changes
-
d008aefef808: BREAKING: Removing shared environments concept from the new experimental backend system.
-
a6d7983f349c: BREAKING: Removed the
servicesoption fromcreateBackend. Service factories are nowBackendFeatures and should be installed withbackend.add(...)instead. The following should be migrated:const backend = createBackend({ services: [myCustomServiceFactory] });To instead pass the service factory via
backend.add(...):const backend = createBackend();
backend.add(customRootLoggerServiceFactory);
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-app-api@0.5.0
- @backstage/backend-plugin-api@0.6.0
@backstage/backend-plugin-api@0.6.0
Minor Changes
- c49785f00cab: BREAKING: It is no longer possible to declare options as being required with
createServiceFactory. - 629cbd194a87: BREAKING: Renamed
coreServices.configtocoreServices.rootConfig. - 51987dbdaf87: BREAKING: Removed the ability to define options for plugins and modules. Existing options should be migrated to instead use either static configuration or extension points.
- d008aefef808: BREAKING: Removing shared environments concept from the new experimental backend system.
Patch Changes
-
c7aa4ff1793c: Allow modules to register extension points.
-
cc9256a33bcc: Added new experimental
featureDiscoveryServiceRef, available as an/alphaexport. -
a6d7983f349c: BREAKING: Removed the
servicesoption fromcreateBackend. Service factories are nowBackendFeatures and should be installed withbackend.add(...)instead. The following should be migrated:const backend = createBackend({ services: [myCustomServiceFactory] });To instead pass the service factory via
backend.add(...):const backend = createBackend();
backend.add(customRootLoggerServiceFactory); -
Updated dependencies
- @backstage/plugin-auth-node@0.2.17
- @backstage/backend-tasks@0.5.5
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-permission-common@0.7.7
@backstage/backend-test-utils@0.2.0
Minor Changes
-
b9c57a4f857e: BREAKING: Renamed
mockServices.configtomockServices.rootConfig. -
a6d7983f349c: BREAKING: Removed the
servicesoption fromcreateBackend. Service factories are nowBackendFeatures and should be installed withbackend.add(...)instead. The following should be migrated:const backend = createBackend({ services: [myCustomServiceFactory] });To instead pass the service factory via
backend.add(...):const backend = createBackend();
backend.add(customRootLoggerServiceFactory);
Patch Changes
- ae9304818136: Add needed constants and constructs to support PostgreSQL version 14 as test database
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-app-api@0.5.0
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-auth-node@0.2.17
- @backstage/config@1.0.8
- @backstage/types@1.1.0
@backstage/config-loader@1.4.0
Minor Changes
-
2f1859585998: Loading invalid TypeScript configuration schemas will now throw an error rather than silently being ignored.
In particular this includes defining any additional types other than
Configin the schema file, or use of unsupported types such asRecordorPartial. -
cd514545d1d0: Adds a new
deepVisibilityschema keyword that sets child visibility recursively to the defined value, respecting preexisting values or childdeepVisibility.Example usage:
export interface Config {
/**
* Enforces a default of `secret` instead of `backend` for this object.
* @deepVisibility secret
*/
mySecretProperty: {
type: 'object';
properties: {
secretValue: {
type: 'string';
};
verySecretProperty: {
type: 'string';
};
};
};
}Example of a schema that would not be allowed:
export interface Config {
/**
* Set the top level property to secret, enforcing a default of `secret` instead of `backend` for this object.
* @deepVisibility secret
*/
mySecretProperty: {
type: 'object';
properties: {
frontendUrl: {
/**
* We can NOT override the visibility to reveal a property to the front end.
* @visibility frontend
*/
type: 'string';
};
verySecretProperty: {
type: 'string';
};
};
};
}
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/integration@1.6.0
Minor Changes
- 443afcf7f567: Added
buildGerritGitilesArchiveUrl()to construct a Gitiles URL to download an archive. Gitiles URL that uses an authenticated prefix (/a/) can now be parsed by the integration.
Patch Changes
- Updated dependencies
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-app-node@0.1.0
Minor Changes
- 9fbe95ef6503: Added the
appplugin node library, initially providing an extension point that can be used to configure a static fallback handler.
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.0
@backstage/plugin-catalog-backend@1.12.0
Minor Changes
- b8cccd8ee858: Support configuring applicable kinds for
AnnotateScmSlugEntityProcessor - f32252cdf631: Added OpenTelemetry spans for catalog processing
- ebeb77586975: Now performs request validation based on OpenAPI schema through
@backstage/backend-openapi-utils. Error responses for invalid input, like"a"instead of a number, may have changed.
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - b8d6b22acd57: Internal refactor for load test
- Updated dependencies
- @backstage/plugin-search-backend-module-catalog@0.1.4
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/backend-openapi-utils@0.0.3
- @backstage/plugin-catalog-node@1.4.1
- @backstage/plugin-events-node@0.2.9
- @backstage/plugin-auth-node@0.2.17
- @backstage/integration@1.6.0
- @backstage/backend-tasks@0.5.5
- @backstage/plugin-scaffolder-common@1.4.0
- @backstage/plugin-permission-node@0.7.11
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-catalog-backend-module-gcp@0.1.0
Minor Changes
- 290eff6692aa: Added GCP catalog plugin with GKE provider
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-catalog-node@1.4.1
- @backstage/backend-tasks@0.5.5
- @backstage/config@1.0.8
- @backstage/plugin-kubernetes-common@0.6.5
@backstage/plugin-catalog-backend-module-unprocessed@0.2.0
Minor Changes
- 5156a94c2e2a: BREAKING: Fixing typo in exported module. You will have to rename the import to the correct spelling.
UnprocessedEntites->UnprocessedEntities
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-auth-node@0.2.17
- @backstage/catalog-model@1.4.1
@backstage/plugin-kubernetes@0.10.0
Minor Changes
-
4b6d41737aad: BREAKING: Fixed typos in exported module attributes. Many users may see no changes, but if you have customized the plugin output, you may have to rename the following:
- Component attribute:
<ResourceUtilization totalFormated={} />to<ResourceUtilization totalFormatted={} /> - Interface attribute:
DetectedError.occuranceCounttoDetectedError.occurrenceCount.
- Component attribute:
Patch Changes
- 562e34d2693f: Fix container memory limits
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog-react@1.8.1
- @backstage/core-plugin-api@1.5.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-kubernetes-common@0.6.5
@backstage/plugin-linguist-backend@0.4.0
Minor Changes
- d440f1dd0e72: Adds a processor to the linguist backend which can automatically add language tags to entities
- 0896d85d5ab5: BREAKING: Removed the alpha export plugin options from exported
linguistPlugin()(used by the new backend system) in favour of static config.
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- ca5e591cb86a: Fixed bug in LinguistBackendClient.ts file where if the linguistJsOptions is specified and sent over to the linguist-js package it would get changed (another attribute would be added) causing future entities of the batch to fail with an error
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-linguist-common@0.1.1
- @backstage/plugin-catalog-node@1.4.1
- @backstage/plugin-auth-node@0.2.17
- @backstage/backend-tasks@0.5.5
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-proxy-backend@0.3.0
Minor Changes
- 7daf65bfcfa1: Defining proxy endpoints directly under the root
proxyconfiguration key is deprecated. Endpoints should now be declared underproxy.endpointsinstead. TheskipInvalidProxiesandreviveConsumedRequestBodiescan now also be configured through static configuration.
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 4b82382ed8c2: Fixed invalid configuration schema. The configuration schema may be more strict as a result.
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/config@1.0.8
@backstage/plugin-scaffolder-backend@1.16.0
Minor Changes
- e514aac3eac0: Introduce
eachproperty on action steps, allowing them to be ran repeatedly.
Patch Changes
-
629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config -
349611126ae2: Removed the options from the alpha
scaffolderPluginexport. To extend the scaffolder plugin you instead now use the available extension points,scaffolderActionsExtensionPoint,scaffolderTaskBrokerExtensionPoint, andscaffolderTemplatingExtensionPoint. -
33c76caef72a: Added examples for the
fs:deleteandfs:renameactions -
e07a4914f621: Deprecated the following type exports, which have been moved to
@backstage/plugin-scaffolder-nodeinstead:TemplateFilterTemplateGlobalTaskStatusTaskCompletionStateSerializedTaskTaskEventTypeSerializedTaskEventTaskBrokerDispatchResultTaskBrokerDispatchOptionsTaskContextTaskBroker
-
0b1d775be05b: Adds examples to a few scaffolder actions.
-
88bc6e27a213: The
concurrentTasksLimitoption can now be configured via static configuration as well. Setting it to 0 will now also disable the task worker. -
0f873325068d: Add examples for
github:repo:createandgithub:repo:pushscaffolder actions. -
5c28ebc79fd6: Updated dependency
esbuildto^0.19.0. -
d3b31a791eb1: Deprecated
executeShellCommand,RunCommandOptions, andfetchContentsfrom@backstage/plugin-scaffolder-backend, since they are useful for Scaffolder modules (who should not be importing from the plugin package itself). You should now import these from@backstage/plugin-scaffolder-backend-nodeinstead.RunCommandOptionswas renamed in the Node package asExecuteShellCommandOptions, for consistency. -
Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-catalog-backend@1.12.0
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-scaffolder-node@0.2.0
- @backstage/plugin-catalog-node@1.4.1
- @backstage/plugin-auth-node@0.2.17
- @backstage/integration@1.6.0
- @backstage/backend-tasks@0.5.5
- @backstage/plugin-scaffolder-common@1.4.0
- @backstage/plugin-permission-node@0.7.11
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-common@0.7.7
@backstage/plugin-scaffolder-common@1.4.0
Minor Changes
- e514aac3eac0: Introduce
eachproperty on action steps, allowing them to be ran repeatedly.
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.1
- @backstage/types@1.1.0
- @backstage/plugin-permission-common@0.7.7
@backstage/plugin-scaffolder-node@0.2.0
Minor Changes
- e514aac3eac0: Introduce
eachproperty on action steps, allowing them to be ran repeatedly.
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- e07a4914f621: Added several new types that were moved from
@backstage/plugin-scaffolder-backend. - 349611126ae2: Added two new alpha extension points,
scaffolderTaskBrokerExtensionPointandscaffolderTemplatingExtensionPoint. - 0b1d775be05b: Export
TemplateExamplefrom thecreateTemplateActiontype. - d3b31a791eb1: Deprecated
executeShellCommand,RunCommandOptions, andfetchContentsfrom@backstage/plugin-scaffolder-backend, since they are useful for Scaffolder modules (who should not be importing from the plugin package itself). You should now import these from@backstage/plugin-scaffolder-backend-nodeinstead.RunCommandOptionswas renamed in the Node package asExecuteShellCommandOptions, for consistency. - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/integration@1.6.0
- @backstage/plugin-scaffolder-common@1.4.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-search-backend@1.4.0
Minor Changes
- ebeb77586975: Now performs request validation based on OpenAPI schema through
@backstage/backend-openapi-utils. Error responses for invalid input, like"a"instead of a number, may have changed.
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 12a8c94eda8d: Add package repository and homepage metadata
- 951ab6c9db58: Add missing
configSchemato package.json - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/backend-openapi-utils@0.0.3
- @backstage/plugin-search-backend-node@1.2.4
- @backstage/plugin-auth-node@0.2.17
- @backstage/plugin-permission-node@0.7.11
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-todo-backend@0.2.0
Minor Changes
- ebeb77586975: Now performs request validation based on OpenAPI schema through
@backstage/backend-openapi-utils. Error responses for invalid input, like"a"instead of a number, may have changed.
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - ad3fb5401729: Fixed a bug where filter queries from the frontend would always fail validation.
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/backend-openapi-utils@0.0.3
- @backstage/plugin-catalog-node@1.4.1
- @backstage/integration@1.6.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/app-defaults@1.4.2
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.9.1
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/theme@0.4.1
- @backstage/plugin-permission-react@0.4.14
@backstage/backend-common@0.19.2
Patch Changes
-
629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config -
443afcf7f567: To improve performance,
GerritUrlReader.readTree()now uses Gitiles to fetch an archive instead of cloning the repository. IfgitilesBaseUrlis not configured,readTreestill uses Git to clone the repository.Added
stripFirstDirectoryoption toReadTreeResponseFactory.fromTarArchive(), allowing to disable stripping first directory fortararchives. -
4b82382ed8c2: Fixed invalid configuration schema. The configuration schema may be more strict as a result.
-
Updated dependencies
- @backstage/backend-app-api@0.5.0
- @backstage/config-loader@1.4.0
- @backstage/backend-plugin-api@0.6.0
- @backstage/integration@1.6.0
- @backstage/integration-aws-node@0.1.5
- @backstage/backend-dev-utils@0.1.1
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/backend-openapi-utils@0.0.3
Patch Changes
- ebeb77586975: Add a new
createRoutermethod for generating anexpressrouter that validates against your spec. Also fixes a bug with the query parameters type resolution. - 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/errors@1.2.1
@backstage/backend-tasks@0.5.5
Patch Changes
- dfd1b6b2fc33: Make
readTaskScheduleDefinitionFromConfigproperly handle bad inputs - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/cli@0.22.10
Patch Changes
- 3f67cefb4780: Reload the frontend when app config changes
- cebbf8a27f3c: Enable to print the config schema not merged with the
--no-mergeflag - 5c28ebc79fd6: Updated dependency
esbuildto^0.19.0. - 971bdd6a4732: Bumped internal
nodemondependency. - Updated dependencies
- @backstage/config-loader@1.4.0
- @backstage/cli-node@0.1.3
- @backstage/integration@1.6.0
- @backstage/catalog-model@1.4.1
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/eslint-plugin@0.1.3
- @backstage/release-manifests@0.0.9
- @backstage/types@1.1.0
@backstage/cli-node@0.1.3
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/core-app-api@1.9.1
Patch Changes
- 9ae4e7e63836: Fixed a bug that could cause
navigateanalytics events to be misattributed to the plugin mounted on the root route (e.g. thehomeplugin at/) when the route that was navigated to wasn't associated with a routable extension. - Updated dependencies
- @backstage/core-plugin-api@1.5.3
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/version-bridge@1.0.4
@backstage/core-components@0.13.4
Patch Changes
- 3d86be999fdf: Prefer simple
theme.spacingwithout string interpolation - Updated dependencies
- @backstage/core-plugin-api@1.5.3
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/version-bridge@1.0.4
@backstage/create-app@0.5.4
Patch Changes
- b441642fbe0d: Bumped create-app version.
- 572abc7edf55: Bumped create-app version.
- 74f77f151a96: Bumped create-app version.
- 5cc0ac5ef3d1: Bump to a newer version of the
concurrentlylibrary - 46c9a798e41d: Updated the
app-config.yamltemplate to useproxy.endpoints. - 971bdd6a4732: Bumped internal
nodemondependency. - Updated dependencies
- @backstage/cli-common@0.1.12
@backstage/dev-utils@1.0.18
Patch Changes
- 254ad469f053: Removed deprecated calls to
app.getProvider()andapp.getRouter()inDevAppBuilder - Updated dependencies
- @backstage/core-app-api@1.9.1
- @backstage/integration-react@1.1.16
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog-react@1.8.1
- @backstage/app-defaults@1.4.2
- @backstage/core-plugin-api@1.5.3
- @backstage/test-utils@1.4.2
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
@backstage/integration-react@1.1.16
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/integration@1.6.0
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
@backstage/repo-tools@0.3.3
Patch Changes
- 75702e85862a: Bumped
@microsoft/api-extractordependency to^7.36.4, and@microsoft/api-documenterto^7.22.33. - 1f3337ebc707: Introducing a new, experimental command
backstage-repo-tools generate-catalog-info, which can be used to create standardizedcatalog-info.yamlfiles for each Backstage package in a Backstage monorepo. It can also be used to automatically fix existingcatalog-info.yamlfiles with the correct metadata (includingmetadata.name,metadata.title, andmetadata.descriptionintrospected from the package'spackage.json, as well asspec.ownerintrospected fromCODEOWNERS), e.g. in a post-commit hook. - ebeb77586975: Update
schema openapi generatecommand to now create a default router that can be imported and used directly. - Updated dependencies
- @backstage/cli-node@0.1.3
- @backstage/catalog-model@1.4.1
- @backstage/cli-common@0.1.12
- @backstage/errors@1.2.1
@techdocs/cli@1.4.5
Patch Changes
- 971bdd6a4732: Bumped internal
nodemondependency. - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-techdocs-node@1.7.4
- @backstage/catalog-model@1.4.1
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.8
@backstage/test-utils@1.4.2
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.9.1
- @backstage/core-plugin-api@1.5.3
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-react@0.4.14
@backstage/plugin-adr@0.6.4
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/integration-react@1.1.16
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog-react@1.8.1
- @backstage/core-plugin-api@1.5.3
- @backstage/plugin-search-react@1.6.4
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-adr-common@0.2.12
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-adr-backend@0.3.6
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/integration@1.6.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-adr-common@0.2.12
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-adr-common@0.2.12
Patch Changes
- Updated dependencies
- @backstage/integration@1.6.0
- @backstage/catalog-model@1.4.1
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-airbrake@0.3.21
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/dev-utils@1.0.18
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog-react@1.8.1
- @backstage/core-plugin-api@1.5.3
- @backstage/test-utils@1.4.2
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
@backstage/plugin-airbrake-backend@0.2.21
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/config@1.0.8
@backstage/plugin-allure@0.1.37
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog-react@1.8.1
- @backstage/core-plugin-api@1.5.3
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
@backstage/plugin-analytics-module-ga@0.1.32
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
@backstage/plugin-analytics-module-ga4@0.1.3
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
@backstage/plugin-analytics-module-newrelic-browser@0.0.1
Patch Changes
- ec7357258853: Introduced the New Relic Browser analytics module. Check out the plugins README.md for more details!
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/config@1.0.8
@backstage/plugin-apache-airflow@0.2.14
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
@backstage/plugin-api-docs@0.9.7
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog@1.12.1
- @backstage/plugin-catalog-react@1.8.1
- @backstage/core-plugin-api@1.5.3
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1