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
a
are now visible to the frontend, while previously onlya
anda/b
would'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
OAuth2Session
type represents the underlying data. TheexpiresAt
andbackstageIdentity
are 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
OAuth
class 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
expiresAt
field 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
AzureDevOpsCredentialsProvider
to support multiple Azure DevOps organizations and deprecatedAzureIntegrationConfig.credential
andAzureIntegrationConfig.token
in favour ofAzureIntegrationConfig.credentials
. You can now use specific credentials for different Azure DevOps (Server) organizations by specifying theorganizations
field 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-backend
that 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-backend
that 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-backend
that 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-backend
in 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:
createOAuthAuthenticator
andcreateProxyAuthenticator
. These come paired with functions that let you create the corresponding route handlers,createOAuthRouteHandlers
andcreateProxyAuthRouteHandlers
, as well as provider factories,createOAuthProviderFactory
andcreateProxyAuthProviderFactory
. 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
resolvers
configuration 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
createSignInResolverFactory
function, 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-backend
that were used to implement auth providers using passport strategies have now also been made available as public API, throughPassportHelpers
andPassportOAuthAuthenticatorHelper
.
Patch Changes
- 18619f793c94: The
BackstageIdentityResponse
interface now has an optionalexpiresInSeconds
field that can be used to signal session expiration. TheprepareBackstageIdentityResponse
utility 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/react
to 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
DefaultAzureDevOpsCredentialsProvider
to 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
mockService
to also include mocked variants, for examplemockServices.lifecycle.mock()
. The returned mocked implementation will have afactory
property 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
new
command. - 71d4368ae5cc: Added support for the
dev/index
entry 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/react
to 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-info
command now uses the first listedCODEOWNER
as Component owner when initially creating thecatalog-info.yaml
file. It continues to allow any one listedCODEOWNER
when updating entity metadata. - ec13d3e86028: Fixed a bug with the
generate-catalog-info
command that could cause the--dry-run
flag to indicate changes to files when no changes would actually be made if the command were run without the flag. - db60a16e0a54: Added a
--ci
flag to thegenerate-catalog-info
command. This flag behaves similarly to the same flag onapi-reports
: ifcatalog-info.yaml
files 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/react
to 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/react
to 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/react
to 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/react
to be a regular dependency
@backstage/plugin-apollo-explorer@0.1.15-next.0
Patch Changes
- 482bb5c0bbf8: Moved
@types/react
to 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
authPlugin
export 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 exampleauthModuleGoogleProvider
from@backstage/plugin-auth-backend-module-google-provider
. - 8513cd7d00e3: Deprecated several exports that are now available from
@backstage/plugin-auth-node
instead. - 7944d43f4790: Added the ability to disable the built-in auth providers by passing
disableDefaultProviderFactories
tocreateRouter
. - 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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
EntitySwitch
was 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
limit
parameter 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
DefaultAzureDevOpsCredentialsProvider
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/pluralize
to^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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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
createRouterFromConfig
or using the plugin for the new backend system thelinguist.useSourceLocation
configuration 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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/react
to 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:github
andpublish:gitlab
scaffolder actions. - 5f1a92b9f19f: Use
DefaultAzureDevOpsCredentialsProvider
to retrieve credentials for Azure DevOps. - fb57a4694fc6: Fixed the plugin and module ID of the alpha
catalogModuleTemplateKind
export. - 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