# Release v1.32.0 Upgrade Helper: [https://backstage.github.io/upgrade-helper/?to=1.32.0](https://backstage.github.io/upgrade-helper/?to=1.32.0) ## @backstage/backend-openapi-utils@0.2.0 ### Minor Changes - 66af016: Improved support for OpenAPI validation during Jest tests. Now, OpenAPI validation can happen as you are writing your Jest tests - you no longer have to run `repo schema openapi test`. ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.0.1 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/cli@0.28.0 ### Minor Changes - 264058c: The `repo test` command will no longer default to watch mode if the `--since` flag is provided. - 55b8b84: **BREAKING**: The Jest configuration defined at `@backstage/cli/config/jest` no longer collects configuration defined in the `"jest"` field from all parent `package.json` files. Instead, it will only read and merge configuration from the `package.json` in the monorepo root if it exists, as well as the target package. In addition, configuration defined in the root `package.json` will now only be merged into each package configuration if it is a valid project-level configuration key. - 6129076: **BREAKING**: Removed the following deprecated commands: - `create`: Use `backstage-cli new` instead - `create-plugin`: Use `backstage-cli new` instead - `plugin:diff`: Use `backstage-cli fix` instead - `test`: Use `backstage-cli repo test` or `backstage-cli package test` instead - `versions:check`: Use `yarn dedupe` or `yarn-deduplicate` instead - `clean`: Use `backstage-cli package clean` instead In addition, the experimental `install` and `onboard` commands have been removed since they have not received any updates since their introduction and we're expecting usage to be low. If you where relying on these commands, please let us know by opening an issue towards the main Backstage repository. ### Patch Changes - ea16633: Preserve directory structure for CommonJS build output, just like ESM. This makes the build output more stable and easier to browse, and allows for more effective tree shaking and lazy imports. - 520a383: Added functionality to the prepack script that will append the default export type for entry points to the `exports` object before publishing. This is to help with identifying the declarative integration points for plugins without needing to fetch or run the plugins first. - 9625a97: The `scaffolder-module` template has been updated to use a more modern layout and new testing utilities for scaffolder actions. - 03810d2: Remove unknown dependency `diff` - cebee4f: Added support for a new experimental `EXPERIMENTAL_TRIM_NEXT_ENTRY` flag which removes any `./next` entry points present in packages when building and publishing. - 54c8aa3: The check for `react-dom/client` will now properly always run from the target directory. - b676cc9: feat: experimentally support using rspack instead under `EXPERIMENTAL_RSPACK` env flag - 094eaa3: Remove references to in-repo backend-common - 95999c5: The backend plugin template for the `new` command has been updated to provide more guidance and use a more modern structure. - 7955f9b: Tweaked the new package feature detection to not be active when building backend packages. - 4bfc2ce: Updated the Vite implementation behind the `EXPERIMENTAL_VITE` flag to work with more recent versions of Backstage. - 720a2f9: Updated dependency `git-url-parse` to `^15.0.0`. - 8f0898b: Updated dependency `esbuild` to `^0.24.0`. - 2c5ecf5: Support `--max-warnings` flag for package linting - 88407c3: Running `repo lint` with the `--successCache` flag now respects `.gitinore`, and it ignores projects without a `lint` script. - 8fe740d: Added a new `--successCache` option to the `backstage-cli repo test` and `backstage-cli repo lint` commands. The cache keeps track of successful runs and avoids re-running for individual packages if they haven't changed. This option is intended only to be used in CI. In addition a `--successCacheDir ` option has also been added to be able to override the default cache directory. - 55b8b84: The Jest configuration will now search for a `src/setupTests.*` file with any valid script extension, not only `.ts`. - 79ba5a8: The `LEGACY_BACKEND_START` flag is now deprecated. - f0514c7: Disabled parsing of input source maps in the SWC transform for Jest. - Updated dependencies - @backstage/cli-node@0.2.9 - @backstage/eslint-plugin@0.1.10 - @backstage/integration@1.15.1 - @backstage/catalog-model@1.7.0 - @backstage/cli-common@0.1.14 - @backstage/config@1.2.0 - @backstage/config-loader@1.9.1 - @backstage/errors@1.2.4 - @backstage/release-manifests@0.0.11 - @backstage/types@1.1.1 ## @backstage/core-plugin-api@1.10.0 ### Minor Changes - bfd4bec: **BREAKING PRODUCERS**: The `IconComponent` no longer accepts `fontSize="default"`. This has effectively been removed from Material-UI since its last two major versions, and has not worked properly for them in a long time. This change should not have an effect on neither users of MUI4 nor MUI5/6, since the updated interface should still let you send the respective `SvgIcon` types into interfaces where relevant (e.g. as app icons). ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - 39001f4: Fixing issue with types for `ParamKeys` leading to type mismatches across versions - Updated dependencies - @backstage/version-bridge@1.0.10 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/frontend-app-api@0.10.0 ### Minor Changes - 4a5ba19: Removed deprecated `createApp` and `CreateAppFeatureLoader` from `@backstage/frontend-app-api`, use the same `createApp` and `CreateAppFeatureLoader` import from `@backstage/frontend-defaults` instead. ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - Updated dependencies - @backstage/frontend-plugin-api@0.9.0 - @backstage/core-plugin-api@1.10.0 - @backstage/version-bridge@1.0.10 - @backstage/core-app-api@1.15.1 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/frontend-defaults@0.1.1 - @backstage/types@1.1.1 ## @backstage/frontend-plugin-api@0.9.0 ### Minor Changes - 4a5ba19: Removed deprecated `namespace` option from `createExtension` and `createExtensionBlueprint`, including `.make` and `.makeWithOverides`, it's no longer necessary and will use the `pluginId` instead. Removed deprecated `createExtensionOverrides` this should be replaced with `createFrontendModule` instead. Removed deprecated `BackstagePlugin` type, use `FrontendPlugin` type instead from this same package. - bfd4bec: **BREAKING PRODUCERS**: The `IconComponent` no longer accepts `fontSize="default"`. This has effectively been removed from Material-UI since its last two major versions, and has not worked properly for them in a long time. This change should not have an effect on neither users of MUI4 nor MUI5/6, since the updated interface should still let you send the respective `SvgIcon` types into interfaces where relevant (e.g. as app icons). ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - 873e424: Internal refactor of usage of opaque types. - 323aae8: It is now possible to override the blueprint parameters when overriding an extension created from a blueprint: ```ts const myExtension = MyBlueprint.make({ params: { myParam: 'myDefault', }, }); const myOverride = myExtension.override({ params: { myParam: 'myOverride', }, }); const myFactoryOverride = myExtension.override({ factory(origFactory) { return origFactory({ params: { myParam: 'myOverride', }, }); }, }); ``` The provided parameters will be merged with the original parameters of the extension. - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/core-plugin-api@1.10.0 - @backstage/version-bridge@1.0.10 - @backstage/types@1.1.1 ## @backstage/integration-react@1.2.0 ### Minor Changes - a11495a: Added new ScmAuth method `forBitbucketServer` that uses correct OAuth scopes by default. Also updated `forBitbucket` method to allow overriding the default OAuth scopes. ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - 3dbac17: Revert of change #26430 - Updated dependencies - @backstage/core-plugin-api@1.10.0 - @backstage/integration@1.15.1 - @backstage/config@1.2.0 ## @backstage/repo-tools@0.10.0 ### Minor Changes - 30c2be9: Update @microsoft/api-extractor and use their api report resolution. Change api report format from `api-report.md` to `report.api.md` - 8eb3033: Adds a new command `backstage-repo-tools peer-deps` for validating your usage of peer dependencies in your plugins. It currently supports react related peer dependencies. It also has a `--fix` mode for quickly fixing any issues that it finds. ### Patch Changes - 1f6706f: Properly log instructions when APIs do not match - 35e735b: Fix issues with warnings in API reports not being checked or reported. Due to the recent version bump of API Extractor you may now see a lot of `ae-undocumented` warnings, these can be ignored using the `-o` option, for example, `backstage-repo-tools api-reports -o ae-undocumented,ae-wrong-input-file-type`. - 248793e: Updated dependency `@useoptic/optic` to `^1.0.0`. - Updated dependencies - @backstage/cli-node@0.2.9 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/cli-common@0.1.14 - @backstage/config-loader@1.9.1 - @backstage/errors@1.2.4 ## @backstage/test-utils@1.7.0 ### Minor Changes - 9cc7dd6: Added a `mockApis` export, which will replace the `MockX` API implementation classes and their related types. This is analogous with the backend's `mockServices`. **DEPRECATED** several old helpers: - Deprecated `MockAnalyticsApi`, please use `mockApis.analytics` instead. - Deprecated `MockConfigApi`, please use `mockApis.config` instead. - Deprecated `MockPermissionApi`, please use `mockApis.permission` instead. - Deprecated `MockStorageApi`, please use `mockApis.storage` instead. - Deprecated `MockTranslationApi`, please use `mockApis.translation` instead. ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - Updated dependencies - @backstage/core-plugin-api@1.10.0 - @backstage/plugin-permission-react@0.4.27 - @backstage/core-app-api@1.15.1 - @backstage/theme@0.6.0 - @backstage/config@1.2.0 - @backstage/types@1.1.1 - @backstage/plugin-permission-common@0.8.1 ## @backstage/theme@0.6.0 ### Minor Changes - e77ff3d: Adds support for custom background colors in code blocks and inline code within TechDocs. ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. ## @backstage/plugin-auth-backend-module-vmware-cloud-provider@0.4.0 ### Minor Changes - d0edfec: **BREAKING**: The `profileEmailMatchingUserEntityEmail` sign-in resolver has been removed as it was using an insecure fallback for resolving user identities. See for how to create a custom sign-in resolver if needed as a replacement. ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 ## @backstage/plugin-catalog@1.24.0 ### Minor Changes - 71f9f0c: Updated default columns for location entities to remove description and tags from the catalog table view. - cec8e8c: Adding negation keyword for entity filtering ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - 46b5a20: Empty states updated with external link icon for learn more links - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/frontend-plugin-api@0.9.0 - @backstage/integration-react@1.2.0 - @backstage/core-compat-api@0.3.1 - @backstage/core-plugin-api@1.10.0 - @backstage/plugin-permission-react@0.4.27 - @backstage/plugin-catalog-react@1.14.0 - @backstage/plugin-search-react@1.8.1 - @backstage/catalog-client@1.7.1 - @backstage/catalog-model@1.7.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.1.0 - @backstage/plugin-scaffolder-common@1.5.6 - @backstage/plugin-search-common@1.2.14 ## @backstage/plugin-catalog-backend@1.27.0 ### Minor Changes - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. ### Patch Changes - 094eaa3: Remove references to in-repo backend-common - 83a8830: Added migration `20241003170511_alter_target_in_locations.js` to change the target column in the `locations` table to TEXT type. Added a hash for the key column in the `refresh_keys` table. - 62747f8: Fixed a bug where the concurrency limiter for URL reading was not honored - c1f9764: Add configuration parameters for deferred stitcher - 720a2f9: Updated dependency `git-url-parse` to `^15.0.0`. - d1cf90a: Adds the ability to disable catalog processing `catalog.processingInterval: false` in `app-config` - f1cab41: Update catalog search table in transaction - 8206f49: Fix a bug where etags were expiring too soon in the URL reader - Updated dependencies - @backstage/plugin-search-backend-module-catalog@0.2.3 - @backstage/plugin-permission-node@0.8.4 - @backstage/plugin-events-node@0.4.1 - @backstage/plugin-catalog-node@1.13.1 - @backstage/integration@1.15.1 - @backstage/backend-openapi-utils@0.2.0 - @backstage/catalog-client@1.7.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.1.0 - @backstage/plugin-permission-common@0.8.1 ## @backstage/plugin-catalog-backend-module-bitbucket-cloud@0.4.0 ### Minor Changes - 6343c8d: Fixes the event-based updates at `BitbucketCloudEntityProvider`. Previously, this entity provider had optional event support for legacy backends that could be enabled by passing `catalogApi`, `events`, and `tokenManager`. For the new/current backend system, the `catalogModuleBitbucketCloudEntityProvider` (`catalog.bitbucket-cloud-entity-provider`), event support was enabled by default. A recent change removed `tokenManager` as a dependency from the module as well as removed it as input. While this didn't break the instantiation of the module, it broke the event-based updates, and led to a runtime misbehavior, accompanied by an info log message. This change will replace the use of `tokenManager` with the use of `auth` (`AuthService`). Additionally, to simplify, it will make `catalogApi` and `events` required dependencies. For the current backend system, this change is transparent and doesn't require any action. For the legacy backend system, this change will require you to pass those dependencies if you didn't do it already. BREAKING CHANGES: _(For legacy backend users only.)_ Previously optional `catalogApi`, and `events` are required now. A new required dependency `auth` was added. ### Patch Changes - 094eaa3: Remove references to in-repo backend-common - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. - Updated dependencies - @backstage/plugin-events-node@0.4.1 - @backstage/plugin-catalog-node@1.13.1 - @backstage/integration@1.15.1 - @backstage/catalog-client@1.7.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/plugin-bitbucket-cloud-common@0.2.24 - @backstage/plugin-catalog-common@1.1.0 ## @backstage/plugin-catalog-react@1.14.0 ### Minor Changes - 0801db6: Add catalog service mocks under the `/testUtils` subpath export. You can now use e.g. `const catalog = catalogApiMock.mock()` in your test and then do assertions on `catalog.getEntities` without awkward type casting. - 6812980: Added a new prop, `disableTooltip` to the `EntityRefLink` component ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/frontend-plugin-api@0.9.0 - @backstage/frontend-test-utils@0.2.1 - @backstage/integration-react@1.2.0 - @backstage/core-compat-api@0.3.1 - @backstage/core-plugin-api@1.10.0 - @backstage/plugin-permission-react@0.4.27 - @backstage/version-bridge@1.0.10 - @backstage/catalog-client@1.7.1 - @backstage/catalog-model@1.7.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.1.0 - @backstage/plugin-permission-common@0.8.1 ## @backstage/plugin-home@0.8.0 ### Minor Changes - 9893bb5: **BREAKING** Implement usage of unused `limit` query parameter in visits API `.list()` function ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - e698470: Updated dependency `@rjsf/utils` to `5.21.2`. Updated dependency `@rjsf/core` to `5.21.2`. Updated dependency `@rjsf/material-ui` to `5.21.2`. Updated dependency `@rjsf/validator-ajv8` to `5.21.2`. - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/frontend-plugin-api@0.9.0 - @backstage/core-compat-api@0.3.1 - @backstage/core-plugin-api@1.10.0 - @backstage/core-app-api@1.15.1 - @backstage/plugin-catalog-react@1.14.0 - @backstage/plugin-home-react@0.1.18 - @backstage/theme@0.6.0 - @backstage/catalog-client@1.7.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 ## @backstage/plugin-scaffolder@1.26.0 ### Minor Changes - bf6eaf3: Added support for `FormFieldBlueprint` to create field extensions in the Scaffolder plugin - c433ae9: Improved the layout of the manage templates page (`/edit`) by adding icons and descriptions that better describe what each page is for. Updated the header menu to link back to the scaffolder create page. - 7bfaf23: Text field content of the `EntityPicker` is now more readable as it uses entity title instead of entity reference. - cc3f80c: Added ability to create a new local scaffolder template to ease onboarding when creating new templates. - 5492eb6: Added ability to link to a specific action on the actions page ### Patch Changes - b2b2aa8: Fix extra divider displayed in owner list picker on list tasks page - 7f1f483: Create a separate route for the Scaffolder template editor and add the ability to refresh the page without closing the directory. Also, when the directory is closed, the user will stay on the editor page and can load a template folder from there. - f6c15d8: Apply `defaultValue` props in `MultiEntityPicker` - 7a3d622: Create a separate route for the template form editor so we refresh it without being redirected to scaffolder edit page. - 4698646: Change task list created at column to show timestamp - e969dc7: Move `@types/react` to a peer dependency. - e6bbfce: Add tests for the `TemplateEditorToolbarTemplatesMenu` component. - 4130291: Create a separate route for the custom fields explorer so we refresh it without being redirected to scaffolder edit page. - 4e9702e: Add tests for the new pages header navigation. - f25c9e3: Fix behavior of scaffolder entity pickers (EntityPicker, MultiEntityPicker, MyGroupsPicker) to not auto-fill and disable the field if there is only a single value option and the field is not required. - 785d68f: Add support for pagination in scaffolder tasks list - 94a7bcd: Change "Register Existing Component" CTA to outlined as it's not a primary action on the scaffolder pages - f989c47: Add translation to the editor toolbar component. - d4cafc8: Standardize template editor pages desktop and mobile layouts. - b1de959: Scaffolder task routes require read permission to access. The tasks list option in the scaffolder page context menu only shows with permission. - e698470: Updated dependency `@rjsf/utils` to `5.21.2`. Updated dependency `@rjsf/core` to `5.21.2`. Updated dependency `@rjsf/material-ui` to `5.21.2`. Updated dependency `@rjsf/validator-ajv8` to `5.21.2`. - 720a2f9: Updated dependency `git-url-parse` to `^15.0.0`. - 01ffa58: Add tests for the `useTemplateDirectory` hook. - 3ac4766: Add an actions filter on the list actions page and drawer. - 11e0752: Make it possible to manually retry the scaffolder template from the step it failed - 09fcd95: Update the Scaffolder template editor to quickly access installed custom fields and actions when editing a template. - c18d925: Add tests for the `TemplateEditorToolbarFilesMenu` component. - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/plugin-scaffolder-react@1.13.0 - @backstage/frontend-plugin-api@0.9.0 - @backstage/integration-react@1.2.0 - @backstage/core-compat-api@0.3.1 - @backstage/core-plugin-api@1.10.0 - @backstage/plugin-permission-react@0.4.27 - @backstage/plugin-catalog-react@1.14.0 - @backstage/integration@1.15.1 - @backstage/catalog-client@1.7.1 - @backstage/catalog-model@1.7.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.1.0 - @backstage/plugin-scaffolder-common@1.5.6 ## @backstage/plugin-scaffolder-backend@1.26.0 ### Minor Changes - 3ec4e6d: Added pagination support for listing of tasks and the ability to filter on several users and task statuses. - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. ### Patch Changes - 734c2d4: Add `fetch:template:file` scaffolder action to download a single file and template the contents. Example usage: ```yaml - id: fetch-file name: Fetch File action: fetch:template:file input: url: https://github.com/backstage/software-templates/blob/main/scaffolder-templates/create-react-app/skeleton/catalog-info.yaml targetPath: './target/catalog-info.yaml' values: component_id: My Component owner: Test ``` - f1f0076: handle step.if: false - 2f90932: Include step name and step id to checkpoint key - 094eaa3: Remove references to in-repo backend-common - 8f0898b: Updated dependency `esbuild` to `^0.24.0`. - 11e0752: Make it possible to manually retry the scaffolder template from the step it failed - Updated dependencies - @backstage/backend-defaults@0.5.1 - @backstage/plugin-scaffolder-backend-module-github@0.5.1 - @backstage/plugin-scaffolder-node@0.5.0 - @backstage/plugin-scaffolder-backend-module-gitlab@0.6.0 - @backstage/plugin-auth-node@0.5.3 - @backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.1 - @backstage/plugin-permission-node@0.8.4 - @backstage/plugin-catalog-node@1.13.1 - @backstage/integration@1.15.1 - @backstage/plugin-scaffolder-backend-module-azure@0.2.1 - @backstage/catalog-client@1.7.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-bitbucket-cloud-common@0.2.24 - @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.1 - @backstage/plugin-permission-common@0.8.1 - @backstage/plugin-scaffolder-backend-module-bitbucket@0.3.1 - @backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.1 - @backstage/plugin-scaffolder-backend-module-gerrit@0.2.1 - @backstage/plugin-scaffolder-backend-module-gitea@0.2.1 - @backstage/plugin-scaffolder-common@1.5.6 ## @backstage/plugin-scaffolder-backend-module-gitlab@0.6.0 ### Minor Changes - 73f2ccf: declare correct type (number) for publish:gitlab output.projectId ### Patch Changes - 9adfe46: GitLab MR: introduce 'skip' commit action. - bc71718: Updated installation instructions in README to not include `/alpha`. - 094eaa3: Remove references to in-repo backend-common - f2f68cf: Updated `gitlab:group:ensureExists` action to instead use oauth client. - Updated dependencies - @backstage/plugin-scaffolder-node@0.5.0 - @backstage/integration@1.15.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 ## @backstage/plugin-scaffolder-node@0.5.0 ### Minor Changes - 3ec4e6d: Added pagination support for listing of tasks and the ability to filter on several users and task statuses. ### Patch Changes - 094eaa3: Remove references to in-repo backend-common - 11e0752: Make it possible to manually retry the scaffolder template from the step it failed - d7a736c: Use `branch` function instead of `checkout` function when creating branch - Updated dependencies - @backstage/integration@1.15.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-scaffolder-common@1.5.6 ## @backstage/plugin-scaffolder-react@1.13.0 ### Minor Changes - bf6eaf3: Added support for `FormFieldBlueprint` to create field extensions in the Scaffolder plugin - d851b5b: Renamed Template Editor to Manage Templates. ### Patch Changes - 341e5db: Add `overridableComponent` `BackstageTemplateStepperClassKey` to template stepper to enable custom styling - 4b60e0c: Small tweaks to API reports to make them valid - e969dc7: Move `@types/react` to a peer dependency. - 785d68f: Add support for pagination in scaffolder tasks list - b1de959: Scaffolder task routes require read permission to access. The tasks list option in the scaffolder page context menu only shows with permission. - e698470: Updated dependency `@rjsf/utils` to `5.21.2`. Updated dependency `@rjsf/core` to `5.21.2`. Updated dependency `@rjsf/material-ui` to `5.21.2`. Updated dependency `@rjsf/validator-ajv8` to `5.21.2`. - 11e0752: Make it possible to manually retry the scaffolder template from the step it failed - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/frontend-plugin-api@0.9.0 - @backstage/core-plugin-api@1.10.0 - @backstage/plugin-permission-react@0.4.27 - @backstage/version-bridge@1.0.10 - @backstage/plugin-catalog-react@1.14.0 - @backstage/theme@0.6.0 - @backstage/catalog-client@1.7.1 - @backstage/catalog-model@1.7.0 - @backstage/types@1.1.1 - @backstage/plugin-scaffolder-common@1.5.6 ## @backstage/plugin-search-backend@1.6.0 ### Minor Changes - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. ### Patch Changes - 66af016: Fix to schema to allow arbitrary query parameters. - 094eaa3: Remove references to in-repo backend-common - Updated dependencies - @backstage/backend-defaults@0.5.1 - @backstage/plugin-search-backend-node@1.3.3 - @backstage/plugin-permission-node@0.8.4 - @backstage/backend-openapi-utils@0.2.0 - @backstage/backend-plugin-api@1.0.1 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-permission-common@0.8.1 - @backstage/plugin-search-common@1.2.14 ## @backstage/plugin-search-backend-module-elasticsearch@1.6.0 ### Minor Changes - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. ### Patch Changes - d78b07c: Align the configuration schema with the docs and actual behavior of the code - 4b60e0c: Remove extension points from `/alpha` export, they're available from the main package already - 094eaa3: Remove references to in-repo backend-common - Updated dependencies - @backstage/plugin-search-backend-node@1.3.3 - @backstage/backend-plugin-api@1.0.1 - @backstage/config@1.2.0 - @backstage/integration-aws-node@0.1.12 - @backstage/plugin-search-common@1.2.14 ## @backstage/plugin-search-backend-module-techdocs@0.3.0 ### Minor Changes - 07a7fc2: Refactor TechDocs collator, enable clients to override the mkdocs search index transformer, so that per document properties (like tags) can be added to Backstage search index. ### Patch Changes - 4b60e0c: Remove extension points from `/alpha` export, they're available from the main package already - 094eaa3: Remove references to in-repo backend-common - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. - 2f88f88: Updated backend installation instructions. - Updated dependencies - @backstage/plugin-search-backend-node@1.3.3 - @backstage/plugin-catalog-node@1.13.1 - @backstage/plugin-techdocs-node@1.12.12 - @backstage/catalog-client@1.7.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/plugin-catalog-common@1.1.0 - @backstage/plugin-permission-common@0.8.1 - @backstage/plugin-search-common@1.2.14 ## @backstage/plugin-techdocs@1.11.0 ### Minor Changes - e77ff3d: Adds support for custom background colors in code blocks and inline code within TechDocs. ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - a77cb40: Make `emptyState` input optional on `entity-content:techdocs` extension so that the default empty state extension works correctly. - e918061: Add support for mkdocs material palette conditional hashes. - 720a2f9: Updated dependency `git-url-parse` to `^15.0.0`. - e8b4966: Use more of the available space for the navigation sidebar. - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/frontend-plugin-api@0.9.0 - @backstage/integration-react@1.2.0 - @backstage/core-compat-api@0.3.1 - @backstage/core-plugin-api@1.10.0 - @backstage/plugin-techdocs-react@1.2.9 - @backstage/plugin-catalog-react@1.14.0 - @backstage/plugin-search-react@1.8.1 - @backstage/plugin-auth-react@0.1.7 - @backstage/theme@0.6.0 - @backstage/integration@1.15.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/plugin-search-common@1.2.14 - @backstage/plugin-techdocs-common@0.1.0 ## @backstage/plugin-techdocs-backend@1.11.0 ### Minor Changes - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. ### Patch Changes - 094eaa3: Remove references to in-repo backend-common - fbdc631: Allow to pass StorageOptions to GCS Publisher - Updated dependencies - @backstage/plugin-search-backend-module-techdocs@0.3.0 - @backstage/plugin-catalog-node@1.13.1 - @backstage/plugin-techdocs-node@1.12.12 - @backstage/integration@1.15.1 - @backstage/catalog-client@1.7.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/plugin-catalog-common@1.1.0 - @backstage/plugin-permission-common@0.8.1 - @backstage/plugin-techdocs-common@0.1.0 ## @backstage/app-defaults@1.5.12 ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - 46b5a20: Added `externalLink` to icon defaults - 8c40e55: Updated the `bitbucket-server-auth` default API to set its environment based on the `auth.environment` config option instead of being hardcoded to `development`. - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/core-plugin-api@1.10.0 - @backstage/plugin-permission-react@0.4.27 - @backstage/core-app-api@1.15.1 - @backstage/theme@0.6.0 ## @backstage/backend-app-api@1.0.1 ### Patch Changes - ffd1f4a: Plugin lifecycle shutdown hooks are now performed before root lifecycle shutdown hooks. - fd6e6f4: build(deps): bump `cookie` from 0.6.0 to 0.7.0 - 094eaa3: Remove references to in-repo backend-common - 04af116: The backend will no longer exit immediately if any plugin or modules fails to initialize. Instead, the backend will wait for all plugins and modules to either start up successfully or throw, and then shut down the backend if there were any initialization errors. This fixes an issue where backend initialization errors in adjacent plugins during database schema migration could cause the database migrations to be stuck in a locked state. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/plugin-permission-node@0.8.4 - @backstage/backend-plugin-api@1.0.1 - @backstage/cli-common@0.1.14 - @backstage/config@1.2.0 - @backstage/config-loader@1.9.1 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/backend-defaults@0.5.1 ### Patch Changes - 4b60e0c: Small tweaks to API reports to make them valid - 321a994: Sensitive internal fields on `BackstageCredentials` objects are now defined as read-only properties in order to minimize risk of leakage. - ffd1f4a: Plugin lifecycle shutdown hooks are now performed before root lifecycle shutdown hooks. - ffd1f4a: The database manager now attempts to close any database connections in a root lifecycle shutdown hook. - e36d12f: The task scheduler now attempts to abort any tasks if it detects that Backstage is being shut down. - fd6e6f4: build(deps): bump `cookie` from 0.6.0 to 0.7.0 - 094eaa3: Remove references to in-repo backend-common - 720a2f9: Updated dependency `git-url-parse` to `^15.0.0`. - 920004b: Updating error message for getProjectId when fetching Gitlab project from its url to be more accurate - d7b44f0: Fix for backend shutdown hanging during local development due to SQLite connection shutdown never resolving. - 8fd7deb: The default root HTTP service implementation will now pretty-print JSON responses in development. If you are overriding the `rootHttpRouterServiceFactory` with a `configure` function that doesn't call `applyDefaults`, you can introduce this functionality by adding the following snippet inside `configure`: ```ts if (process.env.NODE_ENV === 'development') { app.set('json spaces', 2); } ``` - Updated dependencies - @backstage/cli-node@0.2.9 - @backstage/backend-app-api@1.0.1 - @backstage/plugin-auth-node@0.5.3 - @backstage/plugin-permission-node@0.8.4 - @backstage/plugin-events-node@0.4.1 - @backstage/integration@1.15.1 - @backstage/backend-dev-utils@0.1.5 - @backstage/backend-plugin-api@1.0.1 - @backstage/cli-common@0.1.14 - @backstage/config@1.2.0 - @backstage/config-loader@1.9.1 - @backstage/errors@1.2.4 - @backstage/integration-aws-node@0.1.12 - @backstage/types@1.1.1 ## @backstage/backend-dynamic-feature-service@0.4.2 ### Patch Changes - d18d494: Enhance and simplify the activation of the dynamic plugins feature: - The dynamic plugins service (which implements the `DynamicPluginsProvider`) is restored, since it is required for plugins to depend on it in order to get the details of loaded dynamic plugins (possibly with loading errors to be surfaced in some UI). - A new all-in-one feature loader (`dynamicPluginsFeatureLoader`) is provided that allows a 1-liner activation of both the dynamic features and additional services or plugins required to have the dynamic plugins work correctly with dynamic plugins config schemas. Previous service factories or feature loaders are deprecated. - e6c0550: Enhance the API of the `DynamicPluginProvider` (available as a service) to: - expose the new `getScannedPackage()` method that returns the `ScannedPluginPackage` from which a given plugin has been loaded, - add an optional `includeFailed` argument in the plugins list retrieval methods, to include the plugins that could be successfully loaded (`false` by default). - 4c89e47: Allow passing an async module loader in the `DynamicPluginsFeatureLoaderOptions`. - 094eaa3: Remove references to in-repo backend-common - 2f88f88: Updated backend installation instructions. - Updated dependencies - @backstage/backend-defaults@0.5.1 - @backstage/cli-node@0.2.9 - @backstage/backend-app-api@1.0.1 - @backstage/plugin-scaffolder-node@0.5.0 - @backstage/plugin-auth-node@0.5.3 - @backstage/plugin-search-backend-node@1.3.3 - @backstage/plugin-catalog-backend@1.27.0 - @backstage/plugin-permission-node@0.8.4 - @backstage/plugin-events-backend@0.3.13 - @backstage/plugin-events-node@0.4.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/cli-common@0.1.14 - @backstage/config@1.2.0 - @backstage/config-loader@1.9.1 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-app-node@0.1.26 - @backstage/plugin-permission-common@0.8.1 - @backstage/plugin-search-common@1.2.14 ## @backstage/backend-plugin-api@1.0.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/cli-common@0.1.14 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-permission-common@0.8.1 ## @backstage/backend-test-utils@1.0.1 ### Patch Changes - fd6e6f4: build(deps): bump `cookie` from 0.6.0 to 0.7.0 - a19ce00: The `createMockDirectory` cleanup strategy has been changed, no longer requiring it to be called outside individual tests. - 9cc7dd6: Minor doc string changes - Updated dependencies - @backstage/backend-defaults@0.5.1 - @backstage/backend-app-api@1.0.1 - @backstage/plugin-auth-node@0.5.3 - @backstage/plugin-events-node@0.4.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/catalog-client@1.7.1 ### Patch Changes - 0040632: Add missing doc string to API - Updated dependencies - @backstage/catalog-model@1.7.0 - @backstage/errors@1.2.4 ## @backstage/cli-node@0.2.9 ### Patch Changes - fec7278: Added new `lockfile.getDependencyTreeHash(name)` utility. - Updated dependencies - @backstage/cli-common@0.1.14 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/codemods@0.1.51 ### Patch Changes - c06b7f1: Updated dependency `@types/jscodeshift` to `^0.12.0`. - Updated dependencies - @backstage/cli-common@0.1.14 ## @backstage/core-app-api@1.15.1 ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - Updated dependencies - @backstage/core-plugin-api@1.10.0 - @backstage/version-bridge@1.0.10 - @backstage/config@1.2.0 - @backstage/types@1.1.1 ## @backstage/core-compat-api@0.3.1 ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - 4a5ba19: Internal update to remove deprecated `BackstagePlugin` type and move to `FrontendPlugin` - Updated dependencies - @backstage/frontend-plugin-api@0.9.0 - @backstage/core-plugin-api@1.10.0 - @backstage/version-bridge@1.0.10 ## @backstage/core-components@0.15.1 ### Patch Changes - 3f76d0e: Correct size of FavoriteToggle and inherit non-starred color from parent - e969dc7: Move `@types/react` to a peer dependency. - 1ff1dbd: It is possible to define a custom error element to be shown when sign in fails - 83e2887: Fixed a bug in the `SidebarSubmenu` core component that caused the nested menu to overlap with the sidebar when the user hovers over the pinned sidebar. - 46b5a20: `Link` component now accepts `externalLinkIcon` prop - e4ad29a: Fix authentication error handling using redirect flow via `enableExperimentalRedirectFlow` config. If an error is caught during authentication, the user is redirected back to app origin with `error` query parameter containing the error message. - Updated dependencies - @backstage/core-plugin-api@1.10.0 - @backstage/version-bridge@1.0.10 - @backstage/theme@0.6.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 ## @backstage/create-app@0.5.21 ### Patch Changes - c42c710: Bumped create-app version. - 56a8118: Bumped create-app version. - a7674d6: Fixed lack of `.yarnrc.yml` in the template. - ab89e45: Remove some dependencies that aren't required anymore - b452088: Tweak `Dockerfile` to fix deprecated syntax. - Updated dependencies - @backstage/cli-common@0.1.14 ## @backstage/dev-utils@1.1.2 ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/integration-react@1.2.0 - @backstage/core-plugin-api@1.10.0 - @backstage/app-defaults@1.5.12 - @backstage/core-app-api@1.15.1 - @backstage/plugin-catalog-react@1.14.0 - @backstage/theme@0.6.0 - @backstage/catalog-model@1.7.0 ## @backstage/eslint-plugin@0.1.10 ### Patch Changes - b1c2a2d: Exclude `@material-ui/data-grid` - 63963f6: Internal refactor to deal with `estree` upgrade ## @backstage/frontend-defaults@0.1.1 ### Patch Changes - Updated dependencies - @backstage/frontend-plugin-api@0.9.0 - @backstage/frontend-app-api@0.10.0 - @backstage/plugin-app@0.1.1 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 ## @backstage/frontend-test-utils@0.2.1 ### Patch Changes - 666d5b1: Disable the built-in `SignInPage` in `createExtensionTester` in order to not mess with existing tests - e969dc7: Move `@types/react` to a peer dependency. - 873e424: Internal refactor of usage of opaque types. - 0801db6: Added an `ApiMock`, analogous to `ServiceMock` from the backend test utils. - 9cc7dd6: Added a `mockApis` export, which will replace the `MockX` API implementation classes and their related types. This is analogous with the backend's `mockServices`. **DEPRECATED** several old helpers: - Deprecated `MockAnalyticsApi`, please use `mockApis.analytics` instead. - Deprecated `MockConfigApi`, please use `mockApis.config` instead. - Deprecated `MockPermissionApi`, please use `mockApis.permission` instead. - Deprecated `MockStorageApi`, please use `mockApis.storage` instead. - Deprecated `MockTranslationApi`, please use `mockApis.translation` instead. - Updated dependencies - @backstage/frontend-plugin-api@0.9.0 - @backstage/frontend-app-api@0.10.0 - @backstage/version-bridge@1.0.10 - @backstage/test-utils@1.7.0 - @backstage/plugin-app@0.1.1 - @backstage/config@1.2.0 - @backstage/types@1.1.1 ## @backstage/integration@1.15.1 ### Patch Changes - 720a2f9: Updated dependency `git-url-parse` to `^15.0.0`. - 920004b: Updating error message for getProjectId when fetching Gitlab project from its url to be more accurate - 090e49a: Updated functions parseHarnessUrl, getHarnessLatestCommitUrl, getHarnessFileContentsUrl and getHarnessArchiveUrl to fix parsing of urls - Updated dependencies - @backstage/config@1.2.0 - @backstage/errors@1.2.4 ## @techdocs/cli@1.8.20 ### Patch Changes - Updated dependencies - @backstage/backend-defaults@0.5.1 - @backstage/plugin-techdocs-node@1.12.12 - @backstage/catalog-model@1.7.0 - @backstage/cli-common@0.1.14 - @backstage/config@1.2.0 ## @backstage/version-bridge@1.0.10 ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. ## @backstage/plugin-api-docs@0.11.11 ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - 46b5a20: Empty states updated with external link icon for learn more links - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/frontend-plugin-api@0.9.0 - @backstage/plugin-catalog@1.24.0 - @backstage/core-compat-api@0.3.1 - @backstage/core-plugin-api@1.10.0 - @backstage/plugin-permission-react@0.4.27 - @backstage/plugin-catalog-react@1.14.0 - @backstage/catalog-model@1.7.0 - @backstage/plugin-catalog-common@1.1.0 ## @backstage/plugin-api-docs-module-protoc-gen-doc@0.1.8 ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. ## @backstage/plugin-app@0.1.1 ### Patch Changes - b36be7a: Added missing default `SignInPageExtension` which by default uses guest auth, missing `ApiExtensions` for `scmAuth` - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/frontend-plugin-api@0.9.0 - @backstage/integration-react@1.2.0 - @backstage/core-plugin-api@1.10.0 - @backstage/plugin-permission-react@0.4.27 - @backstage/theme@0.6.0 ## @backstage/plugin-app-backend@0.3.76 ### Patch Changes - 2c4ee26: Fixed unexpected behaviour where configuration supplied with `APP_CONFIG_*` environment variables where not filtered by the configuration schema. - 094eaa3: Remove references to in-repo backend-common - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 - @backstage/config@1.2.0 - @backstage/config-loader@1.9.1 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-app-node@0.1.26 ## @backstage/plugin-app-node@0.1.26 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.0.1 - @backstage/config-loader@1.9.1 ## @backstage/plugin-app-visualizer@0.1.11 ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/frontend-plugin-api@0.9.0 - @backstage/core-plugin-api@1.10.0 ## @backstage/plugin-auth-backend@0.23.1 ### Patch Changes - 094eaa3: Remove references to in-repo backend-common - Updated dependencies - @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.1 - @backstage/plugin-auth-backend-module-atlassian-provider@0.3.1 - @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.1 - @backstage/plugin-auth-backend-module-microsoft-provider@0.2.1 - @backstage/plugin-auth-backend-module-onelogin-provider@0.2.1 - @backstage/plugin-auth-backend-module-aws-alb-provider@0.2.1 - @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.1 - @backstage/plugin-auth-backend-module-github-provider@0.2.1 - @backstage/plugin-auth-backend-module-gitlab-provider@0.2.1 - @backstage/plugin-auth-backend-module-google-provider@0.2.1 - @backstage/plugin-auth-backend-module-oauth2-provider@0.3.1 - @backstage/plugin-auth-backend-module-oidc-provider@0.3.1 - @backstage/plugin-auth-backend-module-okta-provider@0.1.1 - @backstage/plugin-auth-node@0.5.3 - @backstage/plugin-catalog-node@1.13.1 - @backstage/catalog-client@1.7.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-auth-backend-module-auth0-provider@0.1.1 - @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.1 - @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.1 - @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.1 ## @backstage/plugin-auth-backend-module-atlassian-provider@0.3.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-auth0-provider@0.1.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-aws-alb-provider@0.2.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - 094eaa3: Remove references to in-repo backend-common - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/plugin-auth-backend@0.23.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/errors@1.2.4 ## @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/errors@1.2.4 ## @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 ## @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/plugin-auth-backend-module-github-provider@0.2.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-gitlab-provider@0.2.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-google-provider@0.2.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-guest-provider@0.2.1 ### Patch Changes - 094eaa3: Remove references to in-repo backend-common - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/errors@1.2.4 ## @backstage/plugin-auth-backend-module-microsoft-provider@0.2.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - daa02d6: Add `skipUserProfile` config flag to Microsoft authenticator - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-oauth2-provider@0.3.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 - @backstage/errors@1.2.4 ## @backstage/plugin-auth-backend-module-oidc-provider@0.3.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - 094eaa3: Remove references to in-repo backend-common - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/plugin-auth-backend@0.23.1 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-okta-provider@0.1.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-onelogin-provider@0.2.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-auth-backend-module-pinniped-provider@0.2.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 - @backstage/config@1.2.0 ## @backstage/plugin-auth-node@0.5.3 ### Patch Changes - 217458a: Added a new `allowedDomains` option for the common `emailLocalPartMatchingUserEntityName` sign-in resolver. - 094eaa3: Remove references to in-repo backend-common - e4ad29a: Fix authentication error handling using redirect flow via `enableExperimentalRedirectFlow` config. If an error is caught during authentication, the user is redirected back to app origin with `error` query parameter containing the error message. - Updated dependencies - @backstage/catalog-client@1.7.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/plugin-auth-react@0.1.7 ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - Updated dependencies - @backstage/core-components@0.15.1 - @backstage/core-plugin-api@1.10.0 - @backstage/errors@1.2.4 ## @backstage/plugin-bitbucket-cloud-common@0.2.24 ### Patch Changes - Updated dependencies - @backstage/integration@1.15.1 ## @backstage/plugin-catalog-backend-module-aws@0.4.3 ### Patch Changes - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. - Updated dependencies - @backstage/backend-defaults@0.5.1 - @backstage/plugin-catalog-node@1.13.1 - @backstage/integration@1.15.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/integration-aws-node@0.1.12 - @backstage/plugin-catalog-common@1.1.0 - @backstage/plugin-kubernetes-common@0.8.3 ## @backstage/plugin-catalog-backend-module-azure@0.2.3 ### Patch Changes - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. - Updated dependencies - @backstage/plugin-catalog-node@1.13.1 - @backstage/integration@1.15.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/config@1.2.0 - @backstage/plugin-catalog-common@1.1.0 ## @backstage/plugin-catalog-backend-module-backstage-openapi@0.4.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.13.1 - @backstage/backend-openapi-utils@0.2.0 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 ## @backstage/plugin-catalog-backend-module-bitbucket-server@0.2.3 ### Patch Changes - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. - Updated dependencies - @backstage/plugin-catalog-node@1.13.1 - @backstage/integration@1.15.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 ## @backstage/plugin-catalog-backend-module-gcp@0.3.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.13.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/plugin-kubernetes-common@0.8.3 ## @backstage/plugin-catalog-backend-module-gerrit@0.2.3 ### Patch Changes - 5b6edf1: Fixed an issue preventing the provider's `schedule` config from being applied." - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. - Updated dependencies - @backstage/plugin-catalog-node@1.13.1 - @backstage/integration@1.15.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 ## @backstage/plugin-catalog-backend-module-github@0.7.5 ### Patch Changes - 094eaa3: Remove references to in-repo backend-common - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. - 720a2f9: Updated dependency `git-url-parse` to `^15.0.0`. - Updated dependencies - @backstage/plugin-catalog-backend@1.27.0 - @backstage/plugin-events-node@0.4.1 - @backstage/plugin-catalog-node@1.13.1 - @backstage/integration@1.15.1 - @backstage/catalog-client@1.7.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/plugin-catalog-common@1.1.0 ## @backstage/plugin-catalog-backend-module-github-org@0.3.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-backend-module-github@0.7.5 - @backstage/plugin-events-node@0.4.1 - @backstage/plugin-catalog-node@1.13.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/config@1.2.0 ## @backstage/plugin-catalog-backend-module-gitlab@0.4.3 ### Patch Changes - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. - Updated dependencies - @backstage/backend-defaults@0.5.1 - @backstage/plugin-events-node@0.4.1 - @backstage/plugin-catalog-node@1.13.1 - @backstage/integration@1.15.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/plugin-catalog-common@1.1.0 ## @backstage/plugin-catalog-backend-module-gitlab-org@0.2.1 ### Patch Changes - 094eaa3: Remove references to in-repo backend-common - Updated dependencies - @backstage/plugin-events-node@0.4.1 - @backstage/plugin-catalog-node@1.13.1 - @backstage/plugin-catalog-backend-module-gitlab@0.4.3 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-catalog-backend-module-incremental-ingestion@0.5.5 ### Patch Changes - 4b60e0c: Remove extension points from `/alpha` export, they're available from the main package already - 094eaa3: Remove references to in-repo backend-common - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. - 2107965: Turn down the logging level on most "all is well" type log messages - Updated dependencies - @backstage/plugin-catalog-backend@1.27.0 - @backstage/plugin-events-node@0.4.1 - @backstage/plugin-catalog-node@1.13.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/plugin-permission-common@0.8.1 ## @backstage/plugin-catalog-backend-module-ldap@0.9.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.13.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.1.0 ## @backstage/plugin-catalog-backend-module-logs@0.1.2 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-backend@1.27.0 - @backstage/plugin-events-node@0.4.1 - @backstage/backend-plugin-api@1.0.1 ## @backstage/plugin-catalog-backend-module-msgraph@0.6.3 ### Patch Changes - 4b60e0c: Remove extension points from `/alpha` export, they're available from the main package already - 3109c24: The export for the new backend system at the `/alpha` export is now also available via the main entry point, which means that you can remove the `/alpha` suffix from the import. - Updated dependencies - @backstage/plugin-catalog-node@1.13.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/plugin-catalog-common@1.1.0 ## @backstage/plugin-catalog-backend-module-openapi@0.2.2 ### Patch Changes - 094eaa3: Remove references to in-repo backend-common - Updated dependencies - @backstage/plugin-catalog-backend@1.27.0 - @backstage/plugin-catalog-node@1.13.1 - @backstage/integration@1.15.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/types@1.1.1 - @backstage/plugin-catalog-common@1.1.0 ## @backstage/plugin-catalog-backend-module-puppetdb@0.2.3 ### Patch Changes - 4b60e0c: Small tweaks to API reports to make them valid - Updated dependencies - @backstage/plugin-catalog-node@1.13.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/config@1.2.0 - @backstage/errors@1.2.4 - @backstage/types@1.1.1 ## @backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.1 ### Patch Changes - Updated dependencies - @backstage/plugin-catalog-node@1.13.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/plugin-catalog-common@1.1.0 - @backstage/plugin-scaffolder-common@1.5.6 ## @backstage/plugin-catalog-backend-module-unprocessed@0.5.1 ### Patch Changes - 094eaa3: Remove references to in-repo backend-common - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/plugin-catalog-node@1.13.1 - @backstage/backend-plugin-api@1.0.1 - @backstage/catalog-model@1.7.0 - @backstage/errors@1.2.4 - @backstage/plugin-catalog-unprocessed-entities-common@0.0.4 - @backstage/plugin-permission-common@0.8.1 ## @backstage/plugin-catalog-graph@0.4.11 ### Patch Changes - e969dc7: Move `@types/react` to a peer dependency. - 4d9f39e: Added InfoCard `action` attribute for CatalogGraphCard ```tsx const action =