Release v1.23.0-next.1
@backstage/catalog-client@1.6.0-next.1
Minor Changes
- 43dad25: Add API to get location by entity
Patch Changes
- c04c42b: Internal updates to auto-generated files.
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/errors@1.2.3
@backstage/core-compat-api@0.2.0-next.1
Minor Changes
- e586f79: Add support to the new analytics api.
Patch Changes
- edfd3a5: Updated dependency
@oriflame/backstage-plugin-score-cardto^0.8.0. - bc621aa: Updates to use the new
RouteResolutionsApi. - 46b63de: Allow external route refs in the new system to have a
defaultTargetpointing to a route that it'll resolve to by default if no explicit bindings were made by the adopter. - Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/core-app-api@1.11.4-next.0
- @backstage/version-bridge@1.0.7
@backstage/core-components@0.14.0-next.0
Minor Changes
- 281e8c6: BREAKING: Removed the
SidebarIntrocomponent as it was providing instructions for features that do not exist, along withIntroCard. If you were relying on this component and want to keep using it you can refer to the original implementations ofSidebarIntroandIntroCard.
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/theme@0.5.0
- @backstage/version-bridge@1.0.7
@backstage/frontend-app-api@0.6.0-next.1
Minor Changes
- bdf4a8e: BREAKING: Removed the experimental
createExtensionTreeAPI.
Patch Changes
- bc621aa: Updates to use the new
RouteResolutionsApi. - e586f79: Wrap the root element with the analytics context to ensure it always exists for all extensions.
- fb9b5e7: The default
ComponentsApiimplementation now uses theComponentRefID as the component key, rather than the reference instance. This fixes a bug where duplicate installations of@backstage/frontend-plugin-apiwould break the app. - 46b63de: Allow external route refs in the new system to have a
defaultTargetpointing to a route that it'll resolve to by default if no explicit bindings were made by the adopter. - Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/core-app-api@1.11.4-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/theme@0.5.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
@backstage/frontend-plugin-api@0.6.0-next.1
Minor Changes
- e586f79: BREAKING: Replace default plugin extension and plugin ids to be
appinstead ofroot.
Patch Changes
- bc621aa: Added
RouteResolutionsApias a replacement for the routing context. - 1e61ad3: App component extensions are no longer wrapped in an
ExtensionBoundary, allowing them to inherit the outer context instead. - 46b63de: Allow external route refs in the new system to have a
defaultTargetpointing to a route that it'll resolve to by default if no explicit bindings were made by the adopter. - Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
@backstage/integration@1.9.0-next.0
Minor Changes
- e27b7f3: Fix rate limit detection by looking for HTTP status code 429 and updating the header
x-ratelimit-remainingto look for in case of a 403 code is returned
Patch Changes
- Updated dependencies
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-analytics-module-ga@0.2.0-next.0
Minor Changes
- e586f79: Add support to the new analytics api.
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/config@1.1.1
@backstage/plugin-analytics-module-ga4@0.2.0-next.0
Minor Changes
- e586f79: Add support to the new analytics api.
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/config@1.1.1
@backstage/plugin-analytics-module-newrelic-browser@0.1.0-next.0
Minor Changes
- e586f79: Add support to the new analytics api.
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/config@1.1.1
@backstage/plugin-auth-backend-module-aws-alb-provider@0.1.0-next.0
Minor Changes
- 23a98f8: Migrated the AWS ALB auth provider to new
@backstage/plugin-auth-backend-module-aws-alb-providermodule package.
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/plugin-auth-backend@0.20.4-next.1
- @backstage/errors@1.2.3
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-azure-sites-backend@0.2.0-next.1
Minor Changes
-
28610f4: BREAKING:
catalogApiandpermissionsApiare now a requirement to be passed through to thecreateRouterfunction.You can fix the typescript issues by passing through the required dependencies like the below
diffshows:import {
createRouter,
AzureSitesApi,
} from '@backstage/plugin-azure-sites-backend';
import { Router } from 'express';
import { PluginEnvironment } from '../types';
export default async function createPlugin(
env: PluginEnvironment,
): Promise<Router> {
+ const catalogClient = new CatalogClient({
+ discoveryApi: env.discovery,
+ });
return await createRouter({
logger: env.logger,
azureSitesApi: AzureSitesApi.fromConfig(env.config),
+ catalogApi: catalogClient,
+ permissionsApi: env.permissions,
});
}
Patch Changes
-
5a409bb: Azure Sites
startandstopaction is now protected with the Permissions framework.The below example describes an action that forbids anyone but the owner of the catalog entity to trigger actions towards a site tied to an entity.
// packages/backend/src/plugins/permission.ts
import { azureSitesActionPermission } from '@backstage/plugin-azure-sites-common';
...
class TestPermissionPolicy implements PermissionPolicy {
async handle(request: PolicyQuery, user?: BackstageIdentityResponse): Promise<PolicyDecision> {
if (isPermission(request.permission, azureSitesActionPermission)) {
return createCatalogConditionalDecision(
request.permission,
catalogConditions.isEntityOwner({
claims: user?.identity.ownershipEntityRefs ?? [],
}),
);
}
...
return {
result: AuthorizeResult.ALLOW,
};
}
...
} -
Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/plugin-azure-sites-common@0.1.2-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
@backstage/plugin-catalog-backend@1.17.0-next.1
Minor Changes
- 43dad25: Add API to get location by entity
Patch Changes
- 89b674c: Minor performance improvement for
queryEntitieswhen the limit is 0. - efa8160: Rollback the change for wildcard discovery, this fixes a bug with the
AzureUrlReadernot working with wildcard paths - Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/backend-openapi-utils@0.1.3-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-events-node@0.2.19-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
- @backstage/plugin-search-backend-module-catalog@0.1.14-next.1
@backstage/plugin-catalog-backend-module-github@0.5.0-next.1
Minor Changes
- a950ed0: Prevent Entity Providers from eliminating Users and Groups from the DB when the synchronisation fails
Patch Changes
- 9477133: Decreased number of teams fetched by GraphQL Query responsible for fetching Teams and Members in organization, due to timeouts when running against big organizations
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/plugin-catalog-backend@1.17.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-events-node@0.2.19-next.1
@backstage/plugin-scaffolder@1.18.0-next.1
Minor Changes
- 9b9c05c: Updating the
EntityPickerto only selectkindmetadata.nameandmetadata.namespaceby default to improve performance on larger datasets.
Patch Changes
- 31f0a0a: Added
ScaffolderPageContextMenutoActionsPage,ListTaskPage, andTemplateEditorPageso that you can more easily navigate between these pages - Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/plugin-scaffolder-react@1.8.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/integration-react@1.1.24-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-react@0.4.20-next.0
- @backstage/plugin-scaffolder-common@1.5.0-next.1
@backstage/plugin-scaffolder-backend@1.21.0-next.1
Minor Changes
- 78c100b: Support providing an overriding token for
fetch:template,fetch:plainandfetch:filewhen interacting with upstream integrations
Patch Changes
- 09f8b31: Simple typo fix in the fetch:template action example on the word 'skeleton'.
- f6792c6: Move the
NODE_OPTIONSmessaging for--no-node-snapshotto theSecureTemplaterin order to get better messaging at runtime - e1c479d: When using node 20+ the
scaffolder-backendwill now throw an error at startup if the--no-node-snapshotoption was not provided to node. - e0e5afe: Add option to configure nunjucks with the
trimBlocksandlstripBlocksoptions in the fetch:template action - Updated dependencies
- @backstage/plugin-scaffolder-backend-module-github@0.2.0-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.7-next.1
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
- @backstage/plugin-scaffolder-backend-module-azure@0.1.2-next.1
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.1.2-next.1
- @backstage/plugin-scaffolder-backend-module-gerrit@0.1.2-next.1
- @backstage/plugin-scaffolder-backend-module-gitlab@0.2.13-next.1
- @backstage/plugin-scaffolder-common@1.5.0-next.1
@backstage/plugin-scaffolder-backend-module-github@0.2.0-next.1
Minor Changes
- fd5eb1c: Allow to force the creation of a pull request from a forked repository
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-scaffolder-node@0.3.0-next.1
Minor Changes
- 78c100b: Support providing an overriding token for
fetch:template,fetch:plainandfetch:filewhen interacting with upstream integrations
Patch Changes
- e0e5afe: Add option to configure nunjucks with the
trimBlocksandlstripBlocksoptions in the fetch:template action - Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-scaffolder-common@1.5.0-next.1
@backstage/plugin-scaffolder-react@1.8.0-next.1
Minor Changes
- b07ec70: Use more distinguishable icons for link (
Link) and text output (Description).
Patch Changes
- 3f60ad5: fix for: converting circular structure to JSON error
- 31f0a0a: Added
ScaffolderPageContextMenutoActionsPage,ListTaskPage, andTemplateEditorPageso that you can more easily navigate between these pages - 82affc7: Fix issue where
ui:schemawas replaced with an empty object ifdependenciesis defined - Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/theme@0.5.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
- @backstage/plugin-scaffolder-common@1.5.0-next.1
@backstage/plugin-techdocs@1.10.0-next.1
Minor Changes
- af4d147: Updated the styling for
<code>tags to avoid word break.
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-search-react@1.7.6-next.1
- @backstage/integration-react@1.1.24-next.0
- @backstage/plugin-techdocs-react@1.1.16-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/theme@0.5.0
- @backstage/plugin-search-common@1.2.10
@backstage/app-defaults@1.4.8-next.1
Patch Changes
- 7da67ce: Change
defaultScopesfor Bitbucket auth from invalidteamtoaccount. - Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/core-app-api@1.11.4-next.0
- @backstage/theme@0.5.0
- @backstage/plugin-permission-react@0.4.20-next.0
@backstage/backend-app-api@0.5.11-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/cli-common@0.1.13
- @backstage/cli-node@0.2.2
- @backstage/config@1.1.1
- @backstage/config-loader@1.6.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-permission-node@0.7.21-next.1
@backstage/backend-common@0.21.0-next.1
Patch Changes
- 1f020fe: Support
tokeninreadTree,readUrlandsearch - e27b7f3: Fix rate limit detection by looking for HTTP status code 429 and updating the header
x-ratelimit-remainingto look for in case of a 403 code is returned - Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/backend-app-api@0.5.11-next.1
- @backstage/backend-dev-utils@0.1.3
- @backstage/cli-common@0.1.13
- @backstage/config@1.1.1
- @backstage/config-loader@1.6.1
- @backstage/errors@1.2.3
- @backstage/integration-aws-node@0.1.8
- @backstage/types@1.1.1
@backstage/backend-defaults@0.2.10-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-app-api@0.5.11-next.1
@backstage/backend-dynamic-feature-service@0.1.1-next.1
Patch Changes
- 8723c5a: Fix wrong
alphasupport in dynamic plugins support: thealphasub-package should not be required for the dynamic plugins to be loaded under the new backend system. - Updated dependencies
- @backstage/plugin-catalog-backend@1.17.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/cli-common@0.1.13
- @backstage/cli-node@0.2.2
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-events-backend@0.2.19-next.1
- @backstage/plugin-events-node@0.2.19-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
- @backstage/plugin-search-backend-node@1.2.14-next.1
- @backstage/plugin-search-common@1.2.10
@backstage/backend-openapi-utils@0.1.3-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/errors@1.2.3
@backstage/backend-plugin-api@0.6.10-next.1
Patch Changes
- 1f020fe: Support
tokeninreadTree,readUrlandsearch - Updated dependencies
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-permission-common@0.7.12
@backstage/backend-tasks@0.5.15-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/backend-test-utils@0.3.0-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-app-api@0.5.11-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/catalog-model@1.4.4-next.0
Patch Changes
- 07e7d12: Fix wording in API reference
- Updated dependencies
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/cli@0.25.2-next.1
Patch Changes
- b58673e: Upgrade jest
- 08804c3: Fixed an issue that would cause an invalid
__backstage-autodetected-plugins__.jsto be written when using experimental module discovery. - Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/cli-common@0.1.13
- @backstage/cli-node@0.2.2
- @backstage/config@1.1.1
- @backstage/config-loader@1.6.1
- @backstage/errors@1.2.3
- @backstage/eslint-plugin@0.1.5-next.0
- @backstage/release-manifests@0.0.11
- @backstage/types@1.1.1
@backstage/core-app-api@1.11.4-next.0
Patch Changes
- 7da67ce: Change
defaultScopesfor Bitbucket auth from invalidteamtoaccount. - Updated dependencies
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
@backstage/core-plugin-api@1.8.3-next.0
Patch Changes
- e586f79: Throw a more specific exception
NotImplementedErrorwhen an API implementation cannot be found. - Updated dependencies
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
@backstage/create-app@0.5.11-next.1
Patch Changes
- Bumped create-app version.
- Updated dependencies
- @backstage/cli-common@0.1.13
@backstage/dev-utils@1.0.27-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/app-defaults@1.4.8-next.1
- @backstage/core-app-api@1.11.4-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/integration-react@1.1.24-next.0
- @backstage/theme@0.5.0
@backstage/frontend-test-utils@0.1.2-next.1
Patch Changes
- bc621aa: Updates to use the new
RouteResolutionsApi. - Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/frontend-app-api@0.6.0-next.1
- @backstage/test-utils@1.5.0-next.1
- @backstage/types@1.1.1
@backstage/integration-react@1.1.24-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/config@1.1.1
@backstage/repo-tools@0.6.0-next.1
Patch Changes
- c04c42b: Fixes an issue where comments would be duplicated in the template. Also, removes a header with the title and version of the OpenAPI spec from generated code.
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-common@0.21.0-next.1
- @backstage/cli-common@0.1.13
- @backstage/cli-node@0.2.2
- @backstage/errors@1.2.3
@techdocs/cli@1.8.2-next.1
Patch Changes
- d8d243c: fix: mkdocs parameter casing
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-common@0.21.0-next.1
- @backstage/plugin-techdocs-node@1.11.2-next.1
- @backstage/cli-common@0.1.13
- @backstage/config@1.1.1
@backstage/test-utils@1.5.0-next.1
Patch Changes
- 07e7d12: Fix wording in API reference
- 7da67ce: Change
defaultScopesfor Bitbucket auth from invalidteamtoaccount. - Updated dependencies
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/core-app-api@1.11.4-next.0
- @backstage/config@1.1.1
- @backstage/theme@0.5.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-react@0.4.20-next.0
@backstage/plugin-adr@0.6.13-next.1
Patch Changes
- 987f565: Fix alignment of text in
AdrSearchResultListItem. Update size and font to match otherSearchResultListItem. - Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-search-react@1.7.6-next.1
- @backstage/integration-react@1.1.24-next.0
- @backstage/plugin-adr-common@0.2.20-next.0
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-adr-backend@0.4.7-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-adr-common@0.2.20-next.0
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-adr-common@0.2.20-next.0
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-airbrake@0.3.30-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/test-utils@1.5.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/dev-utils@1.0.27-next.1
@backstage/plugin-airbrake-backend@0.3.7-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
@backstage/plugin-allure@0.1.46-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-apache-airflow@0.2.20-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-api-docs@0.10.4-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-catalog@1.17.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-react@0.4.20-next.0
@backstage/plugin-apollo-explorer@0.1.20-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-app-backend@0.3.58-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/config-loader@1.6.1
- @backstage/types@1.1.1
- @backstage/plugin-app-node@0.1.10-next.1
@backstage/plugin-app-node@0.1.10-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
@backstage/plugin-app-visualizer@0.1.1-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-auth-backend@0.20.4-next.1
Patch Changes
- 23a98f8: Migrated the AWS ALB auth provider to new
@backstage/plugin-auth-backend-module-aws-alb-providermodule package. - Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.0-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.1
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.1
- @backstage/plugin-auth-backend-module-github-provider@0.1.7-next.1
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.1
- @backstage/plugin-auth-backend-module-google-provider@0.1.7-next.1
- @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.1
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.1
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.1
- @backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.1
- @backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-backend-module-github-provider@0.1.7-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-backend-module-google-provider@0.1.7-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/errors@1.2.3
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/plugin-auth-backend@0.20.4-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-backend-module-pinniped-provider@0.1.4-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/config@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.1.2-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-auth-node@0.4.4-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-azure-devops@0.3.12-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
- @backstage/plugin-azure-devops-common@0.3.2
@backstage/plugin-azure-devops-backend@0.5.2-next.1
Patch Changes
- 25bda45: Fixed bug with
extractPartsFromAssetthat resulted in a leading.being removed from the path in an otherwise valid path (ex..assets/image.png). The leading.will now only be moved for paths beginning with./. - Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/config@1.1.1
- @backstage/plugin-azure-devops-common@0.3.2
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-azure-sites@0.1.19-next.1
Patch Changes
-
5a409bb: Azure Sites
startandstopaction is now protected with the Permissions framework.The below example describes an action that forbids anyone but the owner of the catalog entity to trigger actions towards a site tied to an entity.
// packages/backend/src/plugins/permission.ts
import { azureSitesActionPermission } from '@backstage/plugin-azure-sites-common';
...
class TestPermissionPolicy implements PermissionPolicy {
async handle(request: PolicyQuery, user?: BackstageIdentityResponse): Promise<PolicyDecision> {
if (isPermission(request.permission, azureSitesActionPermission)) {
return createCatalogConditionalDecision(
request.permission,
catalogConditions.isEntityOwner({
claims: user?.identity.ownershipEntityRefs ?? [],
}),
);
}
...
return {
result: AuthorizeResult.ALLOW,
};
}
...
} -
Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-azure-sites-common@0.1.2-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/theme@0.5.0
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-react@0.4.20-next.0
@backstage/plugin-azure-sites-common@0.1.2-next.0
Patch Changes
-
5a409bb: Azure Sites
startandstopaction is now protected with the Permissions framework.The below example describes an action that forbids anyone but the owner of the catalog entity to trigger actions towards a site tied to an entity.
// packages/backend/src/plugins/permission.ts
import { azureSitesActionPermission } from '@backstage/plugin-azure-sites-common';
...
class TestPermissionPolicy implements PermissionPolicy {
async handle(request: PolicyQuery, user?: BackstageIdentityResponse): Promise<PolicyDecision> {
if (isPermission(request.permission, azureSitesActionPermission)) {
return createCatalogConditionalDecision(
request.permission,
catalogConditions.isEntityOwner({
claims: user?.identity.ownershipEntityRefs ?? [],
}),
);
}
...
return {
result: AuthorizeResult.ALLOW,
};
}
...
} -
Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-badges@0.2.54-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-badges-backend@0.3.7-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-bazaar@0.2.22-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-bazaar-backend@0.3.8-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-bitbucket-cloud-common@0.2.16-next.1
Patch Changes
- Updated dependencies
- @backstage/integration@1.9.0-next.0
@backstage/plugin-bitrise@0.1.57-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-catalog@1.17.0-next.1
Patch Changes
- 987f565: Add line clamping to
CatalogSearchResultListItem - Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-search-react@1.7.6-next.1
- @backstage/integration-react@1.1.24-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-react@0.4.20-next.0
- @backstage/plugin-scaffolder-common@1.5.0-next.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-catalog-backend-module-aws@0.3.4-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration-aws-node@0.1.8
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-catalog-backend-module-azure@0.1.29-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-catalog-backend-module-backstage-openapi@0.1.3-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-openapi-utils@0.1.3-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-catalog-backend-module-bitbucket@0.2.25-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/config@1.1.1
- @backstage/plugin-bitbucket-cloud-common@0.2.16-next.1
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.25-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/plugin-bitbucket-cloud-common@0.2.16-next.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-events-node@0.2.19-next.1
@backstage/plugin-catalog-backend-module-bitbucket-server@0.1.23-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-catalog-backend-module-gcp@0.1.10-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-catalog-backend-module-gerrit@0.1.26-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-catalog-backend-module-github-org@0.1.4-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend-module-github@0.5.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-catalog-backend-module-gitlab@0.3.7-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.4.14-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-catalog-backend@1.17.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-events-node@0.2.19-next.1
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-catalog-backend-module-ldap@0.5.25-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-catalog-backend-module-msgraph@0.5.17-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-catalog-backend-module-openapi@0.1.27-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-catalog-backend@1.17.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-catalog-backend-module-puppetdb@0.1.15-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.7-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-scaffolder-common@1.5.0-next.1
@backstage/plugin-catalog-backend-module-unprocessed@0.3.7-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-catalog-common@1.0.21-next.0
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-catalog-graph@0.3.4-next.1
Patch Changes
- f937aae: use
CatalogClient.getEntitiesByRefs()to reduce the number of backend requests from plugincatalog-graph - Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/types@1.1.1
@backstage/plugin-catalog-import@0.10.6-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/integration-react@1.1.24-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-catalog-node@1.6.2-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
@backstage/plugin-catalog-react@1.9.4-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/integration-react@1.1.24-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-react@0.4.20-next.0
@backstage/plugin-catalog-unprocessed-entities@0.1.8-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/errors@1.2.3
@backstage/plugin-cicd-statistics@0.1.32-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-cicd-statistics-module-gitlab@0.1.26-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-cicd-statistics@0.1.32-next.1
@backstage/plugin-circleci@0.3.30-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-cloudbuild@0.4.0-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-code-climate@0.1.30-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-code-coverage@0.2.23-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-code-coverage-backend@0.2.24-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-codescene@0.1.22-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-config-schema@0.1.50-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-cost-insights@0.12.19-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/config@1.1.1
- @backstage/theme@0.5.0
- @backstage/plugin-cost-insights-common@0.1.2
@backstage/plugin-devtools@0.1.9-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/errors@1.2.3
- @backstage/plugin-devtools-common@0.1.8
- @backstage/plugin-permission-react@0.4.20-next.0
@backstage/plugin-devtools-backend@0.2.7-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/cli-common@0.1.13
- @backstage/config@1.1.1
- @backstage/config-loader@1.6.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-devtools-common@0.1.8
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
@backstage/plugin-dynatrace@8.0.4-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-entity-feedback@0.2.13-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
- @backstage/plugin-entity-feedback-common@0.1.3
@backstage/plugin-entity-feedback-backend@0.2.7-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-entity-feedback-common@0.1.3
@backstage/plugin-entity-validation@0.1.15-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-events-backend@0.2.19-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/plugin-events-node@0.2.19-next.1
@backstage/plugin-events-backend-module-aws-sqs@0.2.13-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-events-node@0.2.19-next.1
@backstage/plugin-events-backend-module-azure@0.1.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-events-node@0.2.19-next.1
@backstage/plugin-events-backend-module-bitbucket-cloud@0.1.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-events-node@0.2.19-next.1
@backstage/plugin-events-backend-module-gerrit@0.1.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-events-node@0.2.19-next.1
@backstage/plugin-events-backend-module-github@0.1.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/config@1.1.1
- @backstage/plugin-events-node@0.2.19-next.1
@backstage/plugin-events-backend-module-gitlab@0.1.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/config@1.1.1
- @backstage/plugin-events-node@0.2.19-next.1
@backstage/plugin-events-backend-test-utils@0.1.20-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.2.19-next.1
@backstage/plugin-events-node@0.2.19-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
@backstage/plugin-explore@0.4.16-next.1
Patch Changes
- 07e7d12: Fix wording in API reference
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-search-react@1.7.6-next.1
- @backstage/errors@1.2.3
- @backstage/plugin-explore-common@0.0.2
- @backstage/plugin-explore-react@0.0.36-next.0
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-explore-backend@0.0.20-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-explore-common@0.0.2
- @backstage/plugin-search-backend-module-explore@0.1.14-next.1
@backstage/plugin-explore-react@0.0.36-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-explore-common@0.0.2
@backstage/plugin-firehydrant@0.2.14-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-fossa@0.2.62-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-gcalendar@0.3.23-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/errors@1.2.3
@backstage/plugin-gcp-projects@0.3.46-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-git-release-manager@0.3.42-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/integration@1.9.0-next.0
@backstage/plugin-github-actions@0.6.11-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/integration-react@1.1.24-next.0
@backstage/plugin-github-deployments@0.1.61-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/integration-react@1.1.24-next.0
- @backstage/errors@1.2.3
@backstage/plugin-github-issues@0.2.19-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-github-pull-requests-board@0.1.24-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-gitops-profiles@0.3.45-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-gocd@0.1.36-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-graphiql@0.3.3-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-graphql-voyager@0.1.12-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-home@0.6.2-next.1
Patch Changes
- 384c132: Added filter support for HomePageVisitedByType in order to enable filtering entities from the list
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/core-app-api@1.11.4-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-home-react@0.1.8-next.1
- @backstage/config@1.1.1
- @backstage/theme@0.5.0
@backstage/plugin-home-react@0.1.8-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-ilert@0.2.19-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-jenkins@0.9.5-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
- @backstage/plugin-jenkins-common@0.1.24-next.0
@backstage/plugin-jenkins-backend@0.3.4-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-jenkins-common@0.1.24-next.0
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
@backstage/plugin-jenkins-common@0.1.24-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-kafka@0.3.30-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-kafka-backend@0.3.8-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-kubernetes@0.11.5-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-kubernetes-react@0.3.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-kubernetes-backend@0.14.2-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/plugin-kubernetes-node@0.1.4-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration-aws-node@0.1.8
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-kubernetes-common@0.7.4-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
@backstage/plugin-kubernetes-cluster@0.0.6-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-kubernetes-react@0.3.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-kubernetes-common@0.7.4-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-kubernetes-node@0.1.4-next.1
Patch Changes
- cceed8a: Introduced
PinnipedHelperclass to enable authentication to Kubernetes clusters through Pinniped - Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/types@1.1.1
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-kubernetes-react@0.3.0-next.1
Patch Changes
- 3c184af: Extracted common dialog component.
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-kubernetes-common@0.7.4-next.1
@backstage/plugin-lighthouse@0.4.15-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-lighthouse-common@0.1.4
@backstage/plugin-lighthouse-backend@0.4.2-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-lighthouse-common@0.1.4
@backstage/plugin-linguist@0.1.15-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
- @backstage/plugin-linguist-common@0.1.2
@backstage/plugin-linguist-backend@0.5.7-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-linguist-common@0.1.2
@backstage/plugin-microsoft-calendar@0.1.12-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/errors@1.2.3
@backstage/plugin-newrelic@0.3.45-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-newrelic-dashboard@0.3.5-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-nomad@0.1.11-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-nomad-backend@0.1.12-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-octopus-deploy@0.2.12-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-opencost@0.2.5-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-org@0.6.20-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-catalog-common@1.0.21-next.0
@backstage/plugin-org-react@0.1.19-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-pagerduty@0.7.2-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-home-react@0.1.8-next.1
- @backstage/errors@1.2.3
@backstage/plugin-periskop@0.1.28-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-periskop-backend@0.2.8-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
@backstage/plugin-permission-backend@0.5.33-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
@backstage/plugin-permission-backend-module-allow-all-policy@0.1.7-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
@backstage/plugin-permission-node@0.7.21-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-permission-react@0.4.20-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/config@1.1.1
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-playlist@0.2.4-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-search-react@1.7.6-next.1
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-react@0.4.20-next.0
- @backstage/plugin-playlist-common@0.1.14
@backstage/plugin-playlist-backend@0.3.14-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
- @backstage/plugin-playlist-common@0.1.14
@backstage/plugin-proxy-backend@0.4.8-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
@backstage/plugin-puppetdb@0.1.13-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-rollbar@0.4.30-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-rollbar-backend@0.1.55-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
@backstage/plugin-scaffolder-backend-module-azure@0.1.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-scaffolder-backend-module-bitbucket@0.1.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.11-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.34-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-backend-module-gerrit@0.1.2-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-scaffolder-backend-module-gitlab@0.2.13-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-scaffolder-backend-module-rails@0.4.27-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-backend-module-sentry@0.1.18-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-scaffolder-backend-module-yeoman@0.2.31-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/plugin-scaffolder-node@0.3.0-next.1
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-common@1.5.0-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.12
@backstage/plugin-search@1.4.6-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-search-react@1.7.6-next.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend@1.5.0-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-openapi-utils@0.1.3-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
- @backstage/plugin-search-backend-node@1.2.14-next.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-catalog@0.1.14-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-search-backend-node@1.2.14-next.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-elasticsearch@1.3.13-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/integration-aws-node@0.1.8
- @backstage/plugin-search-backend-node@1.2.14-next.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-explore@0.1.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/plugin-explore-common@0.0.2
- @backstage/plugin-search-backend-node@1.2.14-next.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-pg@0.5.19-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/plugin-search-backend-node@1.2.14-next.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-stack-overflow-collator@0.1.3-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/plugin-search-backend-node@1.2.14-next.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-module-techdocs@0.1.14-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/plugin-techdocs-node@1.11.2-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-search-backend-node@1.2.14-next.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-backend-node@1.2.14-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-search-react@1.7.6-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/theme@0.5.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.7
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-sentry@0.5.15-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-shortcuts@0.3.19-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/theme@0.5.0
- @backstage/types@1.1.1
@backstage/plugin-signals@0.0.1-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/theme@0.5.0
- @backstage/types@1.1.1
- @backstage/plugin-signals-react@0.0.1-next.1
@backstage/plugin-signals-backend@0.0.1-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-events-node@0.2.19-next.1
- @backstage/plugin-signals-node@0.0.1-next.1
@backstage/plugin-signals-node@0.0.1-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-events-node@0.2.19-next.1
@backstage/plugin-signals-react@0.0.1-next.1
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/types@1.1.1
@backstage/plugin-sonarqube@0.7.12-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-sonarqube-react@0.1.13-next.0
@backstage/plugin-sonarqube-backend@0.2.12-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
@backstage/plugin-sonarqube-react@0.1.13-next.0
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-splunk-on-call@0.4.19-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
@backstage/plugin-stack-overflow@0.1.25-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-search-react@1.7.6-next.1
- @backstage/plugin-home-react@0.1.8-next.1
- @backstage/config@1.1.1
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-stack-overflow-backend@0.2.14-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-search-backend-module-stack-overflow-collator@0.1.3-next.1
@backstage/plugin-stackstorm@0.1.11-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/errors@1.2.3
@backstage/plugin-tech-insights@0.3.22-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-insights-backend@0.5.24-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
- @backstage/plugin-tech-insights-node@0.4.16-next.1
@backstage/plugin-tech-insights-backend-module-jsonfc@0.1.42-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.1
- @backstage/errors@1.2.3
- @backstage/plugin-tech-insights-common@0.2.12
- @backstage/plugin-tech-insights-node@0.4.16-next.1
@backstage/plugin-tech-insights-node@0.4.16-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-radar@0.6.13-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@backstage/plugin-techdocs-addons-test-utils@1.0.27-next.1
Patch Changes
- Updated dependencies
- @backstage/test-utils@1.5.0-next.1
- @backstage/plugin-catalog@1.17.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/core-app-api@1.11.4-next.0
- @backstage/plugin-techdocs@1.10.0-next.1
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-search-react@1.7.6-next.1
- @backstage/integration-react@1.1.24-next.0
- @backstage/plugin-techdocs-react@1.1.16-next.0
@backstage/plugin-techdocs-backend@1.9.3-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/plugin-techdocs-node@1.11.2-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-search-backend-module-techdocs@0.1.14-next.1
@backstage/plugin-techdocs-module-addons-contrib@1.1.5-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/integration@1.9.0-next.0
- @backstage/integration-react@1.1.24-next.0
- @backstage/plugin-techdocs-react@1.1.16-next.0
@backstage/plugin-techdocs-node@1.11.2-next.1
Patch Changes
- 77e3050: Update to a newer version of
@trendyol-js/openstack-swift-sdk - Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/integration-aws-node@0.1.8
- @backstage/plugin-search-common@1.2.10
@backstage/plugin-techdocs-react@1.1.16-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/config@1.1.1
- @backstage/version-bridge@1.0.7
@backstage/plugin-todo@0.2.34-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-todo-backend@0.3.8-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/backend-openapi-utils@0.1.3-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-catalog-node@1.6.2-next.1
@backstage/plugin-user-settings@0.8.1-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/core-app-api@1.11.4-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
- @backstage/theme@0.5.0
- @backstage/types@1.1.1
@backstage/plugin-user-settings-backend@0.2.9-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/types@1.1.1
- @backstage/plugin-auth-node@0.4.4-next.1
@backstage/plugin-vault@0.1.25-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/catalog-model@1.4.4-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/errors@1.2.3
@backstage/plugin-vault-backend@0.4.3-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/errors@1.2.3
- @backstage/plugin-vault-node@0.1.3-next.1
@backstage/plugin-vault-node@0.1.3-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
@backstage/plugin-xcmetrics@0.2.48-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/errors@1.2.3
example-app@0.2.92-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-app-api@0.6.0-next.1
- @backstage/plugin-scaffolder-react@1.8.0-next.1
- @backstage/plugin-adr@0.6.13-next.1
- @backstage/plugin-catalog-graph@0.3.4-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/plugin-scaffolder@1.18.0-next.1
- @backstage/cli@0.25.2-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-explore@0.4.16-next.1
- @backstage/plugin-catalog@1.17.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/app-defaults@1.4.8-next.1
- @backstage/core-app-api@1.11.4-next.0
- @backstage/plugin-techdocs@1.10.0-next.1
- @backstage/plugin-azure-sites@0.1.19-next.1
- @backstage/plugin-home@0.6.2-next.1
- @backstage/plugin-catalog-import@0.10.6-next.1
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-devtools@0.1.9-next.1
- @backstage/plugin-graphiql@0.3.3-next.1
- @backstage/plugin-linguist@0.1.15-next.1
- @backstage/plugin-search@1.4.6-next.1
- @backstage/plugin-search-react@1.7.6-next.1
- @backstage/plugin-stack-overflow@0.1.25-next.1
- @backstage/plugin-tech-radar@0.6.13-next.1
- @backstage/plugin-user-settings@0.8.1-next.1
- @backstage/integration-react@1.1.24-next.0
- @backstage/plugin-airbrake@0.3.30-next.1
- @backstage/plugin-apache-airflow@0.2.20-next.0
- @backstage/plugin-api-docs@0.10.4-next.1
- @backstage/plugin-azure-devops@0.3.12-next.1
- @backstage/plugin-badges@0.2.54-next.1
- @backstage/plugin-catalog-unprocessed-entities@0.1.8-next.0
- @backstage/plugin-cloudbuild@0.4.0-next.1
- @backstage/plugin-code-coverage@0.2.23-next.1
- @backstage/plugin-cost-insights@0.12.19-next.1
- @backstage/plugin-dynatrace@8.0.4-next.1
- @backstage/plugin-entity-feedback@0.2.13-next.1
- @backstage/plugin-gcalendar@0.3.23-next.0
- @backstage/plugin-gcp-projects@0.3.46-next.0
- @backstage/plugin-github-actions@0.6.11-next.1
- @backstage/plugin-gocd@0.1.36-next.1
- @backstage/plugin-jenkins@0.9.5-next.1
- @backstage/plugin-kafka@0.3.30-next.1
- @backstage/plugin-kubernetes@0.11.5-next.1
- @backstage/plugin-kubernetes-cluster@0.0.6-next.1
- @backstage/plugin-lighthouse@0.4.15-next.1
- @backstage/plugin-microsoft-calendar@0.1.12-next.0
- @backstage/plugin-newrelic@0.3.45-next.0
- @backstage/plugin-newrelic-dashboard@0.3.5-next.1
- @backstage/plugin-nomad@0.1.11-next.1
- @backstage/plugin-octopus-deploy@0.2.12-next.1
- @backstage/plugin-org@0.6.20-next.1
- @backstage/plugin-pagerduty@0.7.2-next.1
- @backstage/plugin-playlist@0.2.4-next.1
- @backstage/plugin-puppetdb@0.1.13-next.1
- @backstage/plugin-rollbar@0.4.30-next.1
- @backstage/plugin-sentry@0.5.15-next.1
- @backstage/plugin-shortcuts@0.3.19-next.0
- @backstage/plugin-signals@0.0.1-next.1
- @backstage/plugin-stackstorm@0.1.11-next.0
- @backstage/plugin-tech-insights@0.3.22-next.1
- @backstage/plugin-techdocs-module-addons-contrib@1.1.5-next.1
- @backstage/plugin-techdocs-react@1.1.16-next.0
- @backstage/plugin-todo@0.2.34-next.1
- @backstage/config@1.1.1
- @backstage/theme@0.5.0
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-linguist-common@0.1.2
- @backstage/plugin-permission-react@0.4.20-next.0
- @backstage/plugin-search-common@1.2.10
example-app-next@0.0.6-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/frontend-app-api@0.6.0-next.1
- @backstage/plugin-scaffolder-react@1.8.0-next.1
- @backstage/core-compat-api@0.2.0-next.1
- @backstage/plugin-adr@0.6.13-next.1
- @backstage/plugin-catalog-graph@0.3.4-next.1
- @backstage/core-components@0.14.0-next.0
- @backstage/plugin-scaffolder@1.18.0-next.1
- @backstage/cli@0.25.2-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/plugin-explore@0.4.16-next.1
- @backstage/plugin-catalog@1.17.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/app-defaults@1.4.8-next.1
- @backstage/core-app-api@1.11.4-next.0
- @backstage/plugin-techdocs@1.10.0-next.1
- @backstage/plugin-azure-sites@0.1.19-next.1
- @backstage/plugin-home@0.6.2-next.1
- app-next-example-plugin@0.0.6-next.1
- @backstage/plugin-app-visualizer@0.1.1-next.1
- @backstage/plugin-catalog-import@0.10.6-next.1
- @backstage/plugin-catalog-react@1.9.4-next.1
- @backstage/plugin-devtools@0.1.9-next.1
- @backstage/plugin-graphiql@0.3.3-next.1
- @backstage/plugin-linguist@0.1.15-next.1
- @backstage/plugin-search@1.4.6-next.1
- @backstage/plugin-search-react@1.7.6-next.1
- @backstage/plugin-tech-radar@0.6.13-next.1
- @backstage/plugin-user-settings@0.8.1-next.1
- @backstage/integration-react@1.1.24-next.0
- @backstage/plugin-airbrake@0.3.30-next.1
- @backstage/plugin-apache-airflow@0.2.20-next.0
- @backstage/plugin-api-docs@0.10.4-next.1
- @backstage/plugin-azure-devops@0.3.12-next.1
- @backstage/plugin-badges@0.2.54-next.1
- @backstage/plugin-catalog-unprocessed-entities@0.1.8-next.0
- @backstage/plugin-cloudbuild@0.4.0-next.1
- @backstage/plugin-code-coverage@0.2.23-next.1
- @backstage/plugin-cost-insights@0.12.19-next.1
- @backstage/plugin-dynatrace@8.0.4-next.1
- @backstage/plugin-entity-feedback@0.2.13-next.1
- @backstage/plugin-gcalendar@0.3.23-next.0
- @backstage/plugin-gcp-projects@0.3.46-next.0
- @backstage/plugin-github-actions@0.6.11-next.1
- @backstage/plugin-gocd@0.1.36-next.1
- @backstage/plugin-jenkins@0.9.5-next.1
- @backstage/plugin-kafka@0.3.30-next.1
- @backstage/plugin-kubernetes@0.11.5-next.1
- @backstage/plugin-lighthouse@0.4.15-next.1
- @backstage/plugin-microsoft-calendar@0.1.12-next.0
- @backstage/plugin-newrelic@0.3.45-next.0
- @backstage/plugin-newrelic-dashboard@0.3.5-next.1
- @backstage/plugin-octopus-deploy@0.2.12-next.1
- @backstage/plugin-org@0.6.20-next.1
- @backstage/plugin-pagerduty@0.7.2-next.1
- @backstage/plugin-playlist@0.2.4-next.1
- @backstage/plugin-puppetdb@0.1.13-next.1
- @backstage/plugin-rollbar@0.4.30-next.1
- @backstage/plugin-sentry@0.5.15-next.1
- @backstage/plugin-shortcuts@0.3.19-next.0
- @backstage/plugin-stackstorm@0.1.11-next.0
- @backstage/plugin-tech-insights@0.3.22-next.1
- @backstage/plugin-techdocs-module-addons-contrib@1.1.5-next.1
- @backstage/plugin-techdocs-react@1.1.16-next.0
- @backstage/plugin-todo@0.2.34-next.1
- @backstage/theme@0.5.0
- @backstage/plugin-catalog-common@1.0.21-next.0
- @backstage/plugin-linguist-common@0.1.2
- @backstage/plugin-permission-react@0.4.20-next.0
- @backstage/plugin-search-common@1.2.10
app-next-example-plugin@0.0.6-next.1
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.6.0-next.1
- @backstage/core-components@0.14.0-next.0
example-backend@0.2.92-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.21.0-next.1
- @backstage/plugin-azure-devops-backend@0.5.2-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/catalog-client@1.6.0-next.1
- @backstage/plugin-catalog-backend@1.17.0-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/plugin-auth-backend@0.20.4-next.1
- @backstage/integration@1.9.0-next.0
- @backstage/plugin-azure-sites-common@0.1.2-next.0
- example-app@0.2.92-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/config@1.1.1
- @backstage/plugin-adr-backend@0.4.7-next.1
- @backstage/plugin-app-backend@0.3.58-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-badges-backend@0.3.7-next.1
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.7-next.1
- @backstage/plugin-catalog-backend-module-unprocessed@0.3.7-next.1
- @backstage/plugin-catalog-node@1.6.2-next.1
- @backstage/plugin-code-coverage-backend@0.2.24-next.1
- @backstage/plugin-devtools-backend@0.2.7-next.1
- @backstage/plugin-entity-feedback-backend@0.2.7-next.1
- @backstage/plugin-events-backend@0.2.19-next.1
- @backstage/plugin-events-node@0.2.19-next.1
- @backstage/plugin-explore-backend@0.0.20-next.1
- @backstage/plugin-jenkins-backend@0.3.4-next.1
- @backstage/plugin-kafka-backend@0.3.8-next.1
- @backstage/plugin-kubernetes-backend@0.14.2-next.1
- @backstage/plugin-lighthouse-backend@0.4.2-next.1
- @backstage/plugin-linguist-backend@0.5.7-next.1
- @backstage/plugin-nomad-backend@0.1.12-next.1
- @backstage/plugin-permission-backend@0.5.33-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
- @backstage/plugin-playlist-backend@0.3.14-next.1
- @backstage/plugin-proxy-backend@0.4.8-next.1
- @backstage/plugin-rollbar-backend@0.1.55-next.1
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.11-next.1
- @backstage/plugin-scaffolder-backend-module-rails@0.4.27-next.1
- @backstage/plugin-search-backend@1.5.0-next.1
- @backstage/plugin-search-backend-module-catalog@0.1.14-next.1
- @backstage/plugin-search-backend-module-elasticsearch@1.3.13-next.1
- @backstage/plugin-search-backend-module-explore@0.1.14-next.1
- @backstage/plugin-search-backend-module-pg@0.5.19-next.1
- @backstage/plugin-search-backend-module-techdocs@0.1.14-next.1
- @backstage/plugin-search-backend-node@1.2.14-next.1
- @backstage/plugin-search-common@1.2.10
- @backstage/plugin-signals-backend@0.0.1-next.1
- @backstage/plugin-signals-node@0.0.1-next.1
- @backstage/plugin-tech-insights-backend@0.5.24-next.1
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.42-next.1
- @backstage/plugin-tech-insights-node@0.4.16-next.1
- @backstage/plugin-techdocs-backend@1.9.3-next.1
- @backstage/plugin-todo-backend@0.3.8-next.1
example-backend-next@0.0.20-next.1
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-backend@1.21.0-next.1
- @backstage/plugin-azure-devops-backend@0.5.2-next.1
- @backstage/plugin-catalog-backend@1.17.0-next.1
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-defaults@0.2.10-next.1
- @backstage/backend-tasks@0.5.15-next.1
- @backstage/plugin-adr-backend@0.4.7-next.1
- @backstage/plugin-app-backend@0.3.58-next.1
- @backstage/plugin-auth-node@0.4.4-next.1
- @backstage/plugin-badges-backend@0.3.7-next.1
- @backstage/plugin-catalog-backend-module-backstage-openapi@0.1.3-next.1
- @backstage/plugin-catalog-backend-module-openapi@0.1.27-next.1
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.7-next.1
- @backstage/plugin-catalog-backend-module-unprocessed@0.3.7-next.1
- @backstage/plugin-devtools-backend@0.2.7-next.1
- @backstage/plugin-entity-feedback-backend@0.2.7-next.1
- @backstage/plugin-jenkins-backend@0.3.4-next.1
- @backstage/plugin-kubernetes-backend@0.14.2-next.1
- @backstage/plugin-lighthouse-backend@0.4.2-next.1
- @backstage/plugin-linguist-backend@0.5.7-next.1
- @backstage/plugin-nomad-backend@0.1.12-next.1
- @backstage/plugin-permission-backend@0.5.33-next.1
- @backstage/plugin-permission-backend-module-allow-all-policy@0.1.7-next.1
- @backstage/plugin-permission-common@0.7.12
- @backstage/plugin-permission-node@0.7.21-next.1
- @backstage/plugin-playlist-backend@0.3.14-next.1
- @backstage/plugin-proxy-backend@0.4.8-next.1
- @backstage/plugin-search-backend@1.5.0-next.1
- @backstage/plugin-search-backend-module-catalog@0.1.14-next.1
- @backstage/plugin-search-backend-module-explore@0.1.14-next.1
- @backstage/plugin-search-backend-module-techdocs@0.1.14-next.1
- @backstage/plugin-search-backend-node@1.2.14-next.1
- @backstage/plugin-sonarqube-backend@0.2.12-next.1
- @backstage/plugin-techdocs-backend@1.9.3-next.1
- @backstage/plugin-todo-backend@0.3.8-next.1
e2e-test@0.2.12-next.1
Patch Changes
- Updated dependencies
- @backstage/create-app@0.5.11-next.1
- @backstage/cli-common@0.1.13
- @backstage/errors@1.2.3
techdocs-cli-embedded-app@0.2.91-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/cli@0.25.2-next.1
- @backstage/catalog-model@1.4.4-next.0
- @backstage/test-utils@1.5.0-next.1
- @backstage/plugin-catalog@1.17.0-next.1
- @backstage/core-plugin-api@1.8.3-next.0
- @backstage/app-defaults@1.4.8-next.1
- @backstage/core-app-api@1.11.4-next.0
- @backstage/plugin-techdocs@1.10.0-next.1
- @backstage/integration-react@1.1.24-next.0
- @backstage/plugin-techdocs-react@1.1.16-next.0
- @backstage/config@1.1.1
- @backstage/theme@0.5.0
@internal/plugin-todo-list@1.0.22-next.0
Patch Changes
- Updated dependencies
- @backstage/core-components@0.14.0-next.0
- @backstage/core-plugin-api@1.8.3-next.0
@internal/plugin-todo-list-backend@1.0.22-next.1
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.10-next.1
- @backstage/backend-common@0.21.0-next.1
- @backstage/errors@1.2.3
- @backstage/plugin-auth-node@0.4.4-next.1