Release v1.37.0-next.2
Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.37.0-next.2
@backstage/app-defaults@1.6.0-next.1
Minor Changes
-
12f8e01: BREAKING: The default
DiscoveryApiimplementation has been switched to useFrontendHostDiscovery, which adds support for thediscovery.endpointsconfiguration.This is marked as a breaking change because it will cause any existing
discovery.endpointsconfiguration to be picked up and used, which may break existing setups.For example, consider the following configuration:
app:
baseUrl: https://backstage.acme.org
backend:
baseUrl: https://backstage.internal.acme.org
discovery:
endpoints:
- target: https://catalog.internal.acme.org/api/{{pluginId}}
plugins: [catalog]This will now cause requests from the frontend towards the
catalogplugin to be routed tohttps://catalog.internal.acme.org/api/catalog, but this might not be reachable from the frontend. To fix this, you should update thediscovery.endpointsconfiguration to only override the internal URL of the plugin:discovery:
endpoints:
- target:
internal: https://catalog.internal.acme.org/api/{{pluginId}}
plugins: [catalog]
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.16.0-next.0
- @backstage/core-components@0.16.5-next.1
- @backstage/core-plugin-api@1.10.4
- @backstage/theme@0.6.4
- @backstage/plugin-permission-react@0.4.31
@backstage/cli@0.31.0-next.1
Minor Changes
-
5b70679: BREAKING: ESLint warnings no longer trigger system exit codes like errors do.
Set the max number of warnings to
-1during linting to enable the gradual adoption of new ESLint rules. To restore the previous behavior, include the--max-warnings 0flag in thebackstage-cli <repo|package> lintcommand.
Patch Changes
- e0b226b: build(deps): bump
esbuildfrom 0.24.2 to 0.25.0 - 4d45498: Fixed the package prepack command so that it no longer produces unnecessary
indexentries in thetypesVersionsmap, which could cause/indexto be added when automatically adding imports. - f8bd342: Fix a bug in the translation of the deprecated
--scopeoption for thenewcommand that could cause plugins to havebackstage-backstage-pluginin their name. - Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/integration@1.16.2-next.0
- @backstage/catalog-model@1.7.3
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/eslint-plugin@0.1.10
- @backstage/release-manifests@0.0.12
- @backstage/types@1.2.1
@backstage/config-loader@1.10.0-next.0
Minor Changes
- 2fd73aa: The include transforms applied during config loading will now only apply to the known keys
$file,$env, and$include. Any other key that begins with a `# @backstage/config-loader will now be passed through as is.
Patch Changes
- Updated dependencies
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
@backstage/core-app-api@1.16.0-next.0
Minor Changes
- 9262001: The default auth injection middleware for the
FetchApiwill now also take configuration underdiscovery.endpointsinto consideration when deciding whether to include credentials or not. - 12f8e01: The
discovery.endpointsconfiguration no longer requires bothinternalandexternaltarget when using the object form, instead falling back to the default.
Patch Changes
- Updated dependencies
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/core-compat-api@0.4.0-next.2
Minor Changes
- 8250ffe: BREAKING: Dropped support for the removed opaque
@backstage/ExtensionOverridesand@backstage/BackstagePlugintypes.
Patch Changes
- e7fab55: Added the
entityPageoption toconvertLegacyApp, which you can read more about in the app migration docs. - Updated dependencies
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/plugin-catalog-react@1.16.0-next.2
- @backstage/core-plugin-api@1.10.4
- @backstage/version-bridge@1.0.11
@backstage/create-app@0.6.0-next.2
Minor Changes
- 31731b0: Upgraded the TypeScript version in the template to
5.8.
Patch Changes
- 19e5c3f: Added link to multi-stage Dockerfile documentation as alternative option
- Updated dependencies
- @backstage/cli-common@0.1.15
@backstage/frontend-app-api@0.11.0-next.2
Minor Changes
-
abcdf44: BREAKING: The returned object from
createSpecializedAppno longer contains acreateRoot()method, and it instead now containsapisandtree.You can replace existing usage of
app.createRoot()with the following:const root = tree.root.instance?.getData(coreExtensionData.reactElement); -
8250ffe: BREAKING: Dropped support for the removed opaque
@backstage/ExtensionOverridesand@backstage/BackstagePlugintypes.
Patch Changes
- 4d18b55: It's now possible to provide a middleware that wraps all extension factories by passing an
extensionFactoryMiddlewareto eithercreateApp()orcreateSpecializedApp(). - Updated dependencies
- @backstage/frontend-defaults@0.2.0-next.2
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/core-app-api@1.16.0-next.0
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/frontend-defaults@0.2.0-next.2
Minor Changes
- 8250ffe: BREAKING: Dropped support for the removed opaque
@backstage/ExtensionOverridesand@backstage/BackstagePlugintypes.
Patch Changes
- 4d18b55: It's now possible to provide a middleware that wraps all extension factories by passing an
extensionFactoryMiddlewareto eithercreateApp()orcreateSpecializedApp(). - abcdf44: Internal refactor to match updated
createSpecializedApp. - e3f19db: Feature discovery and resolution logic used in
createAppis now exposed via thediscoverAvailableFeaturesandresolveAsyncFeaturesfunctions respectively. - Updated dependencies
- @backstage/frontend-app-api@0.11.0-next.2
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/plugin-app@0.1.7-next.2
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/frontend-plugin-api@0.10.0-next.2
Minor Changes
- 8250ffe: BREAKING: Removed the deprecated
ExtensionOverridesandFrontendFeaturetypes. - 0d1a397: BREAKING: Removed deprecated variant of
createExtensionDataRefwhere the ID is passed directly.
Patch Changes
- 5aa7f2c: Added a new Utility API,
DialogApi, which can be used to show dialogs in the React tree that can collect input from the user. - e23f5e0: Added new
ExtensionMiddlewareFactorytype. - a6cb67d: The extensions map for plugins created with
createFrontendPluginis now sorted alphabetically by ID in the TypeScript type. - Updated dependencies
- @backstage/core-components@0.16.5-next.1
- @backstage/core-plugin-api@1.10.4
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/frontend-test-utils@0.3.0-next.2
Minor Changes
- bba525b: BREAKING: Removed deprecated
setupRequestMockHandlerswhich was replaced byregisterMswTestHooks.
Patch Changes
- f861bfc: Added a
initialRouteEntriesoption torenderInTestApp. - f861bfc: The
renderInTestApphelper now provides a default mock config with mock values for bothapp.baseUrlandbackend.baseUrl. - abcdf44: Internal refactor to match updated
createSpecializedApp. - Updated dependencies
- @backstage/frontend-app-api@0.11.0-next.2
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/plugin-app@0.1.7-next.2
- @backstage/test-utils@1.7.6-next.0
- @backstage/config@1.3.2
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
@backstage/plugin-catalog@1.28.0-next.2
Minor Changes
-
247a40b: Now a custom entity page header can be passed as input to the default entity page.
-
93533bd: The order in which group tabs appear on the entity page has been changed.
Before
Previously, entity contents determined the order in which groups were rendered, so a group was rendered as soon as its first entity content was detected.
After
Groups are now rendered first by default based on their order in the
app-config.yamlfile:app:
extensions:
- page:catalog/entity:
+ config:
+ groups:
+ # this will be the first tab of the default entity page
+ - deployment:
+ title: Deployment
+ # this will be the second tab of the default entiy page
+ - documentation:
+ title: DocumentationIf you wish to place a normal tab before a group, you must add the tab to a group and place the group in the order you wish it to appear on the entity page (groups that contains only one tab are rendered as normal tabs).
app:
extensions:
- page:catalog/entity:
config:
groups:
+ # Example placing the overview tab first
+ - overview:
+ title: Overview
- deployment:
title: Deployment
# this will be the second tab of the default entiy page
- documentation:
title: Documentation
- entity-content:catalog/overview:
+ config:
+ group: 'overview'
Patch Changes
- 31731b0: Internal refactor to avoid
expiry-mapdependency. - Updated dependencies
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/plugin-catalog-react@1.16.0-next.2
- @backstage/core-compat-api@0.4.0-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/plugin-search-react@1.8.7-next.2
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/core-plugin-api@1.10.4
- @backstage/errors@1.2.7
- @backstage/integration-react@1.2.5-next.0
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-react@0.4.31
- @backstage/plugin-scaffolder-common@1.5.10-next.0
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-catalog-react@1.16.0-next.2
Minor Changes
-
7f57365: Add support for a new entity predicate syntax when defining
filters related to the blueprints exported via/alphafor the new frontend system. For more information, see the entity filters documentation. -
247a40b: Introduces a new
EntityHeaderBlueprintthat allows you to override the default entity page header.import { EntityHeaderBlueprint } from '@backstage/plugin-catalog-react/alpha';
EntityHeaderBlueprint.make({
name: 'my-default-header',
params: {
loader: () =>
import('./MyDefaultHeader').then(m => <m.MyDefaultHeader />),
},
});
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/frontend-test-utils@0.3.0-next.2
- @backstage/core-compat-api@0.4.0-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/core-plugin-api@1.10.4
- @backstage/errors@1.2.7
- @backstage/integration-react@1.2.5-next.0
- @backstage/types@1.2.1
- @backstage/version-bridge@1.0.11
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-react@0.4.31
@backstage/plugin-scaffolder-backend@1.31.0-next.2
Minor Changes
- 36677bb: Support new
createTemplateActiontype, and convertcatalog:fetchaction to new way of defining actions. - 2b1e50d: use CreatedTemplate[Filter|Global*] as canonical template extensions in scaffolder plugin
Patch Changes
- e0b226b: build(deps): bump
esbuildfrom 0.24.2 to 0.25.0 - 4f8b5b6: Allow signing git commits using configured private PGP key in scaffolder
- 59dcf37: Fixed bug in fs:delete causing no files to be deleted on windows machines
- Updated dependencies
- @backstage/plugin-scaffolder-backend-module-gitlab@0.8.1-next.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.7-next.2
- @backstage/plugin-scaffolder-node@0.8.0-next.2
- @backstage/plugin-scaffolder-backend-module-github@0.6.1-next.2
- @backstage/backend-defaults@0.8.2-next.2
- @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.7-next.2
- @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.8-next.2
- @backstage/plugin-scaffolder-backend-module-gerrit@0.2.7-next.2
- @backstage/plugin-scaffolder-backend-module-azure@0.2.7-next.2
- @backstage/plugin-scaffolder-backend-module-gitea@0.2.7-next.2
- @backstage/integration@1.16.2-next.0
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1-next.1
- @backstage/plugin-bitbucket-cloud-common@0.2.28-next.0
- @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.6-next.1
- @backstage/plugin-catalog-node@1.16.1-next.1
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.8.9-next.1
- @backstage/plugin-scaffolder-common@1.5.10-next.0
@backstage/plugin-scaffolder-node@0.8.0-next.2
Minor Changes
-
1a58846: DEPRECATION: We've deprecated the old way of defining actions using
createTemplateActionwith rawJSONSchemaand type parameters, as well as usingzodthrough an import. You can now use the new format to definecreateTemplateActionswithzodprovided by the framework. This change also removes support forlogStreamin thecontextas well as moving theloggerto an instance ofLoggerService.Before:
createTemplateAction<{ repoUrl: string }, { test: string }>({
id: 'test',
schema: {
input: {
type: 'object',
required: ['repoUrl'],
properties: {
repoUrl: { type: 'string' },
},
},
output: {
type: 'object',
required: ['test'],
properties: {
test: { type: 'string' },
},
},
},
handler: async ctx => {
ctx.logStream.write('blob');
},
});
// or
createTemplateAction({
id: 'test',
schema: {
input: z.object({
repoUrl: z.string(),
}),
output: z.object({
test: z.string(),
}),
},
handler: async ctx => {
ctx.logStream.write('something');
},
});After:
createTemplateAction({
id: 'test',
schema: {
input: {
repoUrl: d => d.string(),
},
output: {
test: d => d.string(),
},
},
handler: async ctx => {
// you can just use ctx.logger.log('...'), or if you really need a log stream you can do this:
const logStream = new PassThrough();
logStream.on('data', chunk => {
ctx.logger.info(chunk.toString());
});
},
});
Patch Changes
- 4f8b5b6: Allow signing git commits using configured private PGP key in scaffolder
- Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-model@1.7.3
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-scaffolder-common@1.5.10-next.0
@backstage/plugin-scaffolder-node-test-utils@0.2.0-next.2
Minor Changes
- 36677bb: Use update
createTemplateActionkinds
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.0-next.2
- @backstage/backend-test-utils@1.3.1-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/types@1.2.1
@backstage/backend-app-api@1.2.1-next.2
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1-next.1
- @backstage/plugin-permission-node@0.8.9-next.1
@backstage/backend-defaults@0.8.2-next.2
Patch Changes
- 12f8e01: The
discovery.endpointsconfiguration no longer requires bothinternalandexternaltarget when using the object form, instead falling back to the default. - Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/integration@1.16.2-next.0
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-app-api@1.2.1-next.2
- @backstage/backend-dev-utils@0.1.5
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.15
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1-next.1
- @backstage/plugin-permission-node@0.8.9-next.1
@backstage/backend-dynamic-feature-service@0.6.1-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-scaffolder-node@0.8.0-next.2
- @backstage/plugin-catalog-backend@1.32.0-next.2
- @backstage/config-loader@1.10.0-next.0
- @backstage/backend-defaults@0.8.2-next.2
- @backstage/plugin-events-backend@0.4.4-next.2
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-app-node@0.1.31-next.2
- @backstage/plugin-auth-node@0.6.1-next.1
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.8.9-next.1
- @backstage/plugin-search-backend-node@1.3.9-next.1
- @backstage/plugin-search-common@1.2.17
@backstage/backend-test-utils@1.3.1-next.2
Patch Changes
- 37c6510: Moved
@types/jesttodevDependencies. - Updated dependencies
- @backstage/backend-defaults@0.8.2-next.2
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-app-api@1.2.1-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-node@0.6.1-next.1
@backstage/core-components@0.16.5-next.1
Patch Changes
- 48aab13: Add i18n support for scaffolder-react plugin
- Updated dependencies
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
- @backstage/errors@1.2.7
- @backstage/theme@0.6.4
- @backstage/version-bridge@1.0.11
@backstage/dev-utils@1.1.8-next.2
Patch Changes
- Updated dependencies
- @backstage/core-app-api@1.16.0-next.0
- @backstage/plugin-catalog-react@1.16.0-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/app-defaults@1.6.0-next.1
- @backstage/catalog-model@1.7.3
- @backstage/core-plugin-api@1.10.4
- @backstage/integration-react@1.2.5-next.0
- @backstage/theme@0.6.4
@backstage/integration@1.16.2-next.0
Patch Changes
- 4f8b5b6: Allow signing git commits using configured private PGP key in scaffolder
- Updated dependencies
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
@backstage/integration-react@1.2.5-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
@backstage/repo-tools@0.13.1-next.2
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-model@1.7.3
- @backstage/cli-common@0.1.15
- @backstage/cli-node@0.2.13
- @backstage/errors@1.2.7
@techdocs/cli@1.9.1-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.8.2-next.2
- @backstage/catalog-model@1.7.3
- @backstage/cli-common@0.1.15
- @backstage/config@1.3.2
- @backstage/plugin-techdocs-node@1.13.1-next.2
@backstage/test-utils@1.7.6-next.0
Patch Changes
- 37c6510: Moved
@types/jesttodevDependencies. - Updated dependencies
- @backstage/core-app-api@1.16.0-next.0
- @backstage/config@1.3.2
- @backstage/core-plugin-api@1.10.4
- @backstage/theme@0.6.4
- @backstage/types@1.2.1
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-react@0.4.31
@backstage/plugin-api-docs@0.12.5-next.2
Patch Changes
- 74871cc: Use consistent Typography in Entity HasApisCard
- Updated dependencies
- @backstage/plugin-catalog@1.28.0-next.2
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/plugin-catalog-react@1.16.0-next.2
- @backstage/core-compat-api@0.4.0-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/catalog-model@1.7.3
- @backstage/core-plugin-api@1.10.4
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-permission-react@0.4.31
@backstage/plugin-app@0.1.7-next.2
Patch Changes
- 0aa9d82: Added implementation of the new
DialogApi. - Updated dependencies
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/core-plugin-api@1.10.4
- @backstage/integration-react@1.2.5-next.0
- @backstage/theme@0.6.4
- @backstage/types@1.2.1
- @backstage/plugin-permission-react@0.4.31
@backstage/plugin-app-backend@0.5.0-next.2
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-app-node@0.1.31-next.2
- @backstage/plugin-auth-node@0.6.1-next.1
@backstage/plugin-app-node@0.1.31-next.2
Patch Changes
- Updated dependencies
- @backstage/config-loader@1.10.0-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
@backstage/plugin-app-visualizer@0.1.17-next.2
Patch Changes
- Updated dependencies
- @backstage/frontend-plugin-api@0.10.0-next.2
- @backstage/core-components@0.16.5-next.1
- @backstage/core-plugin-api@1.10.4
@backstage/plugin-auth-backend@0.24.4-next.2
Patch Changes
- Updated dependencies
- @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1-next.2
- @backstage/plugin-auth-backend-module-oidc-provider@0.4.1-next.2
- @backstage/plugin-auth-backend-module-okta-provider@0.2.1-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1-next.1
- @backstage/plugin-auth-backend-module-auth0-provider@0.2.1-next.1
- @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.1-next.2
- @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6-next.1
- @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.1-next.1
- @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1-next.1
- @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1-next.1
- @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1-next.1
- @backstage/plugin-auth-backend-module-github-provider@0.3.1-next.1
- @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1-next.1
- @backstage/plugin-auth-backend-module-google-provider@0.3.1-next.1
- @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1-next.1
- @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6-next.1
- @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1-next.1
- @backstage/plugin-auth-node@0.6.1-next.1
- @backstage/plugin-catalog-node@1.16.1-next.1
@backstage/plugin-auth-backend-module-aws-alb-provider@0.4.1-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/errors@1.2.7
- @backstage/plugin-auth-backend@0.24.4-next.2
- @backstage/plugin-auth-node@0.6.1-next.1
@backstage/plugin-auth-backend-module-oauth2-provider@0.4.1-next.2
Patch Changes
- ce15e30: Fixed repository url in
README.md - Updated dependencies
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/plugin-auth-node@0.6.1-next.1
@backstage/plugin-auth-backend-module-oidc-provider@0.4.1-next.2
Patch Changes
- ce15e30: Fixed repository url in
README.md - Updated dependencies
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/plugin-auth-backend@0.24.4-next.2
- @backstage/plugin-auth-node@0.6.1-next.1
@backstage/plugin-auth-backend-module-okta-provider@0.2.1-next.2
Patch Changes
- ce15e30: Fixed repository url in
README.md - Updated dependencies
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/plugin-auth-node@0.6.1-next.1
@backstage/plugin-auth-react@0.1.13-next.1
Patch Changes
- Updated dependencies
- @backstage/core-components@0.16.5-next.1
- @backstage/core-plugin-api@1.10.4
- @backstage/errors@1.2.7
@backstage/plugin-bitbucket-cloud-common@0.2.28-next.0
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
@backstage/plugin-catalog-backend@1.32.0-next.2
Patch Changes
- 4306303: Added a fix in
@backstage/plugin-catalog-backendto prevent duplicate path keys in entity search if only casing is different. - 5243aa4: Fixed an issue occurred when authorizing permissions using custom rules passed via the
PermissionsRegistryService. - Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-openapi-utils@0.5.1-next.1
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/types@1.2.1
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-catalog-node@1.16.1-next.1
- @backstage/plugin-permission-common@0.8.4
- @backstage/plugin-permission-node@0.8.9-next.1
- @backstage/plugin-search-backend-module-catalog@0.3.2-next.1
- @backstage/plugin-search-common@1.2.17
@backstage/plugin-catalog-backend-module-aws@0.4.9-next.2
Patch Changes
- Updated dependencies
- @backstage/backend-defaults@0.8.2-next.2
- @backstage/integration@1.16.2-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/integration-aws-node@0.1.15
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-catalog-node@1.16.1-next.1
- @backstage/plugin-kubernetes-common@0.9.4-next.0
@backstage/plugin-catalog-backend-module-azure@0.3.3-next.2
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/config@1.3.2
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-catalog-node@1.16.1-next.1
@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.4.6-next.2
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/plugin-events-node@0.4.9-next.2
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-client@1.9.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/plugin-bitbucket-cloud-common@0.2.28-next.0
- @backstage/plugin-catalog-common@1.1.3
- @backstage/plugin-catalog-node@1.16.1-next.1
@backstage/plugin-catalog-backend-module-bitbucket-server@0.3.3-next.2
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/catalog-model@1.7.3
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-node@1.16.1-next.1
@backstage/plugin-catalog-backend-module-gerrit@0.2.8-next.2
Patch Changes
- Updated dependencies
- @backstage/integration@1.16.2-next.0
- @backstage/backend-plugin-api@1.2.1-next.1
- @backstage/config@1.3.2
- @backstage/errors@1.2.7
- @backstage/plugin-catalog-node@1.16.1-next.1