Release v1.19.0-next.2
@backstage/cli@0.23.0-next.2
Minor Changes
-
8defbd5434: Update typescript-eslint to 6.7.x, adding compatibility with TypeScript 5.2.
This includes a major update on typescript-eslint, you can see the details in the release notes.
Patch Changes
-
2ef6522552: Support for the
.icon.svgextension has been deprecated and will be removed in the future. The implementation of this extension is too tied to a particular version of MUI and the SVGO, and it makes it harder to evolve the build system. We may introduce the ability to reintroduce this kind of functionality in the future through configuration for use in internal plugins, but for now we're forced to remove it.To migrate existing code, rename the
.icon.svgfile to.tsxand replace the<svg>element with<SvgIcon>from MUI and add necessary imports. For example:import React from 'react';
import SvgIcon from '@material-ui/core/SvgIcon';
import { IconComponent } from '@backstage/core-plugin-api';
export const CodeSceneIcon = (props: SvgIconProps) => (
<SvgIcon {...props}>
<g>
<path d="..." />
</g>
</SvgIcon>
); -
Updated dependencies
- @backstage/catalog-model@1.4.3-next.0
- @backstage/config-loader@1.5.1-next.1
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/cli-common@0.1.13-next.0
- @backstage/cli-node@0.1.5-next.1
- @backstage/config@1.1.1-next.0
- @backstage/eslint-plugin@0.1.3
- @backstage/release-manifests@0.0.10
- @backstage/types@1.1.1
@backstage/core-app-api@1.11.0-next.2
Minor Changes
- c9d9bfeca2: URL encode some well known unsafe characters in
RouteResolver(and thereforeuseRouteRef)
Patch Changes
- acca17e91a: Wrap entire app in
<Suspense>, enabling support for using translations outside plugins. - Updated dependencies
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.5
@backstage/frontend-app-api@0.2.0-next.2
Minor Changes
- 4461d87d5a: Removed support for the new
useRouteRef.
Patch Changes
- 5072824817: Implement
toString()andtoJSON()for extension instances. - 06432f900c: Updates for
at->attachTorefactor. - 1718ec75b7: Added support for the existing routing system.
- Updated dependencies
- @backstage/frontend-plugin-api@0.2.0-next.2
- @backstage/core-app-api@1.11.0-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/plugin-graphiql@0.2.55-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.5
@backstage/frontend-plugin-api@0.2.0-next.2
Minor Changes
- 06432f900c: Extension attachment point is now configured via
attachTo: { id, input }instead ofat: 'id/input'. - 4461d87d5a: Removed support for the new
useRouteRef.
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/types@1.1.1
@techdocs/cli@1.6.0-next.2
Minor Changes
- d06b30b050: Add possibility to use a mkdocs config file with a different name than
mkdocs.<yaml|yml> with the serve command using the--mkdocs-config-file-name` argument
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-techdocs-node@1.9.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/cli-common@0.1.13-next.0
- @backstage/config@1.1.1-next.0
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.0-next.2
Minor Changes
- 6f142d5356: BREAKING
gcpIapAuthenticator.initialize()is no longerasync
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/types@1.1.1
@backstage/plugin-auth-backend-module-microsoft-provider@0.1.0-next.0
Minor Changes
- 2d8f7e82c1: Migrated the Microsoft auth provider to new
@backstage/plugin-auth-backend-module-microsoft-providermodule package.
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
@backstage/plugin-auth-node@0.4.0-next.2
Minor Changes
- 6f142d5356: BREAKING: The recently introduced
ProxyAuthenticator.initialize()method is no longerasyncto match the way the OAuth equivalent is implemented.
Patch Changes
- 8b8b1d23ae: Fixed cookie persisted scope not returned in OAuth refresh handler response.
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-catalog-backend-module-github-org@0.1.0-next.0
Minor Changes
- c101e683d5: Added
catalogModuleGithubOrgEntityProviderto ingest users and teams from multiple Github organizations.
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-catalog-backend-module-github@0.4.4-next.2
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-kubernetes-node@0.1.0-next.0
Minor Changes
- cbb0e3c3f4: A new plugin has been introduced to house the extension points for Kubernetes backend plugin; at the moment only the
KubernetesObjectsProviderExtensionPointis present. Thekubernetes-backendplugin was modified to use this new extension point.
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-kubernetes-common@0.7.0-next.1
- @backstage/backend-plugin-api@0.6.6-next.2
@backstage/plugin-newrelic-dashboard@0.3.0-next.2
Minor Changes
-
d7eba6cab4: Changes in
newrelic-dashboardplugin:- Make DashboardSnapshotList component public
- Settle discrepancies in the exported API
- Deprecate DashboardSnapshotComponent
Patch Changes
- 5194a51a1c: Fixed React Warning: "Each child in a list should have a unique 'key' prop" during the rendering of
EntityNewRelicDashboardCard - Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
@backstage/plugin-scaffolder-backend@1.18.0-next.2
Minor Changes
-
dea0aafda7: Updated
publish:gitlabaction properties to support additional Gitlab project settings:- general project settings provided by gitlab project create API (new
settingsproperty) - branch level settings to create additional branches and make them protected (new
branchesproperty) - project level environment variables settings (new
projectVariablesproperty)
Marked existed properties
repoVisibilityandtopicsas deprecated, as they are covered bysettingsproperty. - general project settings provided by gitlab project create API (new
Patch Changes
- 7dd82cc07e: Add examples for
github:issues:labelscaffolder action & improve related tests - 733ddf7130: Add examples for
publish:Azurescaffolder action. - Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/plugin-catalog-backend@1.14.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.3-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/plugin-scaffolder-node@0.2.6-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-scaffolder-common@1.4.2-next.0
@backstage/plugin-techdocs-backend@1.8.0-next.2
Minor Changes
-
344cfbcfbc: Allow prepared directory clean up for custom preparers
When using custom preparer for TechDocs, the
preparedDirmight end up taking disk space. This requires all custom preparers to implement a new methodshouldCleanPreparedDirectorywhich indicates whether the prepared directory should be cleaned after generation.
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-techdocs-node@1.9.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-search-backend-module-techdocs@0.1.10-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-techdocs-node@1.9.0-next.2
Minor Changes
-
344cfbcfbc: Allow prepared directory clean up for custom preparers
When using custom preparer for TechDocs, the
preparedDirmight end up taking disk space. This requires all custom preparers to implement a new methodshouldCleanPreparedDirectorywhich indicates whether the prepared directory should be cleaned after generation. -
d06b30b050: Add possibility to use a mkdocs config file with a different name than
mkdocs.<yaml|yml> with the serve command using the--mkdocs-config-file-name` argument
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/integration-aws-node@0.1.7-next.0
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/app-defaults@1.4.4-next.2
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.11.0-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-permission-react@0.4.16-next.1
@backstage/backend-app-api@0.5.6-next.2
Patch Changes
- 74491c9602: Moved
HostDiscoveryfrom@backstage/backend-common. - a4617c422a: Added
watchoption to configuration loaders that can be used to disable file watching by setting it tofalse. - Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/config-loader@1.5.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/cli-common@0.1.13-next.0
- @backstage/cli-node@0.1.5-next.1
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/backend-common@0.19.8-next.2
Patch Changes
- 74491c9602: The
HostDiscoveryexport has been deprecated, import it from@backstage/backend-app-apiinstead. - b95d66d4ea: Properly close write stream when writing temporary archive for processing zip-based
.readTree()responses. - 0b55f773a7: Removed some unused dependencies
- 4c39e38f1e: Added
/testUtilsentry point, with a utility for mocking resolve package paths as returned byresolvePackagePath. - a250ad775f: Removed
mock-fsdev dependency. - Updated dependencies
- @backstage/config-loader@1.5.1-next.1
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/backend-app-api@0.5.6-next.2
- @backstage/backend-dev-utils@0.1.2-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/cli-common@0.1.13-next.0
- @backstage/config@1.1.1-next.0
- @backstage/integration-aws-node@0.1.7-next.0
- @backstage/types@1.1.1
@backstage/backend-defaults@0.2.6-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/backend-app-api@0.5.6-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
@backstage/backend-openapi-utils@0.0.5-next.0
Patch Changes
-
7c83975531: Adds new public utility types for common OpenAPI values, like request and response shapes and parameters available on an endpoint.
deprecated
internalnamespace The internal namespace will continue to be exported but now uses OpenAPI format for path parameters. You should use the new utility types. -
Updated dependencies
- @backstage/errors@1.2.3-next.0
@backstage/backend-plugin-api@0.6.6-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/backend-tasks@0.5.11-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/backend-test-utils@0.2.7-next.2
Patch Changes
- a250ad775f: Added
createMockDirectory()to help out with file system mocking in tests. - 74491c9602: Updated to import
HostDiscoveryfrom@backstage/backend-app-api. - Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/backend-app-api@0.5.6-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/catalog-client@1.4.5-next.0
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
@backstage/catalog-model@1.4.3-next.0
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/errors@1.2.3-next.0
- @backstage/types@1.1.1
@backstage/cli-node@0.1.5-next.1
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.3-next.0
- @backstage/cli-common@0.1.13-next.0
- @backstage/types@1.1.1
@backstage/config@1.1.1-next.0
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.3-next.0
- @backstage/types@1.1.1
@backstage/config-loader@1.5.1-next.1
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- 30c553c1d2: Updated dependency
typescript-json-schemato^0.61.0. - a4617c422a: Added
watchoption to configuration loaders that can be used to disable file watching by setting it tofalse. - Updated dependencies
- @backstage/errors@1.2.3-next.0
- @backstage/cli-common@0.1.13-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/core-components@0.13.6-next.2
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- 8a15360bb4: Fixed overflowing messages in
WarningPanel. - Updated dependencies
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/version-bridge@1.0.5
@backstage/core-plugin-api@1.7.0-next.1
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.5
@backstage/create-app@0.5.6-next.2
Patch Changes
- Bumped create-app version.
- Updated dependencies
- @backstage/cli-common@0.1.13-next.0
@backstage/dev-utils@1.0.22-next.2
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.11.0-next.2
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/app-defaults@1.4.4-next.2
- @backstage/test-utils@1.4.4-next.2
@backstage/errors@1.2.3-next.0
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/types@1.1.1
@backstage/integration@1.7.1-next.1
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/config@1.1.1-next.0
@backstage/integration-aws-node@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.3-next.0
- @backstage/config@1.1.1-next.0
@backstage/integration-react@1.1.20-next.2
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/integration@1.7.1-next.1
- @backstage/config@1.1.1-next.0
@backstage/repo-tools@0.3.5-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/cli-common@0.1.13-next.0
- @backstage/cli-node@0.1.5-next.1
@backstage/test-utils@1.4.4-next.2
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.11.0-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-permission-react@0.4.16-next.1
@backstage/theme@0.4.3-next.0
Patch Changes
- 5ad5344756: Added support for string
fontSizevalues (e.g."2.5rem") in themes in addition to numbers. Also added an optionalfontFamilyprop for header typography variants to allow further customization.
@backstage/plugin-adr@0.6.8-next.2
Patch Changes
- 499e34656e: Fix icon alignment in
AdrSearchResultListItem - Updated dependencies
- @backstage/frontend-plugin-api@0.2.0-next.2
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/plugin-search-react@1.7.1-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-adr-common@0.2.16-next.1
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-adr-backend@0.4.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-adr-common@0.2.16-next.1
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-adr-common@0.2.16-next.1
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-airbrake@0.3.25-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/dev-utils@1.0.22-next.2
- @backstage/test-utils@1.4.4-next.2
@backstage/plugin-airbrake-backend@0.3.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-allure@0.1.41-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-analytics-module-ga@0.1.34-next.2
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
@backstage/plugin-analytics-module-ga4@0.1.5-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
@backstage/plugin-analytics-module-newrelic-browser@0.0.3-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/config@1.1.1-next.0
@backstage/plugin-apache-airflow@0.2.16-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
@backstage/plugin-api-docs@0.9.12-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/plugin-catalog@1.14.0-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-apollo-explorer@0.1.16-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
@backstage/plugin-app-backend@0.3.54-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/config-loader@1.5.1-next.1
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-app-node@0.1.6-next.2
@backstage/plugin-app-node@0.1.6-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.6-next.2
@backstage/plugin-auth-backend@0.19.3-next.2
Patch Changes
- 2d8f7e82c1: Migrated the Microsoft auth provider to new
@backstage/plugin-auth-backend-module-microsoft-providermodule package. - Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.0-next.2
- @backstage/plugin-auth-backend-module-microsoft-provider@0.1.0-next.0
- @backstage/plugin-auth-backend-module-github-provider@0.1.3-next.2
- @backstage/plugin-auth-backend-module-gitlab-provider@0.1.3-next.2
- @backstage/plugin-auth-backend-module-oauth2-provider@0.1.3-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-auth-backend-module-google-provider@0.1.3-next.2
@backstage/plugin-auth-backend-module-github-provider@0.1.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
@backstage/plugin-auth-backend-module-gitlab-provider@0.1.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
@backstage/plugin-auth-backend-module-google-provider@0.1.3-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
@backstage/plugin-auth-backend-module-oauth2-provider@0.1.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
@backstage/plugin-azure-devops@0.3.7-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-azure-devops-common@0.3.1
@backstage/plugin-azure-devops-backend@0.4.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-azure-devops-common@0.3.1
@backstage/plugin-azure-sites@0.1.14-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-azure-sites-common@0.1.1
@backstage/plugin-azure-sites-backend@0.1.16-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-azure-sites-common@0.1.1
@backstage/plugin-badges@0.2.49-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-badges-backend@0.3.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
@backstage/plugin-bazaar@0.2.17-next.2
Patch Changes
- Updated dependencies
- @backstage/cli@0.23.0-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-catalog@1.14.0-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/catalog-client@1.4.5-next.0
@backstage/plugin-bazaar-backend@0.3.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-bitbucket-cloud-common@0.2.13-next.1
Patch Changes
- Updated dependencies
- @backstage/integration@1.7.1-next.1
@backstage/plugin-bitrise@0.1.52-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-catalog@1.14.0-next.2
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/frontend-plugin-api@0.2.0-next.2
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-search-react@1.7.1-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/catalog-client@1.4.5-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-scaffolder-common@1.4.2-next.0
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-catalog-backend@1.14.0-next.2
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/backend-openapi-utils@0.0.5-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/plugin-search-backend-module-catalog@0.1.10-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-events-node@0.2.15-next.2
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-catalog-backend-module-aws@0.2.9-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-kubernetes-common@0.7.0-next.1
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/integration-aws-node@0.1.7-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.17-next.0
@backstage/plugin-catalog-backend-module-azure@0.1.25-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.17-next.0
@backstage/plugin-catalog-backend-module-bitbucket@0.2.21-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-bitbucket-cloud-common@0.2.13-next.1
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.21-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-bitbucket-cloud-common@0.2.13-next.1
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-events-node@0.2.15-next.2
@backstage/plugin-catalog-backend-module-bitbucket-server@0.1.19-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-catalog-backend-module-gcp@0.1.6-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-kubernetes-common@0.7.0-next.1
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-catalog-backend-module-gerrit@0.1.22-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-catalog-backend-module-github@0.4.4-next.2
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- c101e683d5: Removed
catalogModuleGithubOrgEntityProvider. Import from@backstage/plugin-catalog-backend-module-github-orginstead. - Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-catalog-backend@1.14.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-events-node@0.2.15-next.2
@backstage/plugin-catalog-backend-module-gitlab@0.3.3-next.2
Patch Changes
-
4f70fdfc93: fix: use REST API to get root group memberships for GitLab SaaS users listing
This API is the only one that shows
emailfield for enterprise users and allows to filter out bot users not using a license using theis_using_seatfield.We also added the annotation
gitlab.com/saml-external-uidtaking the value ofgroup_saml_identity.extern_uidof thegroups/:group-id/membersendpoint response. This is useful in case you want to create aSignInResolverthat references the user with the id of your identity provider (e.g. OneLogin).ref:
https://docs.gitlab.com/ee/user/enterprise_user/#get-users-email-addresses-through-the-api https://docs.gitlab.com/ee/api/members.html#limitations
-
0b55f773a7: Removed some unused dependencies
-
Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.4.10-next.2
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-catalog-backend@1.14.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-events-node@0.2.15-next.2
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-catalog-backend-module-ldap@0.5.21-next.2
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.17-next.0
@backstage/plugin-catalog-backend-module-msgraph@0.5.13-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-catalog-common@1.0.17-next.0
@backstage/plugin-catalog-backend-module-openapi@0.1.23-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-catalog-backend@1.14.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.17-next.0
@backstage/plugin-catalog-backend-module-puppetdb@0.1.11-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-scaffolder-common@1.4.2-next.0
@backstage/plugin-catalog-backend-module-unprocessed@0.3.3-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
@backstage/plugin-catalog-common@1.0.17-next.0
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-catalog-graph@0.2.37-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/catalog-client@1.4.5-next.0
- @backstage/types@1.1.1
@backstage/plugin-catalog-graphql@0.3.24-next.0
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-catalog-import@0.10.1-next.2
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-catalog-common@1.0.17-next.0
@backstage/plugin-catalog-node@1.4.7-next.2
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.17-next.0
@backstage/plugin-catalog-react@1.8.5-next.2
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/catalog-client@1.4.5-next.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.5
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-permission-react@0.4.16-next.1
@backstage/plugin-catalog-unprocessed-entities@0.1.4-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-cicd-statistics@0.1.27-next.2
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
@backstage/plugin-cicd-statistics-module-gitlab@0.1.21-next.2
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/plugin-cicd-statistics@0.1.27-next.2
- @backstage/catalog-model@1.4.3-next.0
@backstage/plugin-circleci@0.3.25-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-cloudbuild@0.3.25-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-code-climate@0.1.25-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-code-coverage@0.2.18-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
@backstage/plugin-code-coverage-backend@0.2.20-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
@backstage/plugin-codescene@0.1.18-next.2
Patch Changes
- 9c9a9100b0: Internal refactor to avoid using the deprecated
.icon.svgextension. - Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
@backstage/plugin-config-schema@0.1.46-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-cost-insights@0.12.14-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-cost-insights-common@0.1.2
@backstage/plugin-devtools@0.1.5-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/types@1.1.1
- @backstage/plugin-devtools-common@0.1.5-next.0
- @backstage/plugin-permission-react@0.4.16-next.1
@backstage/plugin-devtools-backend@0.2.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/config-loader@1.5.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/cli-common@0.1.13-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-devtools-common@0.1.5-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-devtools-common@0.1.5-next.0
Patch Changes
- Updated dependencies
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-dynatrace@7.0.5-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-entity-feedback@0.2.8-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-entity-feedback-common@0.1.3
@backstage/plugin-entity-feedback-backend@0.2.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-entity-feedback-common@0.1.3
@backstage/plugin-entity-validation@0.1.10-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/catalog-client@1.4.5-next.0
- @backstage/plugin-catalog-common@1.0.17-next.0
@backstage/plugin-events-backend@0.2.15-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-events-node@0.2.15-next.2
@backstage/plugin-events-backend-module-aws-sqs@0.2.9-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-events-node@0.2.15-next.2
@backstage/plugin-events-backend-module-azure@0.1.16-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/plugin-events-node@0.2.15-next.2
@backstage/plugin-events-backend-module-bitbucket-cloud@0.1.16-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/plugin-events-node@0.2.15-next.2
@backstage/plugin-events-backend-module-gerrit@0.1.16-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/plugin-events-node@0.2.15-next.2
@backstage/plugin-events-backend-module-github@0.1.16-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-events-node@0.2.15-next.2
@backstage/plugin-events-backend-module-gitlab@0.1.16-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-events-node@0.2.15-next.2
@backstage/plugin-events-backend-test-utils@0.1.16-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.2.15-next.2
@backstage/plugin-events-node@0.2.15-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.6-next.2
@backstage/plugin-explore@0.4.11-next.2
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.2.0-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-search-react@1.7.1-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-explore-common@0.0.2
- @backstage/plugin-explore-react@0.0.32-next.1
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-explore-backend@0.0.16-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-search-backend-module-explore@0.1.10-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-explore-common@0.0.2
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-explore-react@0.0.32-next.1
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/plugin-explore-common@0.0.2
@backstage/plugin-firehydrant@0.2.9-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-fossa@0.2.57-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-gcalendar@0.3.19-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-gcp-projects@0.3.42-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
@backstage/plugin-git-release-manager@0.3.38-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/integration@1.7.1-next.1
- @backstage/theme@0.4.3-next.0
@backstage/plugin-github-actions@0.6.6-next.2
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/integration@1.7.1-next.1
- @backstage/theme@0.4.3-next.0
@backstage/plugin-github-deployments@0.1.56-next.2
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-github-issues@0.2.14-next.2
Patch Changes
- 7bd0a8ab3c: Filters out entities that belonged to a different github instance other than the one configured by the plugin
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-github-pull-requests-board@0.1.19-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/integration@1.7.1-next.1
- @backstage/theme@0.4.3-next.0
@backstage/plugin-gitops-profiles@0.3.41-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
@backstage/plugin-gocd@0.1.31-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-graphiql@0.2.55-next.2
Patch Changes
- 9c9a9100b0: Internal refactor to avoid using the deprecated
.icon.svgextension. - 06432f900c: Updated
/alphaexports to use newattachTooption. - Updated dependencies
- @backstage/frontend-plugin-api@0.2.0-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
@backstage/plugin-graphql-backend@0.1.44-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-catalog-graphql@0.3.24-next.0
@backstage/plugin-graphql-voyager@0.1.8-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
@backstage/plugin-home@0.5.9-next.2
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.11.0-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-home-react@0.1.4-next.2
@backstage/plugin-home-react@0.1.4-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
@backstage/plugin-ilert@0.2.14-next.2
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- 9c9a9100b0: Internal refactor to avoid using the deprecated
.icon.svgextension. - Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-jenkins@0.8.7-next.2
Patch Changes
- 1a05cf34f6: Extend EntityJenkinsContent to receive columns as prop
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-jenkins-common@0.1.20-next.0
@backstage/plugin-jenkins-backend@0.2.9-next.2
Patch Changes
- 930ac236d8: Added support for the new backend system
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-jenkins-common@0.1.20-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-jenkins-common@0.1.20-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-kafka@0.3.25-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
@backstage/plugin-kafka-backend@0.3.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-kubernetes@0.11.0-next.2
Patch Changes
- 95518765ee: Add Kubernetes cluster plugin. Viewing Kubernetes clusters as an Admin from Backstage
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-kubernetes-react@0.1.0-next.1
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-kubernetes-common@0.7.0-next.1
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-kubernetes-backend@0.12.3-next.2
Patch Changes
- cbb0e3c3f4: A new plugin has been introduced to house the extension points for Kubernetes backend plugin; at the moment only the
KubernetesObjectsProviderExtensionPointis present. Thekubernetes-backendplugin was modified to use this new extension point. - 95518765ee: Add Kubernetes cluster plugin. Viewing Kubernetes clusters as an Admin from Backstage
- 5dac12e435: The kubernetes APIs invokes Authentication Strategies when Backstage-Kubernetes-Authorization-X-X headers are provided, this enable the possibility to invoke strategies that executes additional steps to get a kubernetes token like on pinniped or custom strategies
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-kubernetes-node@0.1.0-next.0
- @backstage/plugin-kubernetes-common@0.7.0-next.1
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/integration-aws-node@0.1.7-next.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-kubernetes-cluster@0.0.1-next.0
Patch Changes
- 95518765ee: Add Kubernetes cluster plugin. Viewing Kubernetes clusters as an Admin from Backstage
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-kubernetes-react@0.1.0-next.1
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-kubernetes-common@0.7.0-next.1
- @backstage/config@1.1.1-next.0
@backstage/plugin-kubernetes-common@0.7.0-next.1
Patch Changes
- 5dac12e435: The kubernetes APIs invokes Authentication Strategies when Backstage-Kubernetes-Authorization-X-X headers are provided, this enable the possibility to invoke strategies that executes additional steps to get a kubernetes token like on pinniped or custom strategies
- Updated dependencies
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-kubernetes-react@0.1.0-next.1
Patch Changes
- 95518765ee: Add Kubernetes cluster plugin. Viewing Kubernetes clusters as an Admin from Backstage
- 5dac12e435: The kubernetes APIs invokes Authentication Strategies when Backstage-Kubernetes-Authorization-X-X headers are provided, this enable the possibility to invoke strategies that executes additional steps to get a kubernetes token like on pinniped or custom strategies
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-kubernetes-common@0.7.0-next.1
- @backstage/types@1.1.1
@backstage/plugin-lighthouse@0.4.10-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-lighthouse-common@0.1.4-next.0
@backstage/plugin-lighthouse-backend@0.3.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-lighthouse-common@0.1.4-next.0
@backstage/plugin-lighthouse-common@0.1.4-next.0
Patch Changes
- Updated dependencies
- @backstage/config@1.1.1-next.0
@backstage/plugin-linguist@0.1.10-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-linguist-common@0.1.2
@backstage/plugin-linguist-backend@0.5.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-linguist-common@0.1.2
@backstage/plugin-microsoft-calendar@0.1.8-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-newrelic@0.3.41-next.2
Patch Changes
- ce50a15506: Fixed sorting and searching in the NewRelic table.
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
@backstage/plugin-nomad@0.1.6-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
@backstage/plugin-nomad-backend@0.1.8-next.2
Patch Changes
- 6822918c50: Added support for the new backend system
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-octopus-deploy@0.2.7-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-opencost@0.2.1-next.2
Patch Changes
- 777b9a16a4: Fix for broken image reference.
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
@backstage/plugin-org@0.6.15-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-org-react@0.1.14-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/catalog-client@1.4.5-next.0
@backstage/plugin-pagerduty@0.6.6-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-home-react@0.1.4-next.2
@backstage/plugin-periskop@0.1.23-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-periskop-backend@0.2.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-permission-backend@0.5.29-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-permission-backend-module-allow-all-policy@0.1.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-permission-common@0.7.9-next.0
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-permission-node@0.7.17-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-permission-react@0.4.16-next.1
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/config@1.1.1-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-playlist@0.1.17-next.2
Patch Changes
- 65498193e8: Updated Playlist read me with additional screenshots
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-search-react@1.7.1-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-permission-react@0.4.16-next.1
- @backstage/plugin-playlist-common@0.1.11-next.0
@backstage/plugin-playlist-backend@0.3.10-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-playlist-common@0.1.11-next.0
@backstage/plugin-playlist-common@0.1.11-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-proxy-backend@0.4.3-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-puppetdb@0.1.8-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-rollbar@0.4.25-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-rollbar-backend@0.1.51-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-scaffolder@1.15.1-next.2
Patch Changes
- ff2ab02690: Make entity picker more reliable with only one available entity
- 83e4a42ccd: Display log visibility button on the template panel
- 4c70fe497d:
RepoUrlPickerRepoNamenow correctly handles value changes in allowed repos. - Updated dependencies
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-permission-react@0.4.16-next.1
- @backstage/plugin-scaffolder-common@1.4.2-next.0
- @backstage/plugin-scaffolder-react@1.5.6-next.2
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.7-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-scaffolder-node@0.2.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.30-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-scaffolder-node@0.2.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-backend-module-gitlab@0.2.9-next.2
Patch Changes
- Updated dependencies
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-scaffolder-node@0.2.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-scaffolder-backend-module-rails@0.4.23-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-scaffolder-node@0.2.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-backend-module-sentry@0.1.14-next.2
Patch Changes
- Updated dependencies
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-scaffolder-node@0.2.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-scaffolder-backend-module-yeoman@0.2.27-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.2.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
@backstage/plugin-scaffolder-common@1.4.2-next.0
Patch Changes
- Updated dependencies
- @backstage/catalog-model@1.4.3-next.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-scaffolder-node@0.2.6-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/types@1.1.1
- @backstage/plugin-scaffolder-common@1.4.2-next.0
@backstage/plugin-scaffolder-react@1.5.6-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/catalog-client@1.4.5-next.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.5
- @backstage/plugin-scaffolder-common@1.4.2-next.0
@backstage/plugin-search@1.4.1-next.2
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.2.0-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-search-react@1.7.1-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.5
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-search-backend@1.4.6-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/backend-openapi-utils@0.0.5-next.0
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/plugin-search-backend-node@1.2.10-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-search-backend-module-catalog@0.1.10-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/plugin-search-backend-node@1.2.10-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-search-backend-module-elasticsearch@1.3.9-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-search-backend-node@1.2.10-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/integration-aws-node@0.1.7-next.0
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-search-backend-module-explore@0.1.10-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-search-backend-node@1.2.10-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-explore-common@0.0.2
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-search-backend-module-pg@0.5.15-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-search-backend-node@1.2.10-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-search-backend-module-techdocs@0.1.10-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-techdocs-node@1.9.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/plugin-search-backend-node@1.2.10-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-search-backend-node@1.2.10-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-search-common@1.2.7-next.0
Patch Changes
- Updated dependencies
- @backstage/types@1.1.1
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/plugin-search-react@1.7.1-next.2
Patch Changes
- 06432f900c: Updated
/alphaexports to use newattachTooption. - Updated dependencies
- @backstage/frontend-plugin-api@0.2.0-next.2
- @backstage/frontend-app-api@0.2.0-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
- @backstage/types@1.1.1
- @backstage/version-bridge@1.0.5
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-sentry@0.5.10-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-shortcuts@0.3.15-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
- @backstage/types@1.1.1
@backstage/plugin-sonarqube@0.7.6-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-sonarqube-react@0.1.9-next.1
@backstage/plugin-sonarqube-backend@0.2.8-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-sonarqube-react@0.1.9-next.1
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
@backstage/plugin-splunk-on-call@0.4.14-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/theme@0.4.3-next.0
@backstage/plugin-stack-overflow@0.1.21-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/plugin-search-react@1.7.1-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-home-react@0.1.4-next.2
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-stack-overflow-backend@0.2.10-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-search-common@1.2.7-next.0
@backstage/plugin-stackstorm@0.1.7-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-tech-insights@0.3.17-next.2
Patch Changes
- 21f409d776: Export
ScorecardInfoandScorecardsListcomponents to be able to use manually queried check results directly. - Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-insights-backend@0.5.20-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-tech-insights-node@0.4.12-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-insights-backend-module-jsonfc@0.1.38-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-tech-insights-node@0.4.12-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-insights-node@0.4.12-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-tech-insights-common@0.2.12
@backstage/plugin-tech-radar@0.6.9-next.2
Patch Changes
- 0b55f773a7: Removed some unused dependencies
- Updated dependencies
- @backstage/frontend-plugin-api@0.2.0-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
@backstage/plugin-techdocs@1.7.1-next.2
Patch Changes
- 3605370af6: Improved
DocsTableto display pagination controls dynamically, appearing only when needed. - Updated dependencies
- @backstage/frontend-plugin-api@0.2.0-next.2
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/plugin-search-react@1.7.1-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-search-common@1.2.7-next.0
- @backstage/plugin-techdocs-react@1.1.12-next.2
@backstage/plugin-techdocs-addons-test-utils@1.0.22-next.2
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.11.0-next.2
- @backstage/plugin-techdocs@1.7.1-next.2
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/plugin-catalog@1.14.0-next.2
- @backstage/plugin-search-react@1.7.1-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/test-utils@1.4.4-next.2
- @backstage/plugin-techdocs-react@1.1.12-next.2
@backstage/plugin-techdocs-module-addons-contrib@1.1.1-next.2
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/integration@1.7.1-next.1
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-techdocs-react@1.1.12-next.2
@backstage/plugin-techdocs-react@1.1.12-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/config@1.1.1-next.0
- @backstage/version-bridge@1.0.5
@backstage/plugin-todo@0.2.28-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-todo-backend@0.3.4-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/backend-openapi-utils@0.0.5-next.0
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
@backstage/plugin-user-settings@0.7.11-next.2
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.11.0-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
- @backstage/types@1.1.1
@backstage/plugin-user-settings-backend@0.2.4-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/types@1.1.1
@backstage/plugin-vault@0.1.20-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
@backstage/plugin-vault-backend@0.3.11-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/config@1.1.1-next.0
@backstage/plugin-xcmetrics@0.2.44-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/errors@1.2.3-next.0
- @backstage/theme@0.4.3-next.0
example-app@0.2.88-next.2
Patch Changes
- Updated dependencies
- @backstage/cli@0.23.0-next.2
- @backstage/frontend-app-api@0.2.0-next.2
- @backstage/core-app-api@1.11.0-next.2
- @backstage/plugin-techdocs@1.7.1-next.2
- @backstage/plugin-newrelic@0.3.41-next.2
- @backstage/plugin-scaffolder@1.15.1-next.2
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/plugin-tech-radar@0.6.9-next.2
- @backstage/plugin-catalog@1.14.0-next.2
- @backstage/plugin-adr@0.6.8-next.2
- @backstage/plugin-graphiql@0.2.55-next.2
- @backstage/plugin-search-react@1.7.1-next.2
- @backstage/plugin-newrelic-dashboard@0.3.0-next.2
- @backstage/plugin-kubernetes-cluster@0.0.1-next.0
- @backstage/plugin-kubernetes@0.11.0-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-jenkins@0.8.7-next.2
- @backstage/plugin-tech-insights@0.3.17-next.2
- @backstage/plugin-playlist@0.1.17-next.2
- @backstage/app-defaults@1.4.4-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-airbrake@0.3.25-next.2
- @backstage/plugin-apache-airflow@0.2.16-next.2
- @backstage/plugin-api-docs@0.9.12-next.2
- @backstage/plugin-azure-devops@0.3.7-next.2
- @backstage/plugin-azure-sites@0.1.14-next.2
- @backstage/plugin-badges@0.2.49-next.2
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-catalog-graph@0.2.37-next.2
- @backstage/plugin-catalog-import@0.10.1-next.2
- @backstage/plugin-catalog-unprocessed-entities@0.1.4-next.2
- @backstage/plugin-circleci@0.3.25-next.2
- @backstage/plugin-cloudbuild@0.3.25-next.2
- @backstage/plugin-code-coverage@0.2.18-next.2
- @backstage/plugin-cost-insights@0.12.14-next.2
- @backstage/plugin-devtools@0.1.5-next.2
- @backstage/plugin-dynatrace@7.0.5-next.2
- @backstage/plugin-entity-feedback@0.2.8-next.2
- @backstage/plugin-explore@0.4.11-next.2
- @backstage/plugin-gcalendar@0.3.19-next.2
- @backstage/plugin-gcp-projects@0.3.42-next.2
- @backstage/plugin-github-actions@0.6.6-next.2
- @backstage/plugin-gocd@0.1.31-next.2
- @backstage/plugin-home@0.5.9-next.2
- @backstage/plugin-kafka@0.3.25-next.2
- @backstage/plugin-lighthouse@0.4.10-next.2
- @backstage/plugin-linguist@0.1.10-next.2
- @backstage/plugin-linguist-common@0.1.2
- @backstage/plugin-microsoft-calendar@0.1.8-next.2
- @backstage/plugin-nomad@0.1.6-next.2
- @backstage/plugin-octopus-deploy@0.2.7-next.2
- @backstage/plugin-org@0.6.15-next.2
- @backstage/plugin-pagerduty@0.6.6-next.2
- @backstage/plugin-permission-react@0.4.16-next.1
- @backstage/plugin-puppetdb@0.1.8-next.2
- @backstage/plugin-rollbar@0.4.25-next.2
- @backstage/plugin-scaffolder-react@1.5.6-next.2
- @backstage/plugin-search@1.4.1-next.2
- @backstage/plugin-search-common@1.2.7-next.0
- @backstage/plugin-sentry@0.5.10-next.2
- @backstage/plugin-shortcuts@0.3.15-next.2
- @backstage/plugin-stack-overflow@0.1.21-next.2
- @backstage/plugin-stackstorm@0.1.7-next.2
- @backstage/plugin-techdocs-module-addons-contrib@1.1.1-next.2
- @backstage/plugin-techdocs-react@1.1.12-next.2
- @backstage/plugin-todo@0.2.28-next.2
- @backstage/plugin-user-settings@0.7.11-next.2
example-app-next@0.0.2-next.2
Patch Changes
- Updated dependencies
- @backstage/cli@0.23.0-next.2
- @backstage/frontend-plugin-api@0.2.0-next.2
- @backstage/frontend-app-api@0.2.0-next.2
- @backstage/core-app-api@1.11.0-next.2
- @backstage/plugin-techdocs@1.7.1-next.2
- @backstage/plugin-newrelic@0.3.41-next.2
- @backstage/plugin-scaffolder@1.15.1-next.2
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog-react@1.8.5-next.2
- @backstage/plugin-tech-radar@0.6.9-next.2
- @backstage/plugin-catalog@1.14.0-next.2
- @backstage/plugin-adr@0.6.8-next.2
- @backstage/plugin-graphiql@0.2.55-next.2
- @backstage/plugin-search-react@1.7.1-next.2
- @backstage/plugin-newrelic-dashboard@0.3.0-next.2
- @backstage/plugin-kubernetes@0.11.0-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/plugin-jenkins@0.8.7-next.2
- @backstage/plugin-tech-insights@0.3.17-next.2
- @backstage/plugin-playlist@0.1.17-next.2
- @backstage/app-defaults@1.4.4-next.2
- app-next-example-plugin@0.0.2-next.2
- @backstage/config@1.1.1-next.0
- @backstage/plugin-airbrake@0.3.25-next.2
- @backstage/plugin-apache-airflow@0.2.16-next.2
- @backstage/plugin-api-docs@0.9.12-next.2
- @backstage/plugin-azure-devops@0.3.7-next.2
- @backstage/plugin-azure-sites@0.1.14-next.2
- @backstage/plugin-badges@0.2.49-next.2
- @backstage/plugin-catalog-common@1.0.17-next.0
- @backstage/plugin-catalog-graph@0.2.37-next.2
- @backstage/plugin-catalog-import@0.10.1-next.2
- @backstage/plugin-catalog-unprocessed-entities@0.1.4-next.2
- @backstage/plugin-circleci@0.3.25-next.2
- @backstage/plugin-cloudbuild@0.3.25-next.2
- @backstage/plugin-code-coverage@0.2.18-next.2
- @backstage/plugin-cost-insights@0.12.14-next.2
- @backstage/plugin-devtools@0.1.5-next.2
- @backstage/plugin-dynatrace@7.0.5-next.2
- @backstage/plugin-entity-feedback@0.2.8-next.2
- @backstage/plugin-explore@0.4.11-next.2
- @backstage/plugin-gcalendar@0.3.19-next.2
- @backstage/plugin-gcp-projects@0.3.42-next.2
- @backstage/plugin-github-actions@0.6.6-next.2
- @backstage/plugin-gocd@0.1.31-next.2
- @backstage/plugin-home@0.5.9-next.2
- @backstage/plugin-kafka@0.3.25-next.2
- @backstage/plugin-lighthouse@0.4.10-next.2
- @backstage/plugin-linguist@0.1.10-next.2
- @backstage/plugin-linguist-common@0.1.2
- @backstage/plugin-microsoft-calendar@0.1.8-next.2
- @backstage/plugin-octopus-deploy@0.2.7-next.2
- @backstage/plugin-org@0.6.15-next.2
- @backstage/plugin-pagerduty@0.6.6-next.2
- @backstage/plugin-permission-react@0.4.16-next.1
- @backstage/plugin-puppetdb@0.1.8-next.2
- @backstage/plugin-rollbar@0.4.25-next.2
- @backstage/plugin-scaffolder-react@1.5.6-next.2
- @backstage/plugin-search@1.4.1-next.2
- @backstage/plugin-search-common@1.2.7-next.0
- @backstage/plugin-sentry@0.5.10-next.2
- @backstage/plugin-shortcuts@0.3.15-next.2
- @backstage/plugin-stack-overflow@0.1.21-next.2
- @backstage/plugin-stackstorm@0.1.7-next.2
- @backstage/plugin-techdocs-module-addons-contrib@1.1.1-next.2
- @backstage/plugin-techdocs-react@1.1.12-next.2
- @backstage/plugin-todo@0.2.28-next.2
- @backstage/plugin-user-settings@0.7.11-next.2
app-next-example-plugin@0.0.2-next.2
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.2.0-next.2
- @backstage/core-components@0.13.6-next.2
example-backend@0.2.88-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-nomad-backend@0.1.8-next.2
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-scaffolder-backend@1.18.0-next.2
- @backstage/plugin-techdocs-backend@1.8.0-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/plugin-catalog-backend@1.14.0-next.2
- @backstage/catalog-model@1.4.3-next.0
- @backstage/integration@1.7.1-next.1
- @backstage/plugin-kubernetes-backend@0.12.3-next.2
- @backstage/plugin-jenkins-backend@0.2.9-next.2
- @backstage/plugin-auth-backend@0.19.3-next.2
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-adr-backend@0.4.3-next.2
- @backstage/plugin-app-backend@0.3.54-next.2
- @backstage/plugin-azure-devops-backend@0.4.3-next.2
- @backstage/plugin-azure-sites-backend@0.1.16-next.2
- @backstage/plugin-badges-backend@0.3.3-next.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.3-next.2
- @backstage/plugin-catalog-node@1.4.7-next.2
- @backstage/plugin-code-coverage-backend@0.2.20-next.2
- @backstage/plugin-devtools-backend@0.2.3-next.2
- @backstage/plugin-entity-feedback-backend@0.2.3-next.2
- @backstage/plugin-events-backend@0.2.15-next.2
- @backstage/plugin-explore-backend@0.0.16-next.2
- @backstage/plugin-graphql-backend@0.1.44-next.2
- @backstage/plugin-kafka-backend@0.3.3-next.2
- @backstage/plugin-lighthouse-backend@0.3.3-next.2
- @backstage/plugin-linguist-backend@0.5.3-next.2
- @backstage/plugin-permission-backend@0.5.29-next.2
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/plugin-playlist-backend@0.3.10-next.2
- @backstage/plugin-proxy-backend@0.4.3-next.2
- @backstage/plugin-rollbar-backend@0.1.51-next.2
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.7-next.2
- @backstage/plugin-scaffolder-backend-module-rails@0.4.23-next.2
- @backstage/plugin-search-backend@1.4.6-next.2
- @backstage/plugin-search-backend-module-catalog@0.1.10-next.2
- @backstage/plugin-search-backend-module-elasticsearch@1.3.9-next.2
- @backstage/plugin-search-backend-module-explore@0.1.10-next.2
- @backstage/plugin-search-backend-module-pg@0.5.15-next.2
- @backstage/plugin-search-backend-module-techdocs@0.1.10-next.2
- @backstage/plugin-search-backend-node@1.2.10-next.2
- @backstage/plugin-tech-insights-backend@0.5.20-next.2
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.38-next.2
- @backstage/plugin-tech-insights-node@0.4.12-next.2
- @backstage/plugin-todo-backend@0.3.4-next.2
- example-app@0.2.88-next.2
- @backstage/catalog-client@1.4.5-next.0
- @backstage/config@1.1.1-next.0
- @backstage/plugin-catalog-backend-module-unprocessed@0.3.3-next.2
- @backstage/plugin-events-node@0.2.15-next.2
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-search-common@1.2.7-next.0
example-backend-next@0.0.16-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-nomad-backend@0.1.8-next.2
- @backstage/plugin-scaffolder-backend@1.18.0-next.2
- @backstage/plugin-techdocs-backend@1.8.0-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/plugin-catalog-backend@1.14.0-next.2
- @backstage/plugin-kubernetes-backend@0.12.3-next.2
- @backstage/plugin-jenkins-backend@0.2.9-next.2
- @backstage/backend-defaults@0.2.6-next.2
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-adr-backend@0.4.3-next.2
- @backstage/plugin-app-backend@0.3.54-next.2
- @backstage/plugin-azure-devops-backend@0.4.3-next.2
- @backstage/plugin-badges-backend@0.3.3-next.2
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.1.3-next.2
- @backstage/plugin-devtools-backend@0.2.3-next.2
- @backstage/plugin-entity-feedback-backend@0.2.3-next.2
- @backstage/plugin-lighthouse-backend@0.3.3-next.2
- @backstage/plugin-linguist-backend@0.5.3-next.2
- @backstage/plugin-permission-backend@0.5.29-next.2
- @backstage/plugin-permission-backend-module-allow-all-policy@0.1.3-next.2
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/plugin-playlist-backend@0.3.10-next.2
- @backstage/plugin-proxy-backend@0.4.3-next.2
- @backstage/plugin-search-backend@1.4.6-next.2
- @backstage/plugin-search-backend-module-catalog@0.1.10-next.2
- @backstage/plugin-search-backend-module-explore@0.1.10-next.2
- @backstage/plugin-search-backend-module-techdocs@0.1.10-next.2
- @backstage/plugin-search-backend-node@1.2.10-next.2
- @backstage/plugin-sonarqube-backend@0.2.8-next.2
- @backstage/plugin-todo-backend@0.3.4-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/plugin-catalog-backend-module-unprocessed@0.3.3-next.2
- @backstage/plugin-permission-common@0.7.9-next.0
@backstage/backend-plugin-manager@0.0.2-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/plugin-catalog-backend@1.14.0-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/backend-tasks@0.5.11-next.2
- @backstage/plugin-events-backend@0.2.15-next.2
- @backstage/plugin-permission-node@0.7.17-next.2
- @backstage/plugin-scaffolder-node@0.2.6-next.2
- @backstage/plugin-search-backend-node@1.2.10-next.2
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/cli-common@0.1.13-next.0
- @backstage/cli-node@0.1.5-next.1
- @backstage/config@1.1.1-next.0
- @backstage/types@1.1.1
- @backstage/plugin-events-node@0.2.15-next.2
- @backstage/plugin-permission-common@0.7.9-next.0
- @backstage/plugin-search-common@1.2.7-next.0
e2e-test@0.2.8-next.2
Patch Changes
- Updated dependencies
- @backstage/create-app@0.5.6-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/cli-common@0.1.13-next.0
techdocs-cli-embedded-app@0.2.87-next.2
Patch Changes
- Updated dependencies
- @backstage/cli@0.23.0-next.2
- @backstage/core-app-api@1.11.0-next.2
- @backstage/plugin-techdocs@1.7.1-next.2
- @backstage/integration-react@1.1.20-next.2
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/catalog-model@1.4.3-next.0
- @backstage/plugin-catalog@1.14.0-next.2
- @backstage/theme@0.4.3-next.0
- @backstage/app-defaults@1.4.4-next.2
- @backstage/config@1.1.1-next.0
- @backstage/test-utils@1.4.4-next.2
- @backstage/plugin-techdocs-react@1.1.12-next.2
@internal/plugin-todo-list@1.0.18-next.2
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.6-next.2
- @backstage/core-plugin-api@1.7.0-next.1
- @backstage/theme@0.4.3-next.0
@internal/plugin-todo-list-backend@1.0.18-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.8-next.2
- @backstage/plugin-auth-node@0.4.0-next.2
- @backstage/errors@1.2.3-next.0
- @backstage/backend-plugin-api@0.6.6-next.2
- @backstage/config@1.1.1-next.0
@internal/plugin-todo-list-common@1.0.14-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-permission-common@0.7.9-next.0