Release v1.14.0-next.0
@backstage/config-loader@1.3.0-next.0
Minor Changes
-
201206132da: Introduced a new config source system to replace
loadConfig. There is a newConfigSourceinterface along with utilities provided byConfigSources, as well as a number of built-in configuration source implementations. The new system is more flexible and makes it easier to create new and reusable sources of configuration, such as loading configuration from secret providers.The following is an example of how to load configuration using the default behavior:
const source = ConfigSources.default({
argv: options?.argv,
remote: options?.remote,
});
const config = await ConfigSources.toConfig(source);The
ConfigSourceinterface looks like this:export interface ConfigSource {
readConfigData(options?: ReadConfigDataOptions): AsyncConfigSourceIterator;
}It is best implemented using an async iterator:
class MyConfigSource implements ConfigSource {
async *readConfigData() {
yield {
config: [
{
context: 'example',
data: { backend: { baseUrl: 'http://localhost' } },
},
],
};
}
}
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-analytics-module-ga4@0.1.0-next.0
Minor Changes
- 22b46f7f562: Plugin provides Backstage Analytics API for Google Analytics 4. Once installed and configured, analytics events will be sent to GA4 as your users navigate and use your Backstage instance
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
- @backstage/theme@0.2.19
@backstage/plugin-catalog@1.11.0-next.0
Minor Changes
-
2258dcae970: Added an entity namespace filter and column on the default catalog page.
If you have a custom version of the catalog page, you can add this filter in your CatalogPage code:
<CatalogFilterLayout>
<CatalogFilterLayout.Filters>
<EntityTypePicker />
<UserListPicker initialFilter={initiallySelectedFilter} />
<EntityTagPicker />
/* if you want namespace picker */
<EntityNamespacePicker />
</CatalogFilterLayout.Filters>
<CatalogFilterLayout.Content>
<CatalogTable columns={columns} actions={actions} />
</CatalogFilterLayout.Content>
</CatalogFilterLayout>The namespace column can be added using
createNamespaceColumn();. This is only needed if you customized the columns for CatalogTable.
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/plugin-search-react@1.6.0-next.0
- @backstage/integration-react@1.1.13-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-catalog-react@1.6.0-next.0
Minor Changes
-
2258dcae970: Added an entity namespace filter and column on the default catalog page.
If you have a custom version of the catalog page, you can add this filter in your CatalogPage code:
<CatalogFilterLayout>
<CatalogFilterLayout.Filters>
<EntityTypePicker />
<UserListPicker initialFilter={initiallySelectedFilter} />
<EntityTagPicker />
/* if you want namespace picker */
<EntityNamespacePicker />
</CatalogFilterLayout.Filters>
<CatalogFilterLayout.Content>
<CatalogTable columns={columns} actions={actions} />
</CatalogFilterLayout.Content>
</CatalogFilterLayout>The namespace column can be added using
createNamespaceColumn();. This is only needed if you customized the columns for CatalogTable.
Patch Changes
- Updated dependencies
- @backstage/integration@1.4.5-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.4
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-permission-react@0.4.12
@backstage/plugin-kubernetes-backend@0.11.0-next.0
Minor Changes
-
890988341e9: Update
aws-sdkclient from v2 to v3.BREAKING: The
AwsIamKubernetesAuthTranslatorclass no longer exposes the following methodsawsGetCredentials,getBearerToken,getCredentialsandvalidCredentials. There is no replacement for these methods.
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-permission-node@0.7.8-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/integration-aws-node@0.1.2
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-kubernetes-common@0.6.2
- @backstage/plugin-permission-common@0.7.5
@backstage/plugin-search@1.3.0-next.0
Minor Changes
-
750e45539ad: Add close button & improve search input.
Material UI's Paper wrapping the SearchBar in the SearchPage was removed, we recommend users update their apps accordingly.
SearchBarBase's TextField's label support added & aria-label uses label string if present, tests relying on the default placeholder value should still work unless custom placeholder was given.
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/plugin-search-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.4
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-react@1.6.0-next.0
Minor Changes
-
750e45539ad: Add close button & improve search input.
Material UI's Paper wrapping the SearchBar in the SearchPage was removed, we recommend users update their apps accordingly.
SearchBarBase's TextField's label support added & aria-label uses label string if present, tests relying on the default placeholder value should still work unless custom placeholder was given.
Patch Changes
- Updated dependencies
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/theme@0.2.19
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.4
- @backstage/plugin-search-common@1.2.3
@backstage/app-defaults@1.3.1-next.0
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.7.1-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/theme@0.2.19
- @backstage/plugin-permission-react@0.4.12
@backstage/backend-app-api@0.4.3-next.0
Patch Changes
- cf13b482f9e: Switch
configServiceFactoryto useConfigSourcesfrom@backstage/config-loaderto load config. - Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/config-loader@1.3.0-next.0
- @backstage/plugin-permission-node@0.7.8-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/backend-common@0.18.5-next.0
Patch Changes
- 284db225083: Updated the
DatabaseManagerto include the plugin id in the Postgres application name of the database connections created for each plugin. - 42d817e76ab: Added
HostDiscoveryto supersede deprecatedSingleHostDiscovery(deprecated due to name) - Updated dependencies
- @backstage/integration@1.4.5-next.0
- @backstage/backend-app-api@0.4.3-next.0
- @backstage/config-loader@1.3.0-next.0
- @backstage/integration-aws-node@0.1.2
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/backend-dev-utils@0.1.1
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/backend-defaults@0.1.10-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-app-api@0.4.3-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
@backstage/backend-plugin-api@0.5.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-permission-common@0.7.5
@backstage/backend-tasks@0.5.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/backend-test-utils@0.1.37-next.0
Patch Changes
- b1eb268bf9d: Added
POSTGRES_11andPOSTGRES_12as supported test database IDs. - Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-app-api@0.4.3-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
@backstage/cli@0.22.7-next.0
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.3.0-next.0
- @backstage/cli-common@0.1.12
- @backstage/cli-node@0.1.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/eslint-plugin@0.1.3
- @backstage/release-manifests@0.0.9
- @backstage/types@1.0.2
@backstage/core-app-api@1.7.1-next.0
Patch Changes
- 42d817e76ab: Added
FrontendHostDiscoveryfor config driven discovery implementation - Updated dependencies
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.4
@backstage/create-app@0.5.1-next.0
Patch Changes
- Bumped create-app version.
- Updated dependencies
- @backstage/cli-common@0.1.12
@backstage/dev-utils@1.0.15-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-app-api@1.7.1-next.0
- @backstage/integration-react@1.1.13-next.0
- @backstage/app-defaults@1.3.1-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/test-utils@1.3.1-next.0
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/integration@1.4.5-next.0
Patch Changes
- b026275bcc8: Fixed a bug where the wrong credentials would be selected when using multiple GitHub app integrations.
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/integration-react@1.1.13-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.4.5-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
- @backstage/theme@0.2.19
@techdocs/cli@1.4.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-techdocs-node@1.7.1-next.0
- @backstage/catalog-model@1.3.0
- @backstage/cli-common@0.1.12
- @backstage/config@1.0.7
@backstage/test-utils@1.3.1-next.0
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.7.1-next.0
- @backstage/core-plugin-api@1.5.1
- @backstage/config@1.0.7
- @backstage/theme@0.2.19
- @backstage/types@1.0.2
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-permission-react@0.4.12
@backstage/plugin-adr@0.5.1-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/plugin-search-react@1.6.0-next.0
- @backstage/integration-react@1.1.13-next.0
- @backstage/plugin-adr-common@0.2.9-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-adr-backend@0.3.3-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/plugin-adr-common@0.2.9-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-adr-common@0.2.9-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.4.5-next.0
- @backstage/catalog-model@1.3.0
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-airbrake@0.3.18-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/dev-utils@1.0.15-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/test-utils@1.3.1-next.0
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-airbrake-backend@0.2.18-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/config@1.0.7
@backstage/plugin-allure@0.1.34-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-api-docs@0.9.3-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/plugin-catalog@1.11.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-app-backend@0.3.45-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/config-loader@1.3.0-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
@backstage/plugin-auth-backend@0.18.3-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-auth-node@0.2.14-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-azure-devops@0.2.9-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/plugin-azure-devops-common@0.3.0
@backstage/plugin-azure-devops-backend@0.3.24-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/config@1.0.7
- @backstage/plugin-azure-devops-common@0.3.0
@backstage/plugin-azure-sites@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
- @backstage/plugin-azure-sites-common@0.1.0
@backstage/plugin-azure-sites-backend@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/config@1.0.7
- @backstage/plugin-azure-sites-common@0.1.0
@backstage/plugin-badges@0.2.42-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
@backstage/plugin-badges-backend@0.1.39-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-bazaar@0.2.8-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/plugin-catalog@1.11.0-next.0
- @backstage/cli@0.22.7-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
@backstage/plugin-bazaar-backend@0.2.8-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-bitbucket-cloud-common@0.2.6-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.4.5-next.0
@backstage/plugin-bitrise@0.1.45-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-catalog-backend@1.9.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/plugin-permission-node@0.7.8-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/plugin-search-backend-module-catalog@0.1.1-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-catalog-backend-module-aws@0.1.19-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-kubernetes-common@0.6.2
@backstage/plugin-catalog-backend-module-azure@0.1.16-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-catalog-backend-module-bitbucket@0.2.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/plugin-bitbucket-cloud-common@0.2.6-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.1.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/plugin-bitbucket-cloud-common@0.2.6-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-events-node@0.2.6-next.0
@backstage/plugin-catalog-backend-module-bitbucket-server@0.1.10-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-catalog-backend-module-gerrit@0.1.13-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-catalog-backend-module-github@0.2.8-next.0
Patch Changes
- 78bb674a713: Fixed bug in queryWithPaging that caused secondary rate limit errors in GitHub with organizations having more than 1000 repositories. This change makes one request per second to avoid concurrency issues.
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-backend@1.9.1-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-events-node@0.2.6-next.0
@backstage/plugin-catalog-backend-module-gitlab@0.2.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-catalog-backend-module-incremental-ingestion@0.3.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-backend@1.9.1-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-events-node@0.2.6-next.0
- @backstage/plugin-permission-common@0.7.5
@backstage/plugin-catalog-backend-module-ldap@0.5.12-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-catalog-backend-module-msgraph@0.5.4-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-catalog-backend-module-openapi@0.1.11-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/plugin-catalog-backend@1.9.1-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-catalog-backend-module-puppetdb@0.1.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
@backstage/plugin-catalog-graph@0.2.30-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-catalog-import@0.9.8-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/integration-react@1.1.13-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-catalog-node@1.3.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-cicd-statistics@0.1.20-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-cicd-statistics-module-gitlab@0.1.14-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-cicd-statistics@0.1.20-next.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
@backstage/plugin-circleci@0.3.18-next.0
Patch Changes
- 451b3cadb3d: Fixes row display for in progress jobs to not display trailing "took"
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-cloudbuild@0.3.18-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-code-climate@0.1.18-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-code-coverage@0.2.11-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
@backstage/plugin-code-coverage-backend@0.2.11-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-cost-insights@0.12.7-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/theme@0.2.19
- @backstage/plugin-cost-insights-common@0.1.1
@backstage/plugin-dynatrace@5.0.0-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-entity-feedback@0.2.1-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/plugin-entity-feedback-common@0.1.1
@backstage/plugin-entity-feedback-backend@0.1.3-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/plugin-entity-feedback-common@0.1.1
@backstage/plugin-entity-validation@0.1.3-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/plugin-catalog-common@1.0.13
@backstage/plugin-events-backend@0.2.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.6-next.0
@backstage/plugin-events-backend-module-aws-sqs@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-events-node@0.2.6-next.0
@backstage/plugin-events-backend-module-azure@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/plugin-events-node@0.2.6-next.0
@backstage/plugin-events-backend-module-bitbucket-cloud@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/plugin-events-node@0.2.6-next.0
@backstage/plugin-events-backend-module-gerrit@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/plugin-events-node@0.2.6-next.0
@backstage/plugin-events-backend-module-github@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.6-next.0
@backstage/plugin-events-backend-module-gitlab@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/plugin-events-node@0.2.6-next.0
@backstage/plugin-events-backend-test-utils@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-events-node@0.2.6-next.0
@backstage/plugin-events-node@0.2.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.2-next.0
@backstage/plugin-explore@0.4.3-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/plugin-search-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/plugin-explore-react@0.0.28
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-explore-backend@0.0.7-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-search-backend-module-explore@0.1.1-next.0
- @backstage/config@1.0.7
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-firehydrant@0.2.2-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-fossa@0.2.50-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
@backstage/plugin-git-release-manager@0.3.31-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.4.5-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/theme@0.2.19
@backstage/plugin-github-actions@0.5.18-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-github-deployments@0.1.49-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/integration-react@1.1.13-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
@backstage/plugin-github-issues@0.2.7-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
@backstage/plugin-github-pull-requests-board@0.1.12-next.0
Patch Changes
- cf125c36569: The
EntityTeamPullRequestsContentandEntityTeamPullRequestsCardsupport the ability to view the labels/tags added to each PR - Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-gocd@0.1.24-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
@backstage/plugin-graphql-backend@0.1.35-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/config@1.0.7
- @backstage/plugin-catalog-graphql@0.3.20
@backstage/plugin-home@0.5.1-next.0
Patch Changes
- 5272cfabc3b: Add missing @rjsf/core dependency
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/theme@0.2.19
@backstage/plugin-ilert@0.2.7-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
@backstage/plugin-jenkins@0.7.17-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/plugin-jenkins-common@0.1.15
@backstage/plugin-jenkins-backend@0.1.35-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-jenkins-common@0.1.15
- @backstage/plugin-permission-common@0.7.5
@backstage/plugin-kafka@0.3.18-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/theme@0.2.19
@backstage/plugin-kafka-backend@0.2.38-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
@backstage/plugin-kubernetes@0.8.1-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/plugin-kubernetes-common@0.6.2
@backstage/plugin-lighthouse@0.4.3-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/theme@0.2.19
- @backstage/plugin-lighthouse-common@0.1.1
@backstage/plugin-lighthouse-backend@0.2.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-lighthouse-common@0.1.1
@backstage/plugin-linguist@0.1.3-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/plugin-linguist-common@0.1.0
@backstage/plugin-linguist-backend@0.2.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-linguist-common@0.1.0
@backstage/plugin-newrelic-dashboard@0.2.11-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
@backstage/plugin-octopus-deploy@0.1.2-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-org@0.6.8-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-org-react@0.1.7-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-pagerduty@0.5.11-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
@backstage/plugin-periskop@0.1.16-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
@backstage/plugin-periskop-backend@0.1.16-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
@backstage/plugin-permission-backend@0.5.20-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-permission-node@0.7.8-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-permission-common@0.7.5
@backstage/plugin-permission-node@0.7.8-next.0
Patch Changes
-
a788e715cfc:
createPermissionIntegrationRouternow accepts rules and permissions for multiple resource types. Example:createPermissionIntegrationRouter({
resources: [
{
resourceType: 'resourceType-1',
permissions: permissionsResourceType1,
rules: rulesResourceType1,
},
{
resourceType: 'resourceType-2',
permissions: permissionsResourceType2,
rules: rulesResourceType2,
},
],
}); -
Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-permission-common@0.7.5
@backstage/plugin-playlist@0.1.9-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/plugin-search-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-permission-react@0.4.12
- @backstage/plugin-playlist-common@0.1.6
@backstage/plugin-playlist-backend@0.3.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-permission-node@0.7.8-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-playlist-common@0.1.6
@backstage/plugin-proxy-backend@0.2.39-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
@backstage/plugin-puppetdb@0.1.1-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
@backstage/plugin-rollbar@0.4.18-next.0
Patch Changes
- Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-model@1.3.0
- @backstage/theme@0.2.19
@backstage/plugin-rollbar-backend@0.1.42-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/config@1.0.7
@backstage/plugin-scaffolder@1.13.1-next.0
Patch Changes
-
ad1a1429de4: Improvements to the
scaffolder/nextbuttons UX:- Added padding around the "Create" button in the
Steppercomponent - Added a button bar that includes the "Cancel" and "Start Over" buttons to the
OngoingTaskcomponent. The state of these buttons match their existing counter parts in the Context Menu - Added a "Show Button Bar"/"Hide Button Bar" item to the
ContextMenucomponent
- Added padding around the "Create" button in the
-
Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/plugin-scaffolder-react@1.3.1-next.0
- @backstage/integration-react@1.1.13-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-permission-react@0.4.12
- @backstage/plugin-scaffolder-common@1.2.7
@backstage/plugin-scaffolder-backend@1.13.2-next.0
Patch Changes
- d20c87966a4: Bump minimum required version of
vm2to be 3.9.17 - Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/plugin-permission-node@0.7.8-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/plugin-catalog-backend@1.9.1-next.0
- @backstage/plugin-catalog-node@1.3.6-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-scaffolder-common@1.2.7
- @backstage/plugin-scaffolder-node@0.1.3-next.0
@backstage/plugin-scaffolder-backend-module-confluence-to-markdown@0.1.2-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/plugin-scaffolder-backend@1.13.2-next.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-scaffolder-node@0.1.3-next.0
@backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.21-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/plugin-scaffolder-backend@1.13.2-next.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-scaffolder-node@0.1.3-next.0
@backstage/plugin-scaffolder-backend-module-gitlab@0.1.1-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.4.5-next.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-scaffolder-node@0.1.3-next.0
@backstage/plugin-scaffolder-backend-module-rails@0.4.14-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/integration@1.4.5-next.0
- @backstage/plugin-scaffolder-backend@1.13.2-next.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-scaffolder-node@0.1.3-next.0
@backstage/plugin-scaffolder-backend-module-sentry@0.1.5-next.0
Patch Changes
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/plugin-scaffolder-node@0.1.3-next.0
@backstage/plugin-scaffolder-backend-module-yeoman@0.2.18-next.0
Patch Changes
- Updated dependencies
- @backstage/config@1.0.7
- @backstage/types@1.0.2
- @backstage/plugin-scaffolder-node@0.1.3-next.0
@backstage/plugin-scaffolder-node@0.1.3-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-model@1.3.0
- @backstage/types@1.0.2
- @backstage/plugin-scaffolder-common@1.2.7
@backstage/plugin-scaffolder-react@1.3.1-next.0
Patch Changes
-
ad1a1429de4: Improvements to the
scaffolder/nextbuttons UX:- Added padding around the "Create" button in the
Steppercomponent - Added a button bar that includes the "Cancel" and "Start Over" buttons to the
OngoingTaskcomponent. The state of these buttons match their existing counter parts in the Context Menu - Added a "Show Button Bar"/"Hide Button Bar" item to the
ContextMenucomponent
- Added padding around the "Create" button in the
-
Updated dependencies
- @backstage/plugin-catalog-react@1.6.0-next.0
- @backstage/core-components@0.13.0
- @backstage/core-plugin-api@1.5.1
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/errors@1.1.5
- @backstage/theme@0.2.19
- @backstage/types@1.0.2
- @backstage/version-bridge@1.0.4
- @backstage/plugin-scaffolder-common@1.2.7
@backstage/plugin-search-backend@1.3.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-permission-node@0.7.8-next.0
- @backstage/plugin-auth-node@0.2.14-next.0
- @backstage/plugin-search-backend-node@1.2.1-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/errors@1.1.5
- @backstage/types@1.0.2
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-backend-module-catalog@0.1.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-search-backend-node@1.2.1-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/catalog-client@1.4.1
- @backstage/catalog-model@1.3.0
- @backstage/config@1.0.7
- @backstage/plugin-catalog-common@1.0.13
- @backstage/plugin-permission-common@0.7.5
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-backend-module-elasticsearch@1.2.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-search-backend-node@1.2.1-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-backend-module-explore@0.1.1-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/backend-tasks@0.5.2-next.0
- @backstage/plugin-search-backend-node@1.2.1-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/plugin-explore-common@0.0.1
- @backstage/plugin-search-common@1.2.3
@backstage/plugin-search-backend-module-pg@0.5.6-next.0
Patch Changes
- Updated dependencies
- @backstage/backend-common@0.18.5-next.0
- @backstage/plugin-search-backend-node@1.2.1-next.0
- @backstage/backend-plugin-api@0.5.2-next.0
- @backstage/config@1.0.7
- @backstage/plugin-search-common@1.2.3