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
@backstage/plugin-apollo-explorer@0.1.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/theme@0.4.1
@backstage/plugin-app-backend@0.3.48
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - d564ad142b17: Migrated the alpha
appBackendexport to use static configuration and extension points rather than accepting options. - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/config-loader@1.4.0
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-app-node@0.1.0
- @backstage/config@1.0.8
- @backstage/types@1.1.0
@backstage/plugin-auth-backend@0.18.6
Patch Changes
- 16452cd007ae: Updated
frameHandlerto returnundefinedwhen using the redirect flow instead of returningpostMessageReponsewhich was causing errors - 9dad4b0e61bd: Updated config schema to match what was being used in code
- bb70a9c3886a: Add frontend visibility to provider objects in
authconfig. - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-auth-node@0.2.17
- @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-auth-node@0.2.17
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-azure-devops@0.3.3
Patch Changes
- 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/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-azure-devops-common@0.3.0
@backstage/plugin-azure-devops-backend@0.3.27
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-azure-devops-common@0.3.0
@backstage/plugin-azure-sites@0.1.10
Patch Changes
- 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-azure-sites-common@0.1.0
@backstage/plugin-azure-sites-backend@0.1.10
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/config@1.0.8
- @backstage/plugin-azure-sites-common@0.1.0
@backstage/plugin-badges@0.2.45
Patch Changes
- 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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-badges-backend@0.2.3
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-auth-node@0.2.17
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-bazaar@0.2.12
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/cli@0.22.10
- @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-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-bazaar-backend@0.2.11
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/plugin-auth-node@0.2.17
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-bitbucket-cloud-common@0.2.9
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/integration@1.6.0
@backstage/plugin-bitrise@0.1.48
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-catalog@1.12.1
Patch Changes
- 3d86be999fdf: Prefer simple
theme.spacingwithout string interpolation - 136cea792bd4: Fixed an issue causing
EntitySwitchto unmount its children once entity refresh was invoked - Updated dependencies
- @backstage/integration-react@1.1.16
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog-react@1.8.1
- @backstage/plugin-scaffolder-common@1.4.0
- @backstage/core-plugin-api@1.5.3
- @backstage/plugin-search-react@1.6.4
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-catalog-backend-module-aws@0.2.3
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 4b82382ed8c2: Fixed invalid configuration schema. The configuration schema may be more strict as a result.
- b4222908b0c3: Added option to configure AWS
accountIdinAwsS3EntityProvider - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-catalog-node@1.4.1
- @backstage/integration@1.6.0
- @backstage/backend-tasks@0.5.5
- @backstage/integration-aws-node@0.1.5
- @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-kubernetes-common@0.6.5
@backstage/plugin-catalog-backend-module-azure@0.1.19
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/plugin-catalog-node@1.4.1
- @backstage/integration@1.6.0
- @backstage/backend-tasks@0.5.5
- @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-catalog-backend-module-bitbucket@0.2.15
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-bitbucket-cloud-common@0.2.9
- @backstage/plugin-catalog-node@1.4.1
- @backstage/integration@1.6.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.15
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/plugin-bitbucket-cloud-common@0.2.9
- @backstage/plugin-catalog-node@1.4.1
- @backstage/plugin-events-node@0.2.9
- @backstage/integration@1.6.0
- @backstage/backend-tasks@0.5.5
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/plugin-catalog-common@1.0.15
@backstage/plugin-catalog-backend-module-bitbucket-server@0.1.13
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/plugin-catalog-node@1.4.1
- @backstage/integration@1.6.0
- @backstage/backend-tasks@0.5.5
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-catalog-backend-module-gerrit@0.1.16
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/plugin-catalog-node@1.4.1
- @backstage/integration@1.6.0
- @backstage/backend-tasks@0.5.5
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-catalog-backend-module-github@0.3.3
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 4b82382ed8c2: Fixed invalid configuration schema. The configuration schema may be more strict as a result.
- 81c231c9c9ee: Fixed a bug where the visibility filter was case sensitive and casting was inconsistent.
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-catalog-backend@1.12.0
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-catalog-node@1.4.1
- @backstage/plugin-events-node@0.2.9
- @backstage/integration@1.6.0
- @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-catalog-common@1.0.15
@backstage/plugin-catalog-backend-module-gitlab@0.2.4
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - e6c721439f37: Added option to skip forked repos in GitlabDiscoveryEntityProvider
- 4b82382ed8c2: Fixed invalid configuration schema. The configuration schema may be more strict as a result.
- 2fe1f5973ff7: Filter Gitlab archived projects through APIs
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-catalog-node@1.4.1
- @backstage/integration@1.6.0
- @backstage/backend-tasks@0.5.5
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.4.1
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - e2b6396a1274: Export new alpha
incrementalIngestionProvidersExtensionPointfor registering incremental providers, rather than the providers being passed as options to the backend module. - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-catalog-backend@1.12.0
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-catalog-node@1.4.1
- @backstage/plugin-events-node@0.2.9
- @backstage/backend-tasks@0.5.5
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-permission-common@0.7.7
@backstage/plugin-catalog-backend-module-ldap@0.5.15
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-node@1.4.1
- @backstage/backend-tasks@0.5.5
- @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-catalog-backend-module-msgraph@0.5.7
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - fb93323201bf: The alpha
catalogModuleMicrosoftGraphOrgEntityProviderexport no longer accepts options. Transformers are now instead configured via themicrosoftGraphOrgEntityProviderTransformExtensionPoint. - 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/plugin-catalog-node@1.4.1
- @backstage/backend-tasks@0.5.5
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/plugin-catalog-common@1.0.15
@backstage/plugin-catalog-backend-module-openapi@0.1.14
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-catalog-backend@1.12.0
- @backstage/plugin-catalog-node@1.4.1
- @backstage/integration@1.6.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
@backstage/plugin-catalog-backend-module-puppetdb@0.1.5
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/plugin-catalog-node@1.4.1
- @backstage/backend-tasks@0.5.5
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-catalog-graph@0.2.33
Patch Changes
- 64ee2c0c7ca5: Propagate entity spec to EntityNode so that spec info such as type can be used for graph node customization
- 62dc7a2b1ad1: Added maximum depth parameter to the catalogGraphParams in CatalogGraphCard.
- 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-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
@backstage/plugin-catalog-import@0.9.11
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.16
- @backstage/integration@1.6.0
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog-react@1.8.1
- @backstage/core-plugin-api@1.5.3
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-catalog-common@1.0.15
@backstage/plugin-catalog-node@1.4.1
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-plugin-api@0.6.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
@backstage/plugin-catalog-react@1.8.1
Patch Changes
- aa3feedce10a: Allow specifying screen size when catalog filters are hidden in drawer
- Updated dependencies
- @backstage/integration@1.6.0
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/version-bridge@1.0.4
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-react@0.4.14
@backstage/plugin-catalog-unprocessed-entities@0.1.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-cicd-statistics@0.1.23
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.8.1
- @backstage/core-plugin-api@1.5.3
- @backstage/catalog-model@1.4.1
@backstage/plugin-cicd-statistics-module-gitlab@0.1.17
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/core-plugin-api@1.5.3
- @backstage/catalog-model@1.4.1
- @backstage/plugin-cicd-statistics@0.1.23
@backstage/plugin-circleci@0.3.21
Patch Changes
- 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-cloudbuild@0.3.21
Patch Changes
- 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-code-climate@0.1.21
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-code-coverage@0.2.14
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/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-code-coverage-backend@0.2.14
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-common@0.19.2
- @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-codescene@0.1.16
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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-config-schema@0.1.44
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/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
@backstage/plugin-cost-insights@0.12.10
Patch Changes
- 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/theme@0.4.1
- @backstage/plugin-cost-insights-common@0.1.1
@backstage/plugin-devtools@0.1.3
Patch Changes
- 48b6a04ad045: Fix readme typo
- Updated dependencies
- @backstage/plugin-devtools-common@0.1.3
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-permission-react@0.4.14
@backstage/plugin-devtools-backend@0.1.3
Patch Changes
-
629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config -
12a8c94eda8d: Add package repository and homepage metadata
-
2b4f77a4e900: Add DevTools configuration to enable dependency listing to be filtered with custom prefixes. For instance, in your
app-config.yaml:devTools:
info:
packagePrefixes:
- @backstage/
- @roadiehq/backstage-
- @spotify/backstage- -
Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/config-loader@1.4.0
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-devtools-common@0.1.3
- @backstage/plugin-auth-node@0.2.17
- @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/plugin-permission-common@0.7.7
@backstage/plugin-devtools-common@0.1.3
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/types@1.1.0
- @backstage/plugin-permission-common@0.7.7
@backstage/plugin-dynatrace@7.0.1
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-entity-feedback@0.2.4
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/plugin-entity-feedback-common@0.1.2
- @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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-entity-feedback-backend@0.1.6
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-entity-feedback-common@0.1.2
- @backstage/plugin-auth-node@0.2.17
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
@backstage/plugin-entity-feedback-common@0.1.2
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
@backstage/plugin-entity-validation@0.1.6
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-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-common@1.0.15
@backstage/plugin-events-backend@0.2.9
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/plugin-events-node@0.2.9
- @backstage/config@1.0.8
@backstage/plugin-events-backend-module-aws-sqs@0.2.3
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 12a8c94eda8d: Add package repository and homepage metadata
- 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/plugin-events-node@0.2.9
- @backstage/backend-tasks@0.5.5
- @backstage/config@1.0.8
- @backstage/types@1.1.0
@backstage/plugin-events-backend-module-azure@0.1.10
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-events-node@0.2.9
@backstage/plugin-events-backend-module-bitbucket-cloud@0.1.10
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-events-node@0.2.9
@backstage/plugin-events-backend-module-gerrit@0.1.10
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-events-node@0.2.9
@backstage/plugin-events-backend-module-github@0.1.10
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-events-node@0.2.9
- @backstage/config@1.0.8
@backstage/plugin-events-backend-module-gitlab@0.1.10
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-events-node@0.2.9
- @backstage/config@1.0.8
@backstage/plugin-events-backend-test-utils@0.1.10
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/plugin-events-node@0.2.9
@backstage/plugin-events-node@0.2.9
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-plugin-api@0.6.0
@backstage/plugin-explore@0.4.7
Patch Changes
- 41a26248c91c: Support
material-uioverrides in plugin-explore components - 83467b0534ee: Don't put "?" in URL if no query parameters.
- Updated dependencies
- @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/plugin-explore-react@0.0.30
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-explore-backend@0.0.10
Patch Changes
- eda2a699f40d: Moved the config example from the "Tools as Code" section to the "Tools as Config" section of the README
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/plugin-search-backend-module-explore@0.1.4
- @backstage/backend-common@0.19.2
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-firehydrant@0.2.5
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-fossa@0.2.53
Patch Changes
- 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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-gcalendar@0.3.17
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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-gcp-projects@0.3.40
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/theme@0.4.1
@backstage/plugin-git-release-manager@0.3.34
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/theme@0.4.1
@backstage/plugin-github-actions@0.6.2
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.16
- @backstage/integration@1.6.0
- @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-github-deployments@0.1.52
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/integration-react@1.1.16
- @backstage/integration@1.6.0
- @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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-github-issues@0.2.10
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/integration@1.6.0
- @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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-github-pull-requests-board@0.1.15
Patch Changes
- Updated dependencies
- @backstage/integration@1.6.0
- @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-gitops-profiles@0.3.39
Patch Changes
- 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-gocd@0.1.27
Patch Changes
- 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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-graphiql@0.2.53
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/theme@0.4.1
@backstage/plugin-graphql-backend@0.1.38
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/config@1.0.8
- @backstage/plugin-catalog-graphql@0.3.22
@backstage/plugin-graphql-voyager@0.1.6
Patch Changes
- bb1e1c2b26cc: Fix typo in install instructions.
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/theme@0.4.1
@backstage/plugin-home@0.5.5
Patch Changes
- a559ff68de7e: Now, user can provide a language (optional) as input to receive a greeting in that specific language. Example:
<WelcomeTitle language={['English', 'Spanish']} /> - 6743d3917a52: Make sure the widget name is never empty in the
AddWidgetDialog. If the title was set to "", the entry would contain an empty string. Use the name as a fallback - Updated dependencies
- @backstage/plugin-home-react@0.1.2
- @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/theme@0.4.1
@backstage/plugin-home-react@0.1.2
Patch Changes
- bf67dce73174: Make
titleoptional when defining thecreateCardExtension - Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
@backstage/plugin-ilert@0.2.10
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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-jenkins@0.8.3
Patch Changes
- Updated dependencies
- @backstage/plugin-jenkins-common@0.1.18
- @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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-jenkins-backend@0.2.3
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- 4b82382ed8c2: Fixed invalid configuration schema. The configuration schema may be more strict as a result.
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-jenkins-common@0.1.18
- @backstage/plugin-auth-node@0.2.17
- @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/plugin-permission-common@0.7.7
@backstage/plugin-jenkins-common@0.1.18
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-common@0.7.7
@backstage/plugin-kafka@0.3.21
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/config@1.0.8
- @backstage/theme@0.4.1
@backstage/plugin-kafka-backend@0.2.41
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-kubernetes-backend@0.11.3
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - bbf4e9c894b5: Fixed a bug where the proxy was not rewriting WebSocket request paths properly.
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-catalog-node@1.4.1
- @backstage/plugin-auth-node@0.2.17
- @backstage/plugin-permission-node@0.7.11
- @backstage/integration-aws-node@0.1.5
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-kubernetes-common@0.6.5
- @backstage/plugin-permission-common@0.7.7
@backstage/plugin-lighthouse@0.4.6
Patch Changes
- 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/theme@0.4.1
- @backstage/plugin-lighthouse-common@0.1.2
@backstage/plugin-lighthouse-backend@0.2.4
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/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-lighthouse-common@0.1.2
@backstage/plugin-linguist@0.1.6
Patch Changes
- Updated dependencies
- @backstage/plugin-linguist-common@0.1.1
- @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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-linguist-common@0.1.1
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- d440f1dd0e72: Exported new LanguageType type alias
@backstage/plugin-microsoft-calendar@0.1.6
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- eea2922e749a: README update - example of apiRef definition and fixed component name
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-newrelic@0.3.39
Patch Changes
- 2167b7eab09b: The newrelic plugin now supports pagination when retrieving results from newrelic. It will no longer truncate results. To see all applications, the link header will need to be allowed through the proxy (see the newrelic plugin readme).
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/theme@0.4.1
@backstage/plugin-newrelic-dashboard@0.2.14
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/errors@1.2.1
@backstage/plugin-nomad@0.1.2
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/config@1.0.8
- @backstage/theme@0.4.1
@backstage/plugin-nomad-backend@0.1.2
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-octopus-deploy@0.2.3
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-org@0.6.11
Patch Changes
- 50331203e2a2: Fixed bug in MembersListCard component where the url for the members was static which was breaking the component when catalog route was changed
- 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-org-react@0.1.10
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-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
@backstage/plugin-pagerduty@0.6.2
Patch Changes
- 5003fc966741: Add new
disableChangeEventsprop toEntityPagerDutyCardto hide the Change Events tab and disable fetching of change events for the PagerDuty service. - Updated dependencies
- @backstage/plugin-home-react@0.1.2
- @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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-periskop@0.1.19
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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-periskop-backend@0.1.19
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-permission-backend@0.5.23
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 12a8c94eda8d: Add package repository and homepage metadata
- 0d6ddc62d8da: Refactor backend plugin creation parameter from callback to object.
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @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/plugin-permission-common@0.7.7
@backstage/plugin-permission-node@0.7.11
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-auth-node@0.2.17
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-permission-common@0.7.7
@backstage/plugin-playlist@0.1.13
Patch Changes
- d1e0588324d1: Displaying an alert popup each time the Playlist is created or deleted
- 12a8c94eda8d: Add package repository and homepage metadata
- 8a997547f02a: Adding alert popup whenever user delete the entities from playlist entity table
- Updated dependencies
- @backstage/plugin-playlist-common@0.1.9
- @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/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-react@0.4.14
@backstage/plugin-playlist-backend@0.3.4
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-playlist-common@0.1.9
- @backstage/plugin-auth-node@0.2.17
- @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/plugin-permission-common@0.7.7
@backstage/plugin-playlist-common@0.1.9
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/plugin-permission-common@0.7.7
@backstage/plugin-puppetdb@0.1.4
Patch Changes
- 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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-rollbar@0.4.21
Patch Changes
- 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-rollbar-backend@0.1.45
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/config@1.0.8
@backstage/plugin-scaffolder@1.14.2
Patch Changes
- 8a0490fb669e: Fix the get entities query in the
MyGroupsPickerto query thekind=Groupentities. - Updated dependencies
- @backstage/integration-react@1.1.16
- @backstage/integration@1.6.0
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog-react@1.8.1
- @backstage/plugin-scaffolder-common@1.4.0
- @backstage/plugin-scaffolder-react@1.5.2
- @backstage/core-plugin-api@1.5.3
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-react@0.4.14
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.1
Patch Changes
- 0a9b3b14e904: Added example for the
confluence:transform:markdownthat will show in the installed actions list - 12a8c94eda8d: Add package repository and homepage metadata
- 0d347efc8f18: Use
fetchContentsdirectly instead of afetchPlainAction - c186c631b429: Import helpers from the node package instead of the backend package
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-scaffolder-node@0.2.0
- @backstage/integration@1.6.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.24
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- c186c631b429: Import helpers from the node package instead of the backend package
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-scaffolder-node@0.2.0
- @backstage/integration@1.6.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-scaffolder-backend-module-gitlab@0.2.3
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.2.0
- @backstage/integration@1.6.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-scaffolder-backend-module-rails@0.4.17
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- c186c631b429: Import helpers from the node package instead of the backend package
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-scaffolder-node@0.2.0
- @backstage/integration@1.6.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-scaffolder-backend-module-sentry@0.1.8
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.2.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-scaffolder-backend-module-yeoman@0.2.21
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.2.0
- @backstage/config@1.0.8
- @backstage/types@1.1.0
@backstage/plugin-scaffolder-react@1.5.2
Patch Changes
- ba9ee98a37bd: Fixed bug in Workflow component by passing a prop
templateNamedown to Stepper component. - Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog-react@1.8.1
- @backstage/plugin-scaffolder-common@1.4.0
- @backstage/core-plugin-api@1.5.3
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/version-bridge@1.0.4
@backstage/plugin-search@1.3.4
Patch Changes
- Updated dependencies
- @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/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/version-bridge@1.0.4
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-backend-module-catalog@0.1.4
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 29f77f923c71: Ensure that all services are dependency injected into the module instead of taken from options
- 12a8c94eda8d: Add package repository and homepage metadata
- ec1032129e47: Breaking change in the alpha export
searchModuleCatalogCollator: Moved collator settings from module options into app-config. You are now expected to set up the catalog collator under thesearch.collators.catalogconfiguration key. There is also a newcatalogCollatorExtensionPointextension point for the module, wherein you can set custom transformers. - d4f19a16bd52: Add User Entity email to the search index so that users can be found by their email.
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-search-backend-node@1.2.4
- @backstage/plugin-catalog-node@1.4.1
- @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/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-backend-module-elasticsearch@1.3.3
Patch Changes
-
629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config -
12a8c94eda8d: Add package repository and homepage metadata
-
631eb3816b48: Index templates can now be configured through configuration under the
search.elasticsearch.indexTemplates. In addition, theElasticSearchSearchEngine.fromConfignow also accepts aLoggerServiceas theloggeroption as well as a newtranslatoroption.The alpha
searchModuleElasticsearchEngineexport no longer accepts options and a new alphaelasticsearchTranslatorExtensionPointexport has been added which lets you customize the query translator. -
Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-search-backend-node@1.2.4
- @backstage/integration-aws-node@0.1.5
- @backstage/config@1.0.8
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-backend-module-explore@0.1.4
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 29f77f923c71: Ensure that all services are dependency injected into the module instead of taken from options
- 12a8c94eda8d: Add package repository and homepage metadata
- 6694e79ab396: Breaking change for the alpha export moved
schedulefrom module options into app-config for the new backend system. You can now pass in aTaskScheduleDefinitionConfigthrough thesearch.collators.explore.scheduleconfiguration key. - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-search-backend-node@1.2.4
- @backstage/backend-tasks@0.5.5
- @backstage/config@1.0.8
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-backend-module-pg@0.5.9
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/plugin-search-backend-node@1.2.4
- @backstage/config@1.0.8
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-backend-module-techdocs@0.1.4
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - 29f77f923c71: Ensure that all services are dependency injected into the module instead of taken from options
- 12a8c94eda8d: Add package repository and homepage metadata
- 6694e79ab396: BREAKING: Moved
schedule&collatorssettings from module options into app-config for the new backend system. You can now pass in aTaskScheduleDefinitionConfigthrough thesearch.collators.techdocs.scheduleconfiguration key & configure theTechDocsCollatorFactorywith the keysearch.collators.techdocs. - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-search-backend-node@1.2.4
- @backstage/plugin-catalog-node@1.4.1
- @backstage/backend-tasks@0.5.5
- @backstage/plugin-techdocs-node@1.7.4
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-backend-node@1.2.4
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- e3e9bc10298b: Fix Lunr search engine highlight by ignoring invalid metadata positions.
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/backend-tasks@0.5.5
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-react@1.6.4
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/version-bridge@1.0.4
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-sentry@0.5.6
Patch Changes
- 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-shortcuts@0.3.13
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- ee52a48b63d5: Limit the use of the duplicate shortcut name when adding a shortcut
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
@backstage/plugin-sonarqube@0.7.2
Patch Changes
- b2ccddefbdc6: Remove sonarQube card disable class
- 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-sonarqube-react@0.1.7
@backstage/plugin-sonarqube-backend@0.2.2
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- a24d9df8757c: Added optional
externalBaseUrlconfig for setting a different frontend URL - Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-splunk-on-call@0.4.10
Patch Changes
- 3d86be999fdf: Prefer simple
theme.spacingwithout string interpolation - 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-stack-overflow@0.1.19
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/plugin-home-react@0.1.2
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/plugin-search-react@1.6.4
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-stack-overflow-backend@0.2.4
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/config@1.0.8
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-stackstorm@0.1.5
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-tech-insights@0.3.13
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/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-tech-insights-common@0.2.11
@backstage/plugin-tech-insights-backend@0.5.14
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-tasks@0.5.5
- @backstage/plugin-tech-insights-node@0.4.6
- @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-tech-insights-common@0.2.11
@backstage/plugin-tech-insights-backend-module-jsonfc@0.1.32
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/plugin-tech-insights-node@0.4.6
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-tech-insights-common@0.2.11
@backstage/plugin-tech-insights-node@0.4.6
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-tasks@0.5.5
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-tech-insights-common@0.2.11
@backstage/plugin-tech-radar@0.6.7
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/theme@0.4.1
@backstage/plugin-techdocs@1.6.6
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.16
- @backstage/integration@1.6.0
- @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/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-techdocs-react@1.1.9
@backstage/plugin-techdocs-addons-test-utils@1.0.17
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.9.1
- @backstage/integration-react@1.1.16
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog@1.12.1
- @backstage/core-plugin-api@1.5.3
- @backstage/test-utils@1.4.2
- @backstage/plugin-search-react@1.6.4
- @backstage/plugin-techdocs@1.6.6
- @backstage/theme@0.4.1
- @backstage/plugin-techdocs-react@1.1.9
@backstage/plugin-techdocs-backend@1.6.5
Patch Changes
- 629cbd194a87: Use
coreServices.rootConfiginstead ofcoreService.config - Updated dependencies
- @backstage/plugin-search-backend-module-techdocs@0.1.4
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/integration@1.6.0
- @backstage/plugin-techdocs-node@1.7.4
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-techdocs-module-addons-contrib@1.0.16
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.16
- @backstage/integration@1.6.0
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/theme@0.4.1
- @backstage/plugin-techdocs-react@1.1.9
@backstage/plugin-techdocs-node@1.7.4
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/integration@1.6.0
- @backstage/integration-aws-node@0.1.5
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-techdocs-react@1.1.9
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/version-bridge@1.0.4
@backstage/plugin-todo@0.2.23
Patch Changes
- 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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-user-settings@0.7.6
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.9.1
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog-react@1.8.1
- @backstage/core-plugin-api@1.5.3
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
@backstage/plugin-user-settings-backend@0.1.12
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-auth-node@0.2.17
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-vault@0.1.15
Patch Changes
- 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/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-vault-backend@0.3.4
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-tasks@0.5.5
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-xcmetrics@0.2.41
Patch Changes
- 12a8c94eda8d: Add package repository and homepage metadata
- 3d86be999fdf: Prefer simple
theme.spacingwithout string interpolation - Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
example-app@0.2.86
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.9.1
- @backstage/plugin-catalog-graph@0.2.33
- @backstage/plugin-playlist@0.1.13
- @backstage/plugin-pagerduty@0.6.2
- @backstage/plugin-scaffolder@1.14.2
- @backstage/plugin-explore@0.4.7
- @backstage/plugin-org@0.6.11
- @backstage/integration-react@1.1.16
- @backstage/plugin-microsoft-calendar@0.1.6
- @backstage/plugin-newrelic-dashboard@0.2.14
- @backstage/plugin-entity-feedback@0.2.4
- @backstage/plugin-linguist-common@0.1.1
- @backstage/plugin-apache-airflow@0.2.14
- @backstage/plugin-octopus-deploy@0.2.3
- @backstage/plugin-stack-overflow@0.1.19
- @backstage/plugin-code-coverage@0.2.14
- @backstage/plugin-tech-insights@0.3.13
- @backstage/plugin-dynatrace@7.0.1
- @backstage/plugin-gcalendar@0.3.17
- @backstage/plugin-shortcuts@0.3.13
- @backstage/plugin-airbrake@0.3.21
- @backstage/plugin-kafka@0.3.21
- @backstage/plugin-nomad@0.1.2
- @backstage/plugin-adr@0.6.4
- @backstage/plugin-newrelic@0.3.39
- @backstage/cli@0.22.10
- @backstage/plugin-kubernetes@0.10.0
- @backstage/core-components@0.13.4
- @backstage/plugin-home@0.5.5
- @backstage/plugin-catalog-react@1.8.1
- @backstage/plugin-scaffolder-react@1.5.2
- @backstage/plugin-devtools@0.1.3
- @backstage/app-defaults@1.4.2
- @backstage/core-plugin-api@1.5.3
- @backstage/plugin-api-docs@0.9.7
- @backstage/plugin-azure-devops@0.3.3
- @backstage/plugin-azure-sites@0.1.10
- @backstage/plugin-badges@0.2.45
- @backstage/plugin-catalog-import@0.9.11
- @backstage/plugin-catalog-unprocessed-entities@0.1.2
- @backstage/plugin-circleci@0.3.21
- @backstage/plugin-cloudbuild@0.3.21
- @backstage/plugin-cost-insights@0.12.10
- @backstage/plugin-gcp-projects@0.3.40
- @backstage/plugin-github-actions@0.6.2
- @backstage/plugin-gocd@0.1.27
- @backstage/plugin-graphiql@0.2.53
- @backstage/plugin-jenkins@0.8.3
- @backstage/plugin-lighthouse@0.4.6
- @backstage/plugin-linguist@0.1.6
- @backstage/plugin-puppetdb@0.1.4
- @backstage/plugin-rollbar@0.4.21
- @backstage/plugin-search@1.3.4
- @backstage/plugin-search-react@1.6.4
- @backstage/plugin-sentry@0.5.6
- @backstage/plugin-stackstorm@0.1.5
- @backstage/plugin-tech-radar@0.6.7
- @backstage/plugin-techdocs@1.6.6
- @backstage/plugin-techdocs-module-addons-contrib@1.0.16
- @backstage/plugin-todo@0.2.23
- @backstage/plugin-user-settings@0.7.6
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-react@0.4.14
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-techdocs-react@1.1.9
- @internal/plugin-catalog-customized@0.0.13
example-backend@0.2.86
Patch Changes
- Updated dependencies
- @backstage/plugin-search-backend-module-elasticsearch@1.3.3
- @backstage/plugin-search-backend-module-pg@0.5.9
- @backstage/plugin-azure-devops-backend@0.3.27
- @backstage/plugin-kubernetes-backend@0.11.3
- @backstage/plugin-lighthouse-backend@0.2.4
- @backstage/plugin-permission-backend@0.5.23
- @backstage/plugin-scaffolder-backend@1.16.0
- @backstage/plugin-devtools-backend@0.1.3
- @backstage/plugin-techdocs-backend@1.6.5
- @backstage/backend-common@0.19.2
- @backstage/plugin-catalog-backend@1.12.0
- @backstage/plugin-badges-backend@0.2.3
- @backstage/plugin-events-backend@0.2.9
- @backstage/plugin-search-backend@1.4.0
- @backstage/plugin-kafka-backend@0.2.41
- @backstage/plugin-proxy-backend@0.3.0
- @backstage/plugin-todo-backend@0.2.0
- @backstage/plugin-app-backend@0.3.48
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.1
- @backstage/plugin-auth-backend@0.18.6
- @backstage/plugin-explore-backend@0.0.10
- @backstage/plugin-catalog-backend-module-unprocessed@0.2.0
- @backstage/plugin-scaffolder-backend-module-rails@0.4.17
- @backstage/plugin-entity-feedback-backend@0.1.6
- @backstage/plugin-code-coverage-backend@0.2.14
- @backstage/plugin-search-backend-node@1.2.4
- @backstage/plugin-linguist-backend@0.4.0
- @backstage/plugin-playlist-backend@0.3.4
- @backstage/plugin-jenkins-backend@0.2.3
- @backstage/plugin-nomad-backend@0.1.2
- @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
- example-app@0.2.86
- @backstage/plugin-adr-backend@0.3.6
- @backstage/plugin-azure-sites-backend@0.1.10
- @backstage/plugin-graphql-backend@0.1.38
- @backstage/plugin-permission-node@0.7.11
- @backstage/plugin-rollbar-backend@0.1.45
- @backstage/plugin-tech-insights-backend@0.5.14
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.32
- @backstage/plugin-tech-insights-node@0.4.6
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-search-common@1.2.5
example-backend-next@0.0.14
Patch Changes
- Updated dependencies
- @backstage/plugin-search-backend-module-techdocs@0.1.4
- @backstage/plugin-search-backend-module-catalog@0.1.4
- @backstage/plugin-search-backend-module-explore@0.1.4
- @backstage/plugin-azure-devops-backend@0.3.27
- @backstage/plugin-kubernetes-backend@0.11.3
- @backstage/plugin-lighthouse-backend@0.2.4
- @backstage/plugin-permission-backend@0.5.23
- @backstage/plugin-scaffolder-backend@1.16.0
- @backstage/backend-defaults@0.2.0
- @backstage/plugin-devtools-backend@0.1.3
- @backstage/plugin-techdocs-backend@1.6.5
- @backstage/plugin-catalog-backend@1.12.0
- @backstage/plugin-badges-backend@0.2.3
- @backstage/plugin-search-backend@1.4.0
- @backstage/plugin-proxy-backend@0.3.0
- @backstage/plugin-todo-backend@0.2.0
- @backstage/plugin-app-backend@0.3.48
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-catalog-backend-module-unprocessed@0.2.0
- @backstage/plugin-entity-feedback-backend@0.1.6
- @backstage/plugin-search-backend-node@1.2.4
- @backstage/plugin-linguist-backend@0.4.0
- @backstage/plugin-auth-node@0.2.17
- @backstage/backend-tasks@0.5.5
- @backstage/plugin-adr-backend@0.3.6
- @backstage/plugin-permission-node@0.7.11
- @backstage/plugin-permission-common@0.7.7
e2e-test@0.2.6
Patch Changes
- Updated dependencies
- @backstage/create-app@0.5.4
- @backstage/cli-common@0.1.12
- @backstage/errors@1.2.1
techdocs-cli-embedded-app@0.2.85
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.9.1
- @backstage/integration-react@1.1.16
- @backstage/cli@0.22.10
- @backstage/core-components@0.13.4
- @backstage/plugin-catalog@1.12.1
- @backstage/app-defaults@1.4.2
- @backstage/core-plugin-api@1.5.3
- @backstage/test-utils@1.4.2
- @backstage/plugin-techdocs@1.6.6
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/plugin-techdocs-react@1.1.9
@internal/plugin-catalog-customized@0.0.13
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.12.1
- @backstage/plugin-catalog-react@1.8.1
@internal/plugin-todo-list@1.0.16
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.4
- @backstage/core-plugin-api@1.5.3
- @backstage/theme@0.4.1
@internal/plugin-todo-list-backend@1.0.16
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.2
- @backstage/backend-plugin-api@0.6.0
- @backstage/plugin-auth-node@0.2.17
- @backstage/config@1.0.8
- @backstage/errors@1.2.1