Release v1.18.0-next.0
@backstage/config-loader@1.5.0-next.0
Minor Changes
-
9606ba0939e6: Deep visibility now also applies to values that are not covered by the configuration schema.
For example, given the following configuration schema:
// plugins/a/config.schema.ts
export interface Config {
/** @deepVisibility frontend */
a?: unknown;
}
// plugins/a/config.schema.ts
export interface Config {
a?: {
b?: string;
};
}All values under
aare now visible to the frontend, while previously onlyaanda/bwould've been visible.
Patch Changes
- f9657b891b00: Do not unnecessarily notify subscribers when no-op updates to config happen
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/core-app-api@1.10.0-next.0
Minor Changes
- 18619f793c94: Fixed two bugs in how the
OAuth2Sessiontype represents the underlying data. TheexpiresAtandbackstageIdentityare now both optional, since that's what they are in practice. This is not considered a breaking change since it was effectively a bug in the modelling of the state that this type represents, and the type was not used in any other external contract. - 18619f793c94: The
OAuthclass which is used by all OAuth providers will now consider both the session expiration of both the Backstage identity as well as the upstream identity provider, and refresh the session with either of them is about to expire.
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/version-bridge@1.0.4
@backstage/core-plugin-api@1.6.0-next.0
Minor Changes
- 18619f793c94: Added the optional
expiresAtfield that may now be part of aBackstageIdentityResponse.
Patch Changes
- Updated dependencies
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/version-bridge@1.0.4
@backstage/integration@1.7.0-next.0
Minor Changes
-
5f1a92b9f19f: Added
AzureDevOpsCredentialsProviderto support multiple Azure DevOps organizations and deprecatedAzureIntegrationConfig.credentialandAzureIntegrationConfig.tokenin favour ofAzureIntegrationConfig.credentials. You can now use specific credentials for different Azure DevOps (Server) organizations by specifying theorganizationsfield on a credential:integrations:
azure:
- host: dev.azure.com
credentials:
- organizations:
- my-org
- my-other-org
clientId: ${AZURE_CLIENT_ID}
clientSecret: ${AZURE_CLIENT_SECRET}
tenantId: ${AZURE_TENANT_ID}
- organizations:
- yet-another-org
personalAccessToken: ${PERSONAL_ACCESS_TOKEN}See the Azure integration documentation for more information.
Patch Changes
- cb2e19d82d95: Gitiles: Fixed auth prefix issue
- Updated dependencies
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-auth-backend-module-gcp-iap-provider@0.1.0-next.0
Minor Changes
- 8513cd7d00e3: New module for
@backstage/plugin-auth-backendthat adds a GCP IAP auth provider.
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-auth-backend-module-github-provider@0.1.0-next.0
Minor Changes
- 23af27f5ce79: New module for
@backstage/plugin-auth-backendthat adds a GitHub auth provider.
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
@backstage/plugin-auth-backend-module-google-provider@0.1.0-next.0
Minor Changes
- 8513cd7d00e3: New module for
@backstage/plugin-auth-backendthat adds a Google auth provider.
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
@backstage/plugin-auth-node@0.3.0-next.0
Minor Changes
-
8513cd7d00e3: Introduced a new system for building auth providers for
@backstage/plugin-auth-backend, which both increases the amount of code re-use across providers, and also works better with the new backend system.Many existing types have been moved from
@backstage/plugin-auth-backendin order to avoid a direct dependency on the plugin from modules.Auth provider integrations are now primarily implemented through a pattern of creating "authenticators", which are in turn specific to each kind of integrations. Initially there are two types:
createOAuthAuthenticatorandcreateProxyAuthenticator. These come paired with functions that let you create the corresponding route handlers,createOAuthRouteHandlersandcreateProxyAuthRouteHandlers, as well as provider factories,createOAuthProviderFactoryandcreateProxyAuthProviderFactory. This new authenticator pattern allows the sign-in logic to be separated from the auth integration logic, allowing it to be completely re-used across all providers of the same kind.The new provider factories also implement a new declarative way to configure sign-in resolvers, rather than configuration through code. Sign-in resolvers can now be configured through the
resolversconfiguration key, where the first resolver that provides an identity will be used, for example:auth:
providers:
google:
development:
clientId: ...
clientSecret: ...
signIn:
resolvers:
- resolver: emailMatchingUserEntityAnnotation
- resolver: emailLocalPartMatchingUserEntityNameThese configurable resolvers are created with a new
createSignInResolverFactoryfunction, which creates a sign-in resolver factory, optionally with an options schema that will be used both when configuring the sign-in resolver through configuration and code.The internal helpers from
@backstage/plugin-auth-backendthat were used to implement auth providers using passport strategies have now also been made available as public API, throughPassportHelpersandPassportOAuthAuthenticatorHelper.
Patch Changes
- 18619f793c94: The
BackstageIdentityResponseinterface now has an optionalexpiresInSecondsfield that can be used to signal session expiration. TheprepareBackstageIdentityResponseutility will now also read the expiration from the provided token, and include it in the response. - Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-opencost@0.2.0-next.0
Minor Changes
- 1380a689ab56: New OpenCost plugin provides an port of the latest OpenCost UI to Backstage with updated dependencies. The plugin's README covers installation and configuration
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
@backstage/app-defaults@1.4.3-next.0
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.10.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
- @backstage/plugin-permission-react@0.4.15-next.0
@backstage/backend-app-api@0.5.2-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/config-loader@1.5.0-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/cli-common@0.1.12
- @backstage/cli-node@0.1.3
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-permission-node@0.7.13-next.0
@backstage/backend-common@0.19.4-next.0
Patch Changes
- 5f1a92b9f19f: Use
DefaultAzureDevOpsCredentialsProviderto retrieve credentials for Azure DevOps. - cfc3ca6ce060: Changes needed to support MySQL
- Updated dependencies
- @backstage/integration@1.7.0-next.0
- @backstage/config-loader@1.5.0-next.0
- @backstage/backend-app-api@0.5.2-next.0
- @backstage/backend-dev-utils@0.1.1
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/integration-aws-node@0.1.5
- @backstage/types@1.1.0
@backstage/backend-defaults@0.2.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-app-api@0.5.2-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
@backstage/backend-plugin-api@0.6.2-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-permission-common@0.7.7
@backstage/backend-tasks@0.5.7-next.0
Patch Changes
- cfc3ca6ce060: Changes needed to support MySQL
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/backend-test-utils@0.2.2-next.0
Patch Changes
- 9fb3b5373c45: Extended
mockServiceto also include mocked variants, for examplemockServices.lifecycle.mock(). The returned mocked implementation will have afactoryproperty which is a service factory for itself. You can also pass a partial implementation of the service to the mock function to use a mock implementation of specific methods. - Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-app-api@0.5.2-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/types@1.1.0
@backstage/cli@0.22.12-next.0
Patch Changes
- 278d9326eb40: Added the ability to create a plain backend module with the
newcommand. - 71d4368ae5cc: Added support for the
dev/indexentry point for backend plugins and modules. - Updated dependencies
- @backstage/integration@1.7.0-next.0
- @backstage/config-loader@1.5.0-next.0
- @backstage/catalog-model@1.4.1
- @backstage/cli-common@0.1.12
- @backstage/cli-node@0.1.3
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/eslint-plugin@0.1.3
- @backstage/release-manifests@0.0.9
- @backstage/types@1.1.0
@backstage/core-components@0.13.5-next.0
Patch Changes
- 47782f4bfa5b: Add loading indicator to Table
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/version-bridge@1.0.4
@backstage/create-app@0.5.5-next.0
Patch Changes
- Bumped create-app version.
- Updated dependencies
- @backstage/cli-common@0.1.12
@backstage/dev-utils@1.0.20-next.0
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.18-next.0
- @backstage/core-app-api@1.10.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/app-defaults@1.4.3-next.0
- @backstage/catalog-model@1.4.1
- @backstage/test-utils@1.4.3-next.0
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/integration-react@1.1.18-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/integration@1.7.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
@backstage/repo-tools@0.3.4-next.0
Patch Changes
- 0109d3f11159: The
generate-catalog-infocommand now uses the first listedCODEOWNERas Component owner when initially creating thecatalog-info.yamlfile. It continues to allow any one listedCODEOWNERwhen updating entity metadata. - ec13d3e86028: Fixed a bug with the
generate-catalog-infocommand that could cause the--dry-runflag to indicate changes to files when no changes would actually be made if the command were run without the flag. - db60a16e0a54: Added a
--ciflag to thegenerate-catalog-infocommand. This flag behaves similarly to the same flag onapi-reports: ifcatalog-info.yamlfiles would have been added or modified, then the process exits with status code1, and instructions are printed. - Updated dependencies
- @backstage/catalog-model@1.4.1
- @backstage/cli-common@0.1.12
- @backstage/cli-node@0.1.3
- @backstage/errors@1.2.1
@techdocs/cli@1.4.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/catalog-model@1.4.1
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.8
- @backstage/plugin-techdocs-node@1.7.6-next.0
@backstage/test-utils@1.4.3-next.0
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.10.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-react@0.4.15-next.0
@backstage/plugin-adr@0.6.6-next.0
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.18-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-adr-common@0.2.14-next.0
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-search-react@1.6.5-next.0
@backstage/plugin-adr-backend@0.3.8-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-adr-common@0.2.14-next.0
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-adr-common@0.2.14-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.7.0-next.0
- @backstage/catalog-model@1.4.1
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-airbrake@0.3.23-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/dev-utils@1.0.20-next.0
- @backstage/catalog-model@1.4.1
- @backstage/test-utils@1.4.3-next.0
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-airbrake-backend@0.2.23-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
@backstage/plugin-allure@0.1.39-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-analytics-module-ga@0.1.33-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
@backstage/plugin-analytics-module-ga4@0.1.4-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
@backstage/plugin-analytics-module-newrelic-browser@0.0.2-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/config@1.0.8
@backstage/plugin-apache-airflow@0.2.15-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
@backstage/plugin-api-docs@0.9.10-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.12.4-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-api-docs-module-protoc-gen-doc@0.1.3-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency
@backstage/plugin-apollo-explorer@0.1.15-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
@backstage/plugin-app-backend@0.3.50-next.0
Patch Changes
- cfc3ca6ce060: Changes needed to support MySQL
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/config-loader@1.5.0-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-app-node@0.1.2-next.0
@backstage/plugin-app-node@0.1.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.2-next.0
@backstage/plugin-auth-backend@0.18.8-next.0
Patch Changes
- 7944d43f4790: Added
authPluginexport for the new backend system. The plugin does not include any built-in auth providers, they must instead be added by installing additional modules, for exampleauthModuleGoogleProviderfrom@backstage/plugin-auth-backend-module-google-provider. - 8513cd7d00e3: Deprecated several exports that are now available from
@backstage/plugin-auth-nodeinstead. - 7944d43f4790: Added the ability to disable the built-in auth providers by passing
disableDefaultProviderFactoriestocreateRouter. - 7944d43f4790: The algorithm used when generating Backstage tokens can be configured via
auth.identityTokenAlgorithm. - Updated dependencies
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.1.0-next.0
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/plugin-auth-backend-module-google-provider@0.1.0-next.0
- @backstage/plugin-auth-backend-module-github-provider@0.1.0-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-node@1.4.3-next.0
@backstage/plugin-azure-devops@0.3.5-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-azure-devops-common@0.3.0
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-azure-devops-backend@0.3.29-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/plugin-azure-devops-common@0.3.0
@backstage/plugin-azure-sites@0.1.12-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-azure-sites-common@0.1.0
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-azure-sites-backend@0.1.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/config@1.0.8
- @backstage/plugin-azure-sites-common@0.1.0
@backstage/plugin-badges@0.2.47-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-badges-backend@0.2.5-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-bazaar@0.2.15-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/plugin-catalog@1.12.4-next.0
- @backstage/cli@0.22.12-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-bazaar-backend@0.2.13-next.0
Patch Changes
- cfc3ca6ce060: Changes needed to support MySQL
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-bitbucket-cloud-common@0.2.11-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.7.0-next.0
@backstage/plugin-bitrise@0.1.50-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-catalog@1.12.4-next.0
Patch Changes
- 832eef72485b: Added title to props for
Has<kind>Cards. - 163a41035e42: Fixed an issue where
EntitySwitchwas preventing the display of entity errors. - Updated dependencies
- @backstage/integration-react@1.1.18-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-scaffolder-common@1.4.0
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-search-react@1.6.5-next.0
@backstage/plugin-catalog-backend@1.12.2-next.0
Patch Changes
- 149361e81622: Fix to the
limitparameter on entity queries. - 0198aa596fd9: Fixed a link to the frontend Backstage plugin that had pointed to itself.
- 41d1b2d628ea: Fix OpenAPI schema for the facets endpoint
- cfc3ca6ce060: Changes needed to support MySQL
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-openapi-utils@0.0.3
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-events-node@0.2.11-next.0
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-node@0.7.13-next.0
- @backstage/plugin-scaffolder-common@1.4.0
- @backstage/plugin-search-backend-module-catalog@0.1.6-next.0
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-catalog-backend-module-aws@0.2.5-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/integration-aws-node@0.1.5
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-kubernetes-common@0.6.5
@backstage/plugin-catalog-backend-module-azure@0.1.21-next.0
Patch Changes
- 94f96508491d: Improve consistency of results from the
AzureDevOpsEntityProvider. - 5f1a92b9f19f: Use
DefaultAzureDevOpsCredentialsProviderto retrieve credentials for Azure DevOps. - 044b4f2fb1e3: Remove duplications from Azure search before committing the new locations to the catalog.
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-node@1.4.3-next.0
@backstage/plugin-catalog-backend-module-bitbucket@0.2.17-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-bitbucket-cloud-common@0.2.11-next.0
- @backstage/plugin-catalog-node@1.4.3-next.0
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.17-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/plugin-bitbucket-cloud-common@0.2.11-next.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-events-node@0.2.11-next.0
@backstage/plugin-catalog-backend-module-bitbucket-server@0.1.15-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-catalog-node@1.4.3-next.0
@backstage/plugin-catalog-backend-module-gcp@0.1.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-kubernetes-common@0.6.5
@backstage/plugin-catalog-backend-module-gerrit@0.1.18-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-catalog-node@1.4.3-next.0
@backstage/plugin-catalog-backend-module-github@0.3.5-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.12.2-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-events-node@0.2.11-next.0
@backstage/plugin-catalog-backend-module-gitlab@0.2.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-node@1.4.3-next.0
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.4.3-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.12.2-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-events-node@0.2.11-next.0
- @backstage/plugin-permission-common@0.7.7
@backstage/plugin-catalog-backend-module-ldap@0.5.17-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-node@1.4.3-next.0
@backstage/plugin-catalog-backend-module-msgraph@0.5.9-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-node@1.4.3-next.0
@backstage/plugin-catalog-backend-module-openapi@0.1.16-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.12.2-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-node@1.4.3-next.0
@backstage/plugin-catalog-backend-module-puppetdb@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-node@1.4.3-next.0
@backstage/plugin-catalog-backend-module-unprocessed@0.2.2-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
@backstage/plugin-catalog-graph@0.2.35-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-catalog-import@0.9.13-next.0
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.18-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-catalog-node@1.4.3-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
@backstage/plugin-catalog-react@1.8.3-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.7.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/version-bridge@1.0.4
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-react@0.4.15-next.0
@backstage/plugin-catalog-unprocessed-entities@0.1.3-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-cicd-statistics@0.1.25-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/catalog-model@1.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-cicd-statistics-module-gitlab@0.1.19-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/catalog-model@1.4.1
- @backstage/plugin-cicd-statistics@0.1.25-next.0
@backstage/plugin-circleci@0.3.23-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-cloudbuild@0.3.23-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-code-climate@0.1.23-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-code-coverage@0.2.16-next.0
Patch Changes
- 1d8f4f0a7486: Use fetchApi to ensure authorization is used when fetching code-coverage data
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-code-coverage-backend@0.2.16-next.0
Patch Changes
- 3f1367b956c6: Added support for LCOV coverage reports
- cfc3ca6ce060: Changes needed to support MySQL
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-codescene@0.1.17-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-config-schema@0.1.45-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
@backstage/plugin-cost-insights@0.12.12-next.0
Patch Changes
- a54cd411639e: Updated dependency
@types/pluralizeto^0.0.30. - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-cost-insights-common@0.1.1
@backstage/plugin-devtools@0.1.4-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-devtools-common@0.1.3
- @backstage/plugin-permission-react@0.4.15-next.0
@backstage/plugin-devtools-backend@0.1.5-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/config-loader@1.5.0-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-devtools-common@0.1.3
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-node@0.7.13-next.0
@backstage/plugin-dynatrace@7.0.3-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-entity-feedback@0.2.6-next.0
Patch Changes
- 5e2e06db747a: Improve README to note that Backstage identity is required to be configured
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-entity-feedback-common@0.1.2
@backstage/plugin-entity-feedback-backend@0.1.8-next.0
Patch Changes
- 740155e8e976: Improve backend logging if method calls fail
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/plugin-entity-feedback-common@0.1.2
@backstage/plugin-entity-validation@0.1.8-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-events-backend@0.2.11-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/plugin-events-node@0.2.11-next.0
@backstage/plugin-events-backend-module-aws-sqs@0.2.5-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-events-node@0.2.11-next.0
@backstage/plugin-events-backend-module-azure@0.1.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/plugin-events-node@0.2.11-next.0
@backstage/plugin-events-backend-module-bitbucket-cloud@0.1.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/plugin-events-node@0.2.11-next.0
@backstage/plugin-events-backend-module-gerrit@0.1.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/plugin-events-node@0.2.11-next.0
@backstage/plugin-events-backend-module-github@0.1.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/plugin-events-node@0.2.11-next.0
@backstage/plugin-events-backend-module-gitlab@0.1.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/plugin-events-node@0.2.11-next.0
@backstage/plugin-events-backend-test-utils@0.1.12-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.2.11-next.0
@backstage/plugin-events-node@0.2.11-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.6.2-next.0
@backstage/plugin-explore@0.4.9-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-explore-react@0.0.31-next.0
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-search-react@1.6.5-next.0
@backstage/plugin-explore-backend@0.0.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-backend-module-explore@0.1.6-next.0
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-explore-react@0.0.31-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/plugin-explore-common@0.0.1
@backstage/plugin-firehydrant@0.2.7-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-fossa@0.2.55-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-gcalendar@0.3.18-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-gcp-projects@0.3.41-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
@backstage/plugin-git-release-manager@0.3.36-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.7.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
@backstage/plugin-github-actions@0.6.4-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/integration-react@1.1.18-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-github-deployments@0.1.54-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/integration-react@1.1.18-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-github-issues@0.2.12-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/integration@1.7.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-github-pull-requests-board@0.1.17-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/integration@1.7.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-gitops-profiles@0.3.40-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
@backstage/plugin-gocd@0.1.29-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-graphiql@0.2.54-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
@backstage/plugin-graphql-backend@0.1.40-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/config@1.0.8
- @backstage/plugin-catalog-graphql@0.3.22
@backstage/plugin-graphql-voyager@0.1.7-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
@backstage/plugin-home@0.5.7-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-home-react@0.1.3-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-home-react@0.1.3-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
@backstage/plugin-ilert@0.2.12-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-jenkins@0.8.5-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-jenkins-common@0.1.18
@backstage/plugin-jenkins-backend@0.2.5-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-jenkins-common@0.1.18
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-node@0.7.13-next.0
@backstage/plugin-kafka@0.3.23-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-kafka-backend@0.2.43-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-kubernetes@0.10.2-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-kubernetes-common@0.6.5
@backstage/plugin-kubernetes-backend@0.11.5-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/integration-aws-node@0.1.5
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-kubernetes-common@0.6.5
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-node@0.7.13-next.0
@backstage/plugin-lighthouse@0.4.8-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-lighthouse-common@0.1.2
@backstage/plugin-lighthouse-backend@0.2.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-lighthouse-common@0.1.2
@backstage/plugin-linguist@0.1.8-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-linguist-common@0.1.1
@backstage/plugin-linguist-backend@0.4.2-next.0
Patch Changes
- b2de501bda31: When creating the router using
createRouterFromConfigor using the plugin for the new backend system thelinguist.useSourceLocationconfiguration is now optional. - cfc3ca6ce060: Changes needed to support MySQL
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-linguist-common@0.1.1
@backstage/plugin-microsoft-calendar@0.1.7-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-newrelic@0.3.40-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
@backstage/plugin-newrelic-dashboard@0.2.16-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-nomad@0.1.4-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-nomad-backend@0.1.4-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-octopus-deploy@0.2.5-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-org@0.6.13-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-org-react@0.1.12-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-pagerduty@0.6.4-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-home-react@0.1.3-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-periskop@0.1.21-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-periskop-backend@0.1.21-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
@backstage/plugin-permission-backend@0.5.25-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-node@0.7.13-next.0
@backstage/plugin-permission-node@0.7.13-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-permission-common@0.7.7
@backstage/plugin-permission-react@0.4.15-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/config@1.0.8
- @backstage/plugin-permission-common@0.7.7
@backstage/plugin-playlist@0.1.15-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-react@0.4.15-next.0
- @backstage/plugin-playlist-common@0.1.9
- @backstage/plugin-search-react@1.6.5-next.0
@backstage/plugin-playlist-backend@0.3.6-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-node@0.7.13-next.0
- @backstage/plugin-playlist-common@0.1.9
@backstage/plugin-proxy-backend@0.3.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
@backstage/plugin-puppetdb@0.1.6-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-rollbar@0.4.23-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-rollbar-backend@0.1.47-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/config@1.0.8
@backstage/plugin-scaffolder@1.14.4-next.0
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.18-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/plugin-scaffolder-react@1.5.4-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-permission-react@0.4.15-next.0
- @backstage/plugin-scaffolder-common@1.4.0
@backstage/plugin-scaffolder-backend@1.16.3-next.0
Patch Changes
- a4989552d828: Add examples for
publish:githubandpublish:gitlabscaffolder actions. - 5f1a92b9f19f: Use
DefaultAzureDevOpsCredentialsProviderto retrieve credentials for Azure DevOps. - fb57a4694fc6: Fixed the plugin and module ID of the alpha
catalogModuleTemplateKindexport. - cfc3ca6ce060: Changes needed to support MySQL
- Updated dependencies
- @backstage/plugin-catalog-backend@1.12.2-next.0
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-node@0.7.13-next.0
- @backstage/plugin-scaffolder-common@1.4.0
- @backstage/plugin-scaffolder-node@0.2.2-next.0
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.3-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-scaffolder-node@0.2.2-next.0
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.26-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-scaffolder-node@0.2.2-next.0
@backstage/plugin-scaffolder-backend-module-gitlab@0.2.5-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.7.0-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-scaffolder-node@0.2.2-next.0
@backstage/plugin-scaffolder-backend-module-rails@0.4.19-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-scaffolder-node@0.2.2-next.0
@backstage/plugin-scaffolder-backend-module-sentry@0.1.10-next.0
Patch Changes
- Updated dependencies
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-scaffolder-node@0.2.2-next.0
@backstage/plugin-scaffolder-backend-module-yeoman@0.2.23-next.0
Patch Changes
- Updated dependencies
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-scaffolder-node@0.2.2-next.0
@backstage/plugin-scaffolder-node@0.2.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-scaffolder-common@1.4.0
@backstage/plugin-scaffolder-react@1.5.4-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/version-bridge@1.0.4
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-scaffolder-common@1.4.0
@backstage/plugin-search@1.3.6-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/version-bridge@1.0.4
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-search-react@1.6.5-next.0
@backstage/plugin-search-backend@1.4.2-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-openapi-utils@0.0.3
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-node@0.7.13-next.0
- @backstage/plugin-search-backend-node@1.2.6-next.0
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-backend-module-catalog@0.1.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-search-backend-node@1.2.6-next.0
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-backend-module-elasticsearch@1.3.5-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/integration-aws-node@0.1.5
- @backstage/plugin-search-backend-node@1.2.6-next.0
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-backend-module-explore@0.1.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-backend-node@1.2.6-next.0
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-backend-module-pg@0.5.11-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/plugin-search-backend-node@1.2.6-next.0
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-backend-module-techdocs@0.1.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-search-backend-node@1.2.6-next.0
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-techdocs-node@1.7.6-next.0
@backstage/plugin-search-backend-node@1.2.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-search-react@1.6.5-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/version-bridge@1.0.4
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-sentry@0.5.8-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-shortcuts@0.3.14-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
@backstage/plugin-sonarqube@0.7.4-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-sonarqube-react@0.1.8-next.0
@backstage/plugin-sonarqube-backend@0.2.4-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-sonarqube-react@0.1.8-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/catalog-model@1.4.1
@backstage/plugin-splunk-on-call@0.4.12-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-stack-overflow@0.1.20-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-home-react@0.1.3-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-search-react@1.6.5-next.0
@backstage/plugin-stack-overflow-backend@0.2.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/config@1.0.8
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-stackstorm@0.1.6-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
@backstage/plugin-tech-insights@0.3.15-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-tech-insights-common@0.2.11
@backstage/plugin-tech-insights-backend@0.5.16-next.0
Patch Changes
- cfc3ca6ce060: Changes needed to support MySQL
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
- @backstage/plugin-tech-insights-common@0.2.11
- @backstage/plugin-tech-insights-node@0.4.8-next.0
@backstage/plugin-tech-insights-backend-module-jsonfc@0.1.34-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-tech-insights-common@0.2.11
- @backstage/plugin-tech-insights-node@0.4.8-next.0
@backstage/plugin-tech-insights-node@0.4.8-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/config@1.0.8
- @backstage/types@1.1.0
- @backstage/plugin-tech-insights-common@0.2.11
@backstage/plugin-tech-radar@0.6.8-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
@backstage/plugin-techdocs@1.6.8-next.0
Patch Changes
- 88c9525a36f3: Fixed bug in styles that caused next and previous links in footer to overlap page content.
- Updated dependencies
- @backstage/integration-react@1.1.18-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-search-react@1.6.5-next.0
- @backstage/plugin-techdocs-react@1.1.10-next.0
@backstage/plugin-techdocs-addons-test-utils@1.0.20-next.0
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.18-next.0
- @backstage/plugin-catalog@1.12.4-next.0
- @backstage/plugin-techdocs@1.6.8-next.0
- @backstage/core-app-api@1.10.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/test-utils@1.4.3-next.0
- @backstage/theme@0.4.1
- @backstage/plugin-search-react@1.6.5-next.0
- @backstage/plugin-techdocs-react@1.1.10-next.0
@backstage/plugin-techdocs-backend@1.6.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-search-backend-module-techdocs@0.1.6-next.0
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-techdocs-node@1.7.6-next.0
@backstage/plugin-techdocs-module-addons-contrib@1.0.18-next.0
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.18-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
- @backstage/plugin-techdocs-react@1.1.10-next.0
@backstage/plugin-techdocs-node@1.7.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/integration-aws-node@0.1.5
- @backstage/plugin-search-common@1.2.5
@backstage/plugin-techdocs-react@1.1.10-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/version-bridge@1.0.4
@backstage/plugin-todo@0.2.25-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-todo-backend@0.2.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/backend-openapi-utils@0.0.3
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
- @backstage/plugin-catalog-node@1.4.3-next.0
@backstage/plugin-user-settings@0.7.8-next.0
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.10.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/types@1.1.0
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-user-settings-backend@0.1.14-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/types@1.1.0
@backstage/plugin-vault@0.1.17-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/catalog-model@1.4.1
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-react@1.8.3-next.0
@backstage/plugin-vault-backend@0.3.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1
@backstage/plugin-xcmetrics@0.2.42-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/reactto be a regular dependency - Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/errors@1.2.1
- @backstage/theme@0.4.1
example-app@0.2.87-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-unprocessed-entities@0.1.3-next.0
- @backstage/integration-react@1.1.18-next.0
- @backstage/plugin-microsoft-calendar@0.1.7-next.0
- @backstage/plugin-newrelic-dashboard@0.2.16-next.0
- @backstage/plugin-apache-airflow@0.2.15-next.0
- @backstage/plugin-github-actions@0.6.4-next.0
- @backstage/plugin-octopus-deploy@0.2.5-next.0
- @backstage/plugin-azure-devops@0.3.5-next.0
- @backstage/plugin-gcp-projects@0.3.41-next.0
- @backstage/plugin-azure-sites@0.1.12-next.0
- @backstage/plugin-cloudbuild@0.3.23-next.0
- @backstage/plugin-lighthouse@0.4.8-next.0
- @backstage/plugin-tech-radar@0.6.8-next.0
- @backstage/plugin-dynatrace@7.0.3-next.0
- @backstage/plugin-gcalendar@0.3.18-next.0
- @backstage/plugin-shortcuts@0.3.14-next.0
- @backstage/plugin-airbrake@0.3.23-next.0
- @backstage/plugin-circleci@0.3.23-next.0
- @backstage/plugin-graphiql@0.2.54-next.0
- @backstage/plugin-linguist@0.1.8-next.0
- @backstage/plugin-newrelic@0.3.40-next.0
- @backstage/plugin-playlist@0.1.15-next.0
- @backstage/plugin-puppetdb@0.1.6-next.0
- @backstage/plugin-jenkins@0.8.5-next.0
- @backstage/plugin-rollbar@0.4.23-next.0
- @backstage/plugin-badges@0.2.47-next.0
- @backstage/plugin-sentry@0.5.8-next.0
- @backstage/plugin-kafka@0.3.23-next.0
- @backstage/plugin-nomad@0.1.4-next.0
- @backstage/plugin-todo@0.2.25-next.0
- @backstage/plugin-org@0.6.13-next.0
- @backstage/cli@0.22.12-next.0
- @backstage/plugin-techdocs@1.6.8-next.0
- @backstage/plugin-entity-feedback@0.2.6-next.0
- @backstage/core-app-api@1.10.0-next.0
- @backstage/plugin-code-coverage@0.2.16-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/plugin-cost-insights@0.12.12-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/plugin-adr@0.6.6-next.0
- @backstage/plugin-catalog-import@0.9.13-next.0
- @backstage/plugin-scaffolder@1.14.4-next.0
- @backstage/plugin-techdocs-module-addons-contrib@1.0.18-next.0
- @backstage/plugin-home@0.5.7-next.0
- @backstage/plugin-pagerduty@0.6.4-next.0
- @backstage/plugin-stack-overflow@0.1.20-next.0
- @backstage/plugin-api-docs@0.9.10-next.0
- @internal/plugin-catalog-customized@0.0.14-next.0
- @backstage/plugin-catalog-graph@0.2.35-next.0
- @backstage/plugin-explore@0.4.9-next.0
- @backstage/plugin-scaffolder-react@1.5.4-next.0
- @backstage/app-defaults@1.4.3-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/theme@0.4.1
- @backstage/plugin-catalog-common@1.0.15
- @backstage/plugin-catalog-react@1.8.3-next.0
- @backstage/plugin-devtools@0.1.4-next.0
- @backstage/plugin-gocd@0.1.29-next.0
- @backstage/plugin-kubernetes@0.10.2-next.0
- @backstage/plugin-linguist-common@0.1.1
- @backstage/plugin-permission-react@0.4.15-next.0
- @backstage/plugin-search@1.3.6-next.0
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-search-react@1.6.5-next.0
- @backstage/plugin-stackstorm@0.1.6-next.0
- @backstage/plugin-tech-insights@0.3.15-next.0
- @backstage/plugin-techdocs-react@1.1.10-next.0
- @backstage/plugin-user-settings@0.7.8-next.0
example-backend@0.2.87-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.12.2-next.0
- @backstage/plugin-auth-backend@0.18.8-next.0
- @backstage/plugin-code-coverage-backend@0.2.16-next.0
- @backstage/plugin-scaffolder-backend@1.16.3-next.0
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/plugin-linguist-backend@0.4.2-next.0
- @backstage/integration@1.7.0-next.0
- @backstage/plugin-entity-feedback-backend@0.1.8-next.0
- @backstage/plugin-tech-insights-backend@0.5.16-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/plugin-app-backend@0.3.50-next.0
- example-app@0.2.87-next.0
- @backstage/catalog-client@1.4.3
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/plugin-adr-backend@0.3.8-next.0
- @backstage/plugin-azure-devops-backend@0.3.29-next.0
- @backstage/plugin-azure-sites-backend@0.1.12-next.0
- @backstage/plugin-badges-backend@0.2.5-next.0
- @backstage/plugin-catalog-backend-module-unprocessed@0.2.2-next.0
- @backstage/plugin-catalog-node@1.4.3-next.0
- @backstage/plugin-devtools-backend@0.1.5-next.0
- @backstage/plugin-events-backend@0.2.11-next.0
- @backstage/plugin-events-node@0.2.11-next.0
- @backstage/plugin-explore-backend@0.0.12-next.0
- @backstage/plugin-graphql-backend@0.1.40-next.0
- @backstage/plugin-jenkins-backend@0.2.5-next.0
- @backstage/plugin-kafka-backend@0.2.43-next.0
- @backstage/plugin-kubernetes-backend@0.11.5-next.0
- @backstage/plugin-lighthouse-backend@0.2.6-next.0
- @backstage/plugin-nomad-backend@0.1.4-next.0
- @backstage/plugin-permission-backend@0.5.25-next.0
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-node@0.7.13-next.0
- @backstage/plugin-playlist-backend@0.3.6-next.0
- @backstage/plugin-proxy-backend@0.3.2-next.0
- @backstage/plugin-rollbar-backend@0.1.47-next.0
- @backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.2.3-next.0
- @backstage/plugin-scaffolder-backend-module-rails@0.4.19-next.0
- @backstage/plugin-search-backend@1.4.2-next.0
- @backstage/plugin-search-backend-module-elasticsearch@1.3.5-next.0
- @backstage/plugin-search-backend-module-pg@0.5.11-next.0
- @backstage/plugin-search-backend-node@1.2.6-next.0
- @backstage/plugin-search-common@1.2.5
- @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.34-next.0
- @backstage/plugin-tech-insights-node@0.4.8-next.0
- @backstage/plugin-techdocs-backend@1.6.7-next.0
- @backstage/plugin-todo-backend@0.2.2-next.0
example-backend-next@0.0.15-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-backend@1.12.2-next.0
- @backstage/plugin-scaffolder-backend@1.16.3-next.0
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/plugin-linguist-backend@0.4.2-next.0
- @backstage/plugin-entity-feedback-backend@0.1.8-next.0
- @backstage/backend-tasks@0.5.7-next.0
- @backstage/plugin-app-backend@0.3.50-next.0
- @backstage/backend-defaults@0.2.2-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/plugin-adr-backend@0.3.8-next.0
- @backstage/plugin-azure-devops-backend@0.3.29-next.0
- @backstage/plugin-badges-backend@0.2.5-next.0
- @backstage/plugin-catalog-backend-module-unprocessed@0.2.2-next.0
- @backstage/plugin-devtools-backend@0.1.5-next.0
- @backstage/plugin-kubernetes-backend@0.11.5-next.0
- @backstage/plugin-lighthouse-backend@0.2.6-next.0
- @backstage/plugin-permission-backend@0.5.25-next.0
- @backstage/plugin-permission-common@0.7.7
- @backstage/plugin-permission-node@0.7.13-next.0
- @backstage/plugin-proxy-backend@0.3.2-next.0
- @backstage/plugin-search-backend@1.4.2-next.0
- @backstage/plugin-search-backend-module-catalog@0.1.6-next.0
- @backstage/plugin-search-backend-module-explore@0.1.6-next.0
- @backstage/plugin-search-backend-module-techdocs@0.1.6-next.0
- @backstage/plugin-search-backend-node@1.2.6-next.0
- @backstage/plugin-techdocs-backend@1.6.7-next.0
- @backstage/plugin-todo-backend@0.2.2-next.0
e2e-test@0.2.7-next.0
Patch Changes
- Updated dependencies
- @backstage/create-app@0.5.5-next.0
- @backstage/cli-common@0.1.12
- @backstage/errors@1.2.1
techdocs-cli-embedded-app@0.2.86-next.0
Patch Changes
- Updated dependencies
- @backstage/integration-react@1.1.18-next.0
- @backstage/plugin-catalog@1.12.4-next.0
- @backstage/cli@0.22.12-next.0
- @backstage/plugin-techdocs@1.6.8-next.0
- @backstage/core-app-api@1.10.0-next.0
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/app-defaults@1.4.3-next.0
- @backstage/catalog-model@1.4.1
- @backstage/config@1.0.8
- @backstage/test-utils@1.4.3-next.0
- @backstage/theme@0.4.1
- @backstage/plugin-techdocs-react@1.1.10-next.0
@internal/plugin-catalog-customized@0.0.14-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog@1.12.4-next.0
- @backstage/plugin-catalog-react@1.8.3-next.0
@internal/plugin-todo-list@1.0.17-next.0
Patch Changes
- Updated dependencies
- @backstage/core-plugin-api@1.6.0-next.0
- @backstage/core-components@0.13.5-next.0
- @backstage/theme@0.4.1
@internal/plugin-todo-list-backend@1.0.17-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-node@0.3.0-next.0
- @backstage/backend-common@0.19.4-next.0
- @backstage/backend-plugin-api@0.6.2-next.0
- @backstage/config@1.0.8
- @backstage/errors@1.2.1