Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
93 KiB
Release v1.17.0
@backstage/backend-app-api@0.5.0
Minor Changes
-
b9c57a4f85: BREAKING: RenamedconfigServiceFactorytorootConfigServiceFactory. -
a6d7983f34: BREAKING: Removed theservicesoption 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
e65c4896f7: Do not throw in backend.stop, if start failedc7aa4ff179: Allow modules to register extension points.57a10c6c69: Add validation to make sure that extension points do not cross plugin boundaries.cc9256a33b: Added new experimentalfeatureDiscoveryServiceFactory, 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
-
d008aefef8: BREAKING: Removing shared environments concept from the new experimental backend system. -
a6d7983f34: BREAKING: Removed theservicesoption 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
629cbd194a: UsecoreServices.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
c49785f00c: BREAKING: It is no longer possible to declare options as being required withcreateServiceFactory.629cbd194a: BREAKING: RenamedcoreServices.configtocoreServices.rootConfig.51987dbdaf: 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.d008aefef8: BREAKING: Removing shared environments concept from the new experimental backend system.
Patch Changes
-
c7aa4ff179: Allow modules to register extension points. -
cc9256a33b: Added new experimentalfeatureDiscoveryServiceRef, available as an/alphaexport. -
a6d7983f34: BREAKING: Removed theservicesoption 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
-
b9c57a4f85: BREAKING: RenamedmockServices.configtomockServices.rootConfig. -
a6d7983f34: BREAKING: Removed theservicesoption 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
ae93048181: 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
-
2f18595859: 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. -
cd514545d1: Adds a newdeepVisibilityschema 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
443afcf7f5: AddedbuildGerritGitilesArchiveUrl()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
9fbe95ef65: Added theappplugin 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
b8cccd8ee8: Support configuring applicable kinds forAnnotateScmSlugEntityProcessorf32252cdf6: Added OpenTelemetry spans for catalog processingebeb775869: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.configb8d6b22acd: 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
290eff6692: Added GCP catalog plugin with GKE provider
Patch Changes
629cbd194a: UsecoreServices.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
5156a94c2e: BREAKING: Fixing typo in exported module. You will have to rename the import to the correct spelling.UnprocessedEntites->UnprocessedEntities
Patch Changes
12a8c94eda: 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
-
4b6d41737a: 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
562e34d269: 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
d440f1dd0e: Adds a processor to the linguist backend which can automatically add language tags to entities0896d85d5a: BREAKING: Removed the alpha export plugin options from exportedlinguistPlugin()(used by the new backend system) in favour of static config.
Patch Changes
12a8c94eda: Add package repository and homepage metadataca5e591cb8: 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
7daf65bfcf: Defining proxy endpoints directly under the rootproxyconfiguration key is deprecated. Endpoints should now be declared underproxy.endpointsinstead. TheskipInvalidProxiesandreviveConsumedRequestBodiescan now also be configured through static configuration.
Patch Changes
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config4b82382ed8: 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
e514aac3ea: Introduceeachproperty on action steps, allowing them to be ran repeatedly.
Patch Changes
-
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config -
349611126a: Removed the options from the alphascaffolderPluginexport. To extend the scaffolder plugin you instead now use the available extension points,scaffolderActionsExtensionPoint,scaffolderTaskBrokerExtensionPoint, andscaffolderTemplatingExtensionPoint. -
33c76caef7: Added examples for thefs:deleteandfs:renameactions -
e07a4914f6: Deprecated the following type exports, which have been moved to@backstage/plugin-scaffolder-nodeinstead:TemplateFilterTemplateGlobalTaskStatusTaskCompletionStateSerializedTaskTaskEventTypeSerializedTaskEventTaskBrokerDispatchResultTaskBrokerDispatchOptionsTaskContextTaskBroker
-
0b1d775be0: Adds examples to a few scaffolder actions. -
88bc6e27a2: TheconcurrentTasksLimitoption can now be configured via static configuration as well. Setting it to 0 will now also disable the task worker. -
0f87332506: Add examples forgithub:repo:createandgithub:repo:pushscaffolder actions. -
5c28ebc79f: Updated dependencyesbuildto^0.19.0. -
d3b31a791e: DeprecatedexecuteShellCommand,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
e514aac3ea: Introduceeachproperty 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
e514aac3ea: Introduceeachproperty on action steps, allowing them to be ran repeatedly.
Patch Changes
12a8c94eda: Add package repository and homepage metadatae07a4914f6: Added several new types that were moved from@backstage/plugin-scaffolder-backend.349611126a: Added two new alpha extension points,scaffolderTaskBrokerExtensionPointandscaffolderTemplatingExtensionPoint.0b1d775be0: ExportTemplateExamplefrom thecreateTemplateActiontype.d3b31a791e: DeprecatedexecuteShellCommand,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
ebeb775869: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config12a8c94eda: Add package repository and homepage metadata951ab6c9db: Add missingconfigSchemato 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
ebeb775869: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.configad3fb54017: 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
-
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config -
443afcf7f5: 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. -
4b82382ed8: 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
ebeb775869: Add a newcreateRoutermethod for generating anexpressrouter that validates against your spec. Also fixes a bug with the query parameters type resolution.12a8c94eda: Add package repository and homepage metadata- Updated dependencies
- @backstage/errors@1.2.1
@backstage/backend-tasks@0.5.5
Patch Changes
dfd1b6b2fc: MakereadTaskScheduleDefinitionFromConfigproperly 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
3f67cefb47: Reload the frontend when app config changescebbf8a27f: Enable to print the config schema not merged with the--no-mergeflag5c28ebc79f: Updated dependencyesbuildto^0.19.0.971bdd6a47: Bumped internalnodemondependency.- 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
12a8c94eda: 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
9ae4e7e638: Fixed a bug that could causenavigateanalytics 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
3d86be999f: Prefer simpletheme.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
b441642fbe: Bumped create-app version.572abc7edf: Bumped create-app version.74f77f151a: Bumped create-app version.5cc0ac5ef3: Bump to a newer version of theconcurrentlylibrary46c9a798e4: Updated theapp-config.yamltemplate to useproxy.endpoints.971bdd6a47: Bumped internalnodemondependency.- Updated dependencies
- @backstage/cli-common@0.1.12
@backstage/dev-utils@1.0.18
Patch Changes
254ad469f0: Removed deprecated calls toapp.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
12a8c94eda: 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
75702e8586: Bumped@microsoft/api-extractordependency to^7.36.4, and@microsoft/api-documenterto^7.22.33.1f3337ebc7: Introducing a new, experimental commandbackstage-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.ebeb775869: Updateschema 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
971bdd6a47: Bumped internalnodemondependency.- 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
12a8c94eda: 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
12a8c94eda: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
ec73572588: 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
12a8c94eda: 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
12a8c94eda: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.configd564ad142b: Migrated the alphaappBackendexport 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
16452cd007: UpdatedframeHandlerto returnundefinedwhen using the redirect flow instead of returningpostMessageReponsewhich was causing errors9dad4b0e61: Updated config schema to match what was being used in codebb70a9c388: Add frontend visibility to provider objects inauthconfig.- 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
12a8c94eda: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config12a8c94eda: 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
629cbd194a: UsecoreServices.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
12a8c94eda: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config12a8c94eda: 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
12a8c94eda: Add package repository and homepage metadata- Updated dependencies
- @backstage/integration@1.6.0
@backstage/plugin-bitrise@0.1.48
Patch Changes
12a8c94eda: 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
3d86be999f: Prefer simpletheme.spacingwithout string interpolation136cea792b: Fixed an issue causingEntitySwitchto 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config4b82382ed8: Fixed invalid configuration schema. The configuration schema may be more strict as a result.b4222908b0: Added option to configure AWSaccountIdinAwsS3EntityProvider- 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config4b82382ed8: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config4b82382ed8: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config4b82382ed8: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config4b82382ed8: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config4b82382ed8: Fixed invalid configuration schema. The configuration schema may be more strict as a result.81c231c9c9: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.confige6c721439f: Added option to skip forked repos in GitlabDiscoveryEntityProvider4b82382ed8: Fixed invalid configuration schema. The configuration schema may be more strict as a result.2fe1f5973f: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.confige2b6396a12: Export new alphaincrementalIngestionProvidersExtensionPointfor 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.configfb93323201: The alphacatalogModuleMicrosoftGraphOrgEntityProviderexport no longer accepts options. Transformers are now instead configured via themicrosoftGraphOrgEntityProviderTransformExtensionPoint.4b82382ed8: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config4b82382ed8: 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
64ee2c0c7c: Propagate entity spec to EntityNode so that spec info such as type can be used for graph node customization62dc7a2b1a: Added maximum depth parameter to the catalogGraphParams in CatalogGraphCard.12a8c94eda: 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
12a8c94eda: 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
aa3feedce1: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
48b6a04ad0: 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
-
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config -
12a8c94eda: Add package repository and homepage metadata -
2b4f77a4e9: Add DevTools configuration to enable dependency listing to be filtered with custom prefixes. For instance, in yourapp-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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: Add package repository and homepage metadata
@backstage/plugin-entity-validation@0.1.6
Patch Changes
12a8c94eda: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config12a8c94eda: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config12a8c94eda: Add package repository and homepage metadata4b82382ed8: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config12a8c94eda: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config12a8c94eda: 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
12a8c94eda: Add package repository and homepage metadata- Updated dependencies
- @backstage/plugin-events-node@0.2.9
@backstage/plugin-events-node@0.2.9
Patch Changes
12a8c94eda: Add package repository and homepage metadata- Updated dependencies
- @backstage/backend-plugin-api@0.6.0
@backstage/plugin-explore@0.4.7
Patch Changes
41a26248c9: Supportmaterial-uioverrides in plugin-explore components83467b0534: 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
eda2a699f4: Moved the config example from the "Tools as Code" section to the "Tools as Config" section of the README12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
bb1e1c2b26: Fix typo in install instructions.12a8c94eda: 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
a559ff68de: Now, user can provide a language (optional) as input to receive a greeting in that specific language. Example:<WelcomeTitle language={['English', 'Spanish']} />6743d3917a: Make sure the widget name is never empty in theAddWidgetDialog. 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
bf67dce731: Maketitleoptional 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
12a8c94eda: 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
12a8c94eda: Add package repository and homepage metadata4b82382ed8: 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
12a8c94eda: 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
12a8c94eda: 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
629cbd194a: UsecoreServices.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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.configbbf4e9c894: 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
629cbd194a: UsecoreServices.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
12a8c94eda: Add package repository and homepage metadatad440f1dd0e: Exported new LanguageType type alias
@backstage/plugin-microsoft-calendar@0.1.6
Patch Changes
12a8c94eda: Add package repository and homepage metadataeea2922e74: 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
2167b7eab0: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
12a8c94eda: 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
50331203e2: Fixed bug in MembersListCard component where the url for the members was static which was breaking the component when catalog route was changed12a8c94eda: 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
12a8c94eda: 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
5003fc9667: Add newdisableChangeEventsprop 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
12a8c94eda: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config12a8c94eda: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config12a8c94eda: Add package repository and homepage metadata0d6ddc62d8: 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
d1e0588324: Displaying an alert popup each time the Playlist is created or deleted12a8c94eda: Add package repository and homepage metadata8a997547f0: 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
12a8c94eda: 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
12a8c94eda: 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
8a0490fb66: Fix the get entities query in theMyGroupsPickerto 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
0a9b3b14e9: Added example for theconfluence:transform:markdownthat will show in the installed actions list12a8c94eda: Add package repository and homepage metadata0d347efc8f: UsefetchContentsdirectly instead of afetchPlainActionc186c631b4: 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
12a8c94eda: Add package repository and homepage metadatac186c631b4: 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
12a8c94eda: Add package repository and homepage metadatac186c631b4: 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
12a8c94eda: 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
12a8c94eda: 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
ba9ee98a37: Fixed bug in Workflow component by passing a proptemplateNamedown 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config29f77f923c: Ensure that all services are dependency injected into the module instead of taken from options12a8c94eda: Add package repository and homepage metadataec1032129e: Breaking change in the alpha exportsearchModuleCatalogCollator: 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.d4f19a16bd: 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
-
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config -
12a8c94eda: Add package repository and homepage metadata -
631eb3816b: Index templates can now be configured through configuration under thesearch.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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config29f77f923c: Ensure that all services are dependency injected into the module instead of taken from options12a8c94eda: Add package repository and homepage metadata6694e79ab3: Breaking change for the alpha export movedschedulefrom 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config12a8c94eda: 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
629cbd194a: UsecoreServices.rootConfiginstead ofcoreService.config29f77f923c: Ensure that all services are dependency injected into the module instead of taken from options12a8c94eda: Add package repository and homepage metadata6694e79ab3: BREAKING: Movedschedule&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
12a8c94eda: Add package repository and homepage metadatae3e9bc1029: 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
12a8c94eda: Add package repository and homepage metadataee52a48b63: 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
b2ccddefbd: 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
12a8c94eda: Add package repository and homepage metadataa24d9df875: Added optionalexternalBaseUrlconfig 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
3d86be999f: Prefer simpletheme.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
12a8c94eda: 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
12a8c94eda: 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
629cbd194a: UsecoreServices.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
12a8c94eda: 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
12a8c94eda: Add package repository and homepage metadata3d86be999f: Prefer simpletheme.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