fix(deps): update backstage monorepo #56

Open
kjuulh wants to merge 1 commits from renovate/backstage-monorepo into main
Owner

This PR contains the following updates:

Package Type Update Change
@backstage/app-defaults (source) dependencies patch 1.5.12 -> 1.5.13
@backstage/catalog-client (source) dependencies minor 1.7.1 -> 1.8.0
@backstage/catalog-model (source) dependencies patch 1.7.0 -> 1.7.1
@backstage/cli (source) devDependencies minor ^0.28.0 -> ^0.29.0
@backstage/cli (source) dependencies minor ^0.28.0 -> ^0.29.0
@backstage/config (source) dependencies minor 1.2.0 -> 1.3.0
@backstage/core-app-api (source) devDependencies patch 1.15.1 -> 1.15.2
@backstage/core-app-api (source) dependencies patch 1.15.1 -> 1.15.2
@backstage/core-components (source) dependencies minor ^0.15.0 -> ^0.16.0
@backstage/core-plugin-api (source) dependencies patch 1.10.0 -> 1.10.1
@backstage/dev-utils (source) devDependencies patch 1.1.2 -> 1.1.3
@backstage/integration-react (source) dependencies patch 1.2.0 -> 1.2.1
@backstage/plugin-api-docs (source) dependencies minor ^0.11.0 -> ^0.12.0
@backstage/plugin-app-backend (source) dependencies minor ^0.3.33 -> ^0.4.0
@backstage/plugin-auth-backend (source) dependencies minor ^0.23.0 -> ^0.24.0
@backstage/plugin-catalog (source) dependencies minor 1.24.0 -> 1.25.0
@backstage/plugin-catalog-backend (source) dependencies minor 1.27.1 -> 1.28.0
@backstage/plugin-catalog-backend-module-github (source) dependencies patch 0.7.6 -> 0.7.7
@backstage/plugin-catalog-common (source) dependencies patch 1.1.0 -> 1.1.1
@backstage/plugin-catalog-graph (source) dependencies patch 0.4.11 -> 0.4.12
@backstage/plugin-catalog-import (source) dependencies patch 0.12.5 -> 0.12.6
@backstage/plugin-catalog-react (source) dependencies patch 1.14.0 -> 1.14.1
@backstage/plugin-org (source) dependencies patch 0.6.31 -> 0.6.32
@backstage/plugin-permission-common (source) dependencies patch 0.8.1 -> 0.8.2
@backstage/plugin-permission-node (source) dependencies patch 0.8.4 -> 0.8.5
@backstage/plugin-permission-react (source) dependencies patch 0.4.27 -> 0.4.28
@backstage/plugin-proxy-backend (source) dependencies patch 0.5.7 -> 0.5.8
@backstage/plugin-scaffolder (source) dependencies minor 1.26.2 -> 1.27.0
@backstage/plugin-scaffolder-backend (source) dependencies minor 1.26.2 -> 1.27.0
@backstage/plugin-search (source) dependencies patch 1.4.18 -> 1.4.19
@backstage/plugin-search-backend (source) dependencies minor 1.6.1 -> 1.7.0
@backstage/plugin-search-backend-module-pg (source) dependencies patch 0.5.37 -> 0.5.38
@backstage/plugin-search-backend-node (source) dependencies patch 1.3.4 -> 1.3.5
@backstage/plugin-search-react (source) dependencies patch 1.8.1 -> 1.8.2
@backstage/plugin-techdocs (source) dependencies patch 1.11.0 -> 1.11.1
@backstage/plugin-techdocs-backend (source) dependencies patch 1.11.1 -> 1.11.2
@backstage/plugin-techdocs-module-addons-contrib (source) dependencies patch 1.1.16 -> 1.1.17
@backstage/plugin-techdocs-react (source) dependencies patch 1.2.9 -> 1.2.10
@backstage/plugin-user-settings (source) dependencies patch 0.8.14 -> 0.8.15
@backstage/test-utils (source) devDependencies patch 1.7.0 -> 1.7.1
@backstage/theme (source) dependencies patch 0.6.0 -> 0.6.1

Release Notes

backstage/backstage (@​backstage/app-defaults)

v1.5.13

Compare Source

Patch Changes
backstage/backstage (@​backstage/catalog-client)

v1.8.0

Compare Source

Minor Changes
  • 656d1ef: Internal update to use the updated generated code from backstage-cli package schema openapi generate --client-package ....
  • 31c4fe0: The client now automatically splits up very large getEntitiesByRefs calls into several smaller requests behind the scenes when needed. This ensures that each individual request does not exceed common Express.js request body limits or overload the server.
Patch Changes
backstage/backstage (@​backstage/catalog-model)

v1.7.1

Compare Source

Patch Changes
backstage/backstage (@​backstage/cli)

v0.29.1

Compare Source

Published a new @backstage/backend-test-utils package, which is a package for backend test utilities.

v0.29.0

Compare Source

Minor Changes
  • bc47b17: BREAKING: Updates ESLint config to ignore all generated source code under src/**/generated/**/*.ts.

  • 6819f8c: Added a new optimization to the repo test command that will filter out unused packages in watch mode if all provide filters are paths that point from the repo root. This significantly speeds up running individual tests from the repo root in a large workspace, for example:

    yarn test packages/app/src/App.test.tsx
    
  • d849865: The package packing now populates typesVersions for additional entry points rather than using additional package.json files for type resolution. This improves auto completion of separate entry points when consuming published packages.

  • bc71665: BREAKING: The LEGACY_BACKEND_START flag has been removed, along with support for src/run.ts as the development entry point.

Patch Changes
  • 4046d53: Fixed an issue where the --successCache option for the repo test and repo lint commands would be include the workspace path in generated cache keys. This previously broke caching in environments where the workspace path varies across builds.

  • 4a378d3: Fix dev server reloads of plugin discovery for new frontend system.

  • 28b60ad: The check for react-dom/client in the Jest configuration will now properly always run from the target directory.

  • 6b2888c: Fixed an issue with the --successCache flag for repo test where the tree hash for the wrong package directory would sometimes be used to generate the cache key.

  • e30b65d: Added --alwaysPack as a replacement for the now hidden --alwaysYarnPack flag for the build-workspace command.

  • be0278e: Removed circular import

  • a7f97e4: Added a new "rejectFrontendNetworkRequests" configuration flag that can be set in the "jest" field in the root package.json:

    {
      "jest": {
        "rejectFrontendNetworkRequests": true
      }
    }
    

    This flag causes rejection of any form of network requests that are attempted to be made in frontend or common package tests. This flag can only be set in the root package.json and can not be overridden in individual package configurations.

  • 6c48ebd: Add --max-warnings -1 support to backstage-cli package lint

  • 04297a0: The --successCache option for the repo test and repo lint commands now use an additive store that keeps old entries around for a week before they are cleaned up automatically.

  • a2f0559: When using the experimental Rspack flag the app build and dev server now injects configuration via a <script type="backstage.io/config">...</script> tag in index.html rather than the process.env.APP_CONFIG definition, which will now be defined as an empty array instead.

    This requires the app to be using the config loader from the 1.31 release of Backstage. Make sure your app is using at least that version if you are upgrading to this version of the CLI.

    If you have copied the implementation of the defaultConfigLoader, make sure to update it to the new implementation. In particular the config loader needs to be able to read configuration from script tags with the type backstage.io/config.

  • b4627f2: Fixed an issue where the raw-loader for loading HTML templates was not resolved from the context of the CLI package.

  • cd1ef2b: Updated dependency vite to ^5.0.0.

  • 23f1da2: Updated dependency ts-morph to ^24.0.0.

  • b533056: Updated dependency css-loader to ^7.0.0.

  • be008c3: Updated dependency @module-federation/enhanced to ^0.7.0.

  • 6266ed3: Updated dependency del to ^8.0.0.

  • 4046d53: Fixed an issue with the repo lint command where the cache key for the --successCache option would not properly ignore files that should be ignored according to .eslintignores.

  • e19c53c: Fix for the --link flag for package start to deduplicate react-router and react-router-dom.

  • 17850a5: Update upgrade-helper link in versions:bump command to include yarnPlugin parameter when the yarn plugin is installed

  • 09ea093: Fixed an issue where .css style injection would fail for published packages.

  • 702f41d: Bumped dev dependencies @types/node

  • 5d74716: Remove unused backend-common dependency

  • b084f5a: Bump the Webpack dependency range to ^5.94.0, as our current configuration is not compatible with some older versions.

  • e565f73: Added support for .webp files in the frontend tooling.

  • 946fa34: Added a new --link <workspace-path> option for frontend builds that allow you to override module resolution to link in an external workspace at runtime.

    As part of this change the Webpack linked workspace resolution plugin for frontend builds has been removed. It was in place to support the old workspace linking where it was done by Yarn, which is no longer a working option.

  • Updated dependencies

backstage/backstage (@​backstage/config)

v1.3.0

Compare Source

Minor Changes
  • d52d7f9: Make readDurationFromConfig support both ISO and ms formats as well, to make it easier to enter time as an end user
Patch Changes
backstage/backstage (@​backstage/core-app-api)

v1.15.2

Compare Source

Patch Changes
backstage/backstage (@​backstage/core-components)

v0.16.0

Compare Source

Minor Changes
  • dc409c5: The SupportButton component will now be hidden if no support config is specified in app-config
Patch Changes
backstage/backstage (@​backstage/core-plugin-api)

v1.10.1

Compare Source

Patch Changes
backstage/backstage (@​backstage/dev-utils)

v1.1.3

Compare Source

Patch Changes
backstage/backstage (@​backstage/integration-react)

v1.2.1

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-api-docs)

v0.12.0

Compare Source

Minor Changes
  • 6836522: Added support for pagination in api-docs plugin - DefaultApiExplorerPage
Patch Changes
backstage/backstage (@​backstage/plugin-auth-backend)

v0.24.0

Compare Source

Minor Changes
  • 75168e3: BREAKING: The AWS ALB fullProfile will no longer have the its username or email converted to lowercase. This is to ensure unique handling of the users. You may need to update and configure a custom sign-in resolver or profile transform as a result.
Patch Changes
backstage/backstage (@​backstage/plugin-catalog)

v1.25.0

Compare Source

Minor Changes
  • 50df3c8: - Updated EntityLayout component to implement breadcrumb navigation based on the entity relations.

    • Added parentEntityRelations prop to EntityLayoutProps to specify relation types for parent entities.
  • 79e9631: Allow OffsetPaginatedCatalogTable to configure Table options and CursorPaginatedCatalogTable to configure paginationPosition.

Patch Changes
backstage/backstage (@​backstage/plugin-catalog-backend)

v1.28.0

Compare Source

Minor Changes
  • 39fd704: Internal update to use the new generated server types from backstage-cli package schema openapi generate --server.

  • 76857da: Added entity_ref column to final_entities in order to move refresh_state away from the read path

  • 34d4360: Drop redundant indices from the database.

    The following redundant indices are removed in this version:

    • final_entities_entity_id_idx - overlaps with final_entities_pkey
    • refresh_state_entity_id_idx - overlaps with refresh_state_pkey
    • refresh_state_entity_ref_idx - overlaps with refresh_state_entity_ref_uniq
    • search_key_idx and search_value_idx - these were replaced by the composite index search_key_value_idx in #​22594

    No negative end user impact is expected, but rather that performance should increase due to less index churn.

Patch Changes
backstage/backstage (@​backstage/plugin-catalog-backend-module-github)

v0.7.7

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-catalog-common)

v1.1.1

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-catalog-graph)

v0.4.12

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-catalog-import)

v0.12.6

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-catalog-react)

v1.14.1

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-org)

v0.6.32

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-permission-common)

v0.8.2

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-permission-node)

v0.8.5

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-permission-react)

v0.4.28

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-proxy-backend)

v0.5.8

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-scaffolder)

v1.27.0

Compare Source

Minor Changes
  • f61d4cc: Add scaffolder permission scaffolder.template.management for accessing the template management features
  • 69fb6e7: Fix contextMenu not being disabled bug in new scaffolder pages
Patch Changes
backstage/backstage (@​backstage/plugin-scaffolder-backend)

v1.27.0

Compare Source

Minor Changes
  • 0587633: Bumped the isolated-vm dependency from v4 to v5, which drops support for Node.js v16.

  • e61d5ef: BREAKING EXPERIMENTAL: The checkpoint method now takes an object instead of previous arguments.

    await ctx.checkpoint({ key: 'repo.create', fn: () => ockokit.repo.create({...})})
    

    You can also now return void from the checkpoint if the method returns void inside the checkpoint handler.

Patch Changes
backstage/backstage (@​backstage/plugin-search)

v1.4.19

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-search-backend)

v1.7.0

Compare Source

Minor Changes
  • 39fd704: Internal update to use the new generated server types from backstage-cli package schema openapi generate --server.
Patch Changes
backstage/backstage (@​backstage/plugin-search-backend-module-pg)

v0.5.38

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-search-backend-node)

v1.3.5

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-search-react)

v1.8.2

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-techdocs)

v1.11.1

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-techdocs-backend)

v1.11.2

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-techdocs-module-addons-contrib)

v1.1.17

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-techdocs-react)

v1.2.10

Compare Source

Patch Changes
backstage/backstage (@​backstage/plugin-user-settings)

v0.8.15

Compare Source

Patch Changes
backstage/backstage (@​backstage/test-utils)

v1.7.1

Compare Source

Patch Changes
backstage/backstage (@​backstage/theme)

v0.6.1

Compare Source

Patch Changes
  • ea75c37: Internal refactor to avoid top-level imports from MUI.

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [@backstage/app-defaults](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/app-defaults)) | dependencies | patch | [`1.5.12` -> `1.5.13`](https://renovatebot.com/diffs/npm/@backstage%2fapp-defaults/1.5.12/1.5.13) | | [@backstage/catalog-client](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/catalog-client)) | dependencies | minor | [`1.7.1` -> `1.8.0`](https://renovatebot.com/diffs/npm/@backstage%2fcatalog-client/1.7.1/1.8.0) | | [@backstage/catalog-model](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/catalog-model)) | dependencies | patch | [`1.7.0` -> `1.7.1`](https://renovatebot.com/diffs/npm/@backstage%2fcatalog-model/1.7.0/1.7.1) | | [@backstage/cli](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/cli)) | devDependencies | minor | [`^0.28.0` -> `^0.29.0`](https://renovatebot.com/diffs/npm/@backstage%2fcli/0.28.2/0.29.1) | | [@backstage/cli](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/cli)) | dependencies | minor | [`^0.28.0` -> `^0.29.0`](https://renovatebot.com/diffs/npm/@backstage%2fcli/0.28.2/0.29.1) | | [@backstage/config](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/config)) | dependencies | minor | [`1.2.0` -> `1.3.0`](https://renovatebot.com/diffs/npm/@backstage%2fconfig/1.2.0/1.3.0) | | [@backstage/core-app-api](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/core-app-api)) | devDependencies | patch | [`1.15.1` -> `1.15.2`](https://renovatebot.com/diffs/npm/@backstage%2fcore-app-api/1.15.1/1.15.2) | | [@backstage/core-app-api](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/core-app-api)) | dependencies | patch | [`1.15.1` -> `1.15.2`](https://renovatebot.com/diffs/npm/@backstage%2fcore-app-api/1.15.1/1.15.2) | | [@backstage/core-components](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/core-components)) | dependencies | minor | [`^0.15.0` -> `^0.16.0`](https://renovatebot.com/diffs/npm/@backstage%2fcore-components/0.15.1/0.16.0) | | [@backstage/core-plugin-api](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/core-plugin-api)) | dependencies | patch | [`1.10.0` -> `1.10.1`](https://renovatebot.com/diffs/npm/@backstage%2fcore-plugin-api/1.10.0/1.10.1) | | [@backstage/dev-utils](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/dev-utils)) | devDependencies | patch | [`1.1.2` -> `1.1.3`](https://renovatebot.com/diffs/npm/@backstage%2fdev-utils/1.1.2/1.1.3) | | [@backstage/integration-react](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/integration-react)) | dependencies | patch | [`1.2.0` -> `1.2.1`](https://renovatebot.com/diffs/npm/@backstage%2fintegration-react/1.2.0/1.2.1) | | [@backstage/plugin-api-docs](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/api-docs)) | dependencies | minor | [`^0.11.0` -> `^0.12.0`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-api-docs/0.11.11/0.12.0) | | [@backstage/plugin-app-backend](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/app-backend)) | dependencies | minor | [`^0.3.33` -> `^0.4.0`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-app-backend/0.3.76/0.4.1) | | [@backstage/plugin-auth-backend](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/auth-backend)) | dependencies | minor | [`^0.23.0` -> `^0.24.0`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-auth-backend/0.23.1/0.24.0) | | [@backstage/plugin-catalog](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog)) | dependencies | minor | [`1.24.0` -> `1.25.0`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-catalog/1.24.0/1.25.0) | | [@backstage/plugin-catalog-backend](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-backend)) | dependencies | minor | [`1.27.1` -> `1.28.0`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-catalog-backend/1.27.1/1.28.0) | | [@backstage/plugin-catalog-backend-module-github](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-backend-module-github)) | dependencies | patch | [`0.7.6` -> `0.7.7`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-catalog-backend-module-github/0.7.6/0.7.7) | | [@backstage/plugin-catalog-common](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-common)) | dependencies | patch | [`1.1.0` -> `1.1.1`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-catalog-common/1.1.0/1.1.1) | | [@backstage/plugin-catalog-graph](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-graph)) | dependencies | patch | [`0.4.11` -> `0.4.12`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-catalog-graph/0.4.11/0.4.12) | | [@backstage/plugin-catalog-import](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-import)) | dependencies | patch | [`0.12.5` -> `0.12.6`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-catalog-import/0.12.5/0.12.6) | | [@backstage/plugin-catalog-react](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/catalog-react)) | dependencies | patch | [`1.14.0` -> `1.14.1`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-catalog-react/1.14.0/1.14.1) | | [@backstage/plugin-org](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/org)) | dependencies | patch | [`0.6.31` -> `0.6.32`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-org/0.6.31/0.6.32) | | [@backstage/plugin-permission-common](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/permission-common)) | dependencies | patch | [`0.8.1` -> `0.8.2`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-permission-common/0.8.1/0.8.2) | | [@backstage/plugin-permission-node](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/permission-node)) | dependencies | patch | [`0.8.4` -> `0.8.5`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-permission-node/0.8.4/0.8.5) | | [@backstage/plugin-permission-react](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/permission-react)) | dependencies | patch | [`0.4.27` -> `0.4.28`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-permission-react/0.4.27/0.4.28) | | [@backstage/plugin-proxy-backend](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/proxy-backend)) | dependencies | patch | [`0.5.7` -> `0.5.8`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-proxy-backend/0.5.7/0.5.8) | | [@backstage/plugin-scaffolder](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/scaffolder)) | dependencies | minor | [`1.26.2` -> `1.27.0`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-scaffolder/1.26.2/1.27.0) | | [@backstage/plugin-scaffolder-backend](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/scaffolder-backend)) | dependencies | minor | [`1.26.2` -> `1.27.0`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-scaffolder-backend/1.26.2/1.27.0) | | [@backstage/plugin-search](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/search)) | dependencies | patch | [`1.4.18` -> `1.4.19`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-search/1.4.18/1.4.19) | | [@backstage/plugin-search-backend](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend)) | dependencies | minor | [`1.6.1` -> `1.7.0`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-search-backend/1.6.1/1.7.0) | | [@backstage/plugin-search-backend-module-pg](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend-module-pg)) | dependencies | patch | [`0.5.37` -> `0.5.38`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-search-backend-module-pg/0.5.37/0.5.38) | | [@backstage/plugin-search-backend-node](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/search-backend-node)) | dependencies | patch | [`1.3.4` -> `1.3.5`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-search-backend-node/1.3.4/1.3.5) | | [@backstage/plugin-search-react](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/search-react)) | dependencies | patch | [`1.8.1` -> `1.8.2`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-search-react/1.8.1/1.8.2) | | [@backstage/plugin-techdocs](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/techdocs)) | dependencies | patch | [`1.11.0` -> `1.11.1`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-techdocs/1.11.0/1.11.1) | | [@backstage/plugin-techdocs-backend](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/techdocs-backend)) | dependencies | patch | [`1.11.1` -> `1.11.2`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-techdocs-backend/1.11.1/1.11.2) | | [@backstage/plugin-techdocs-module-addons-contrib](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/techdocs-module-addons-contrib)) | dependencies | patch | [`1.1.16` -> `1.1.17`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-techdocs-module-addons-contrib/1.1.16/1.1.17) | | [@backstage/plugin-techdocs-react](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/techdocs-react)) | dependencies | patch | [`1.2.9` -> `1.2.10`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-techdocs-react/1.2.9/1.2.10) | | [@backstage/plugin-user-settings](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/plugins/user-settings)) | dependencies | patch | [`0.8.14` -> `0.8.15`](https://renovatebot.com/diffs/npm/@backstage%2fplugin-user-settings/0.8.14/0.8.15) | | [@backstage/test-utils](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/test-utils)) | devDependencies | patch | [`1.7.0` -> `1.7.1`](https://renovatebot.com/diffs/npm/@backstage%2ftest-utils/1.7.0/1.7.1) | | [@backstage/theme](https://backstage.io) ([source](https://github.com/backstage/backstage/tree/HEAD/packages/theme)) | dependencies | patch | [`0.6.0` -> `0.6.1`](https://renovatebot.com/diffs/npm/@backstage%2ftheme/0.6.0/0.6.1) | --- ### Release Notes <details> <summary>backstage/backstage (@&#8203;backstage/app-defaults)</summary> ### [`v1.5.13`](https://github.com/backstage/backstage/blob/HEAD/packages/app-defaults/CHANGELOG.md#1513) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/theme](https://github.com/backstage/theme)[@&#8203;0](https://github.com/0).6.1 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/core-app-api](https://github.com/backstage/core-app-api)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/plugin-permission-react](https://github.com/backstage/plugin-permission-react)[@&#8203;0](https://github.com/0).4.28 </details> <details> <summary>backstage/backstage (@&#8203;backstage/catalog-client)</summary> ### [`v1.8.0`](https://github.com/backstage/backstage/blob/HEAD/packages/catalog-client/CHANGELOG.md#180) [Compare Source](https://github.com/backstage/backstage/compare/v1.7.1...v1.8.0) ##### Minor Changes - [`656d1ef`](https://github.com/backstage/backstage/commit/656d1ef): Internal update to use the updated generated code from `backstage-cli package schema openapi generate --client-package ...`. - [`31c4fe0`](https://github.com/backstage/backstage/commit/31c4fe0): The client now automatically splits up very large `getEntitiesByRefs` calls into several smaller requests behind the scenes when needed. This ensures that each individual request does not exceed common Express.js request body limits or overload the server. ##### Patch Changes - [`873f89a`](https://github.com/backstage/backstage/commit/873f89a): Fix for certain filter fields in the `catalogApiMock` being case sensitive. - Updated dependencies - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 </details> <details> <summary>backstage/backstage (@&#8203;backstage/catalog-model)</summary> ### [`v1.7.1`](https://github.com/backstage/backstage/blob/HEAD/packages/catalog-model/CHANGELOG.md#171) [Compare Source](https://github.com/backstage/backstage/compare/v1.7.0...v1.7.1) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 </details> <details> <summary>backstage/backstage (@&#8203;backstage/cli)</summary> ### [`v0.29.1`](https://github.com/backstage/backstage/releases/tag/v0.29.1) [Compare Source](https://github.com/backstage/backstage/compare/v0.29.0...v0.29.1) Published a new `@backstage/backend-test-utils` package, which is a package for backend test utilities. ### [`v0.29.0`](https://github.com/backstage/backstage/blob/HEAD/packages/cli/CHANGELOG.md#0290) [Compare Source](https://github.com/backstage/backstage/compare/ed98ca692537ef898f458f18993ba4bef71f5f96...v0.29.0) ##### Minor Changes - [`bc47b17`](https://github.com/backstage/backstage/commit/bc47b17): **BREAKING**: Updates ESLint config to ignore all generated source code under `src/**/generated/**/*.ts`. - [`6819f8c`](https://github.com/backstage/backstage/commit/6819f8c): Added a new optimization to the `repo test` command that will filter out unused packages in watch mode if all provide filters are paths that point from the repo root. This significantly speeds up running individual tests from the repo root in a large workspace, for example: ```sh yarn test packages/app/src/App.test.tsx ``` - [`d849865`](https://github.com/backstage/backstage/commit/d849865): The package packing now populates `typesVersions` for additional entry points rather than using additional `package.json` files for type resolution. This improves auto completion of separate entry points when consuming published packages. - [`bc71665`](https://github.com/backstage/backstage/commit/bc71665): **BREAKING**: The `LEGACY_BACKEND_START` flag has been removed, along with support for `src/run.ts` as the development entry point. ##### Patch Changes - [`4046d53`](https://github.com/backstage/backstage/commit/4046d53): Fixed an issue where the `--successCache` option for the `repo test` and `repo lint` commands would be include the workspace path in generated cache keys. This previously broke caching in environments where the workspace path varies across builds. - [`4a378d3`](https://github.com/backstage/backstage/commit/4a378d3): Fix dev server reloads of plugin discovery for new frontend system. - [`28b60ad`](https://github.com/backstage/backstage/commit/28b60ad): The check for `react-dom/client` in the Jest configuration will now properly always run from the target directory. - [`6b2888c`](https://github.com/backstage/backstage/commit/6b2888c): Fixed an issue with the `--successCache` flag for `repo test` where the tree hash for the wrong package directory would sometimes be used to generate the cache key. - [`e30b65d`](https://github.com/backstage/backstage/commit/e30b65d): Added `--alwaysPack` as a replacement for the now hidden `--alwaysYarnPack` flag for the `build-workspace` command. - [`be0278e`](https://github.com/backstage/backstage/commit/be0278e): Removed circular import - [`a7f97e4`](https://github.com/backstage/backstage/commit/a7f97e4): Added a new `"rejectFrontendNetworkRequests"` configuration flag that can be set in the `"jest"` field in the root `package.json`: ```json { "jest": { "rejectFrontendNetworkRequests": true } } ``` This flag causes rejection of any form of network requests that are attempted to be made in frontend or common package tests. This flag can only be set in the root `package.json` and can not be overridden in individual package configurations. - [`6c48ebd`](https://github.com/backstage/backstage/commit/6c48ebd): Add `--max-warnings -1` support to `backstage-cli package lint` - [`04297a0`](https://github.com/backstage/backstage/commit/04297a0): The `--successCache` option for the `repo test` and `repo lint` commands now use an additive store that keeps old entries around for a week before they are cleaned up automatically. - [`a2f0559`](https://github.com/backstage/backstage/commit/a2f0559): When using the experimental Rspack flag the app build and dev server now injects configuration via a `<script type="backstage.io/config">...</script>` tag in `index.html` rather than the `process.env.APP_CONFIG` definition, which will now be defined as an empty array instead. This requires the app to be using the config loader from the 1.31 release of Backstage. Make sure your app is using at least that version if you are upgrading to this version of the CLI. If you have copied the implementation of the `defaultConfigLoader`, make sure to update it to the new implementation. In particular the config loader needs to be able to read configuration from `script` tags with the type `backstage.io/config`. - [`b4627f2`](https://github.com/backstage/backstage/commit/b4627f2): Fixed an issue where the `raw-loader` for loading HTML templates was not resolved from the context of the CLI package. - [`cd1ef2b`](https://github.com/backstage/backstage/commit/cd1ef2b): Updated dependency `vite` to `^5.0.0`. - [`23f1da2`](https://github.com/backstage/backstage/commit/23f1da2): Updated dependency `ts-morph` to `^24.0.0`. - [`b533056`](https://github.com/backstage/backstage/commit/b533056): Updated dependency `css-loader` to `^7.0.0`. - [`be008c3`](https://github.com/backstage/backstage/commit/be008c3): Updated dependency `@module-federation/enhanced` to `^0.7.0`. - [`6266ed3`](https://github.com/backstage/backstage/commit/6266ed3): Updated dependency `del` to `^8.0.0`. - [`4046d53`](https://github.com/backstage/backstage/commit/4046d53): Fixed an issue with the `repo lint` command where the cache key for the `--successCache` option would not properly ignore files that should be ignored according to `.eslintignore`s. - [`e19c53c`](https://github.com/backstage/backstage/commit/e19c53c): Fix for the `--link` flag for `package start` to deduplicate `react-router` and `react-router-dom`. - [`17850a5`](https://github.com/backstage/backstage/commit/17850a5): Update upgrade-helper link in `versions:bump` command to include `yarnPlugin` parameter when the yarn plugin is installed - [`09ea093`](https://github.com/backstage/backstage/commit/09ea093): Fixed an issue where `.css` style injection would fail for published packages. - [`702f41d`](https://github.com/backstage/backstage/commit/702f41d): Bumped dev dependencies `@types/node` - [`5d74716`](https://github.com/backstage/backstage/commit/5d74716): Remove unused backend-common dependency - [`b084f5a`](https://github.com/backstage/backstage/commit/b084f5a): Bump the Webpack dependency range to `^5.94.0`, as our current configuration is not compatible with some older versions. - [`e565f73`](https://github.com/backstage/backstage/commit/e565f73): Added support for `.webp` files in the frontend tooling. - [`946fa34`](https://github.com/backstage/backstage/commit/946fa34): Added a new `--link <workspace-path>` option for frontend builds that allow you to override module resolution to link in an external workspace at runtime. As part of this change the Webpack linked workspace resolution plugin for frontend builds has been removed. It was in place to support the old workspace linking where it was done by Yarn, which is no longer a working option. - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/config-loader](https://github.com/backstage/config-loader)[@&#8203;1](https://github.com/1).9.2 - [@&#8203;backstage/cli-common](https://github.com/backstage/cli-common)[@&#8203;0](https://github.com/0).1.15 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/cli-node](https://github.com/backstage/cli-node)[@&#8203;0](https://github.com/0).2.10 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/eslint-plugin](https://github.com/backstage/eslint-plugin)[@&#8203;0](https://github.com/0).1.10 - [@&#8203;backstage/integration](https://github.com/backstage/integration)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/release-manifests](https://github.com/backstage/release-manifests)[@&#8203;0](https://github.com/0).0.11 </details> <details> <summary>backstage/backstage (@&#8203;backstage/config)</summary> ### [`v1.3.0`](https://github.com/backstage/backstage/blob/HEAD/packages/config/CHANGELOG.md#130) [Compare Source](https://github.com/backstage/backstage/compare/v1.2.0...v1.3.0) ##### Minor Changes - [`d52d7f9`](https://github.com/backstage/backstage/commit/d52d7f9): Make `readDurationFromConfig` support both ISO and ms formats as well, to make it easier to enter time as an end user ##### Patch Changes - Updated dependencies - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 </details> <details> <summary>backstage/backstage (@&#8203;backstage/core-app-api)</summary> ### [`v1.15.2`](https://github.com/backstage/backstage/blob/HEAD/packages/core-app-api/CHANGELOG.md#1152) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - [`44b82da`](https://github.com/backstage/backstage/commit/44b82da): The default config loader no longer requires `process.env.APP_CONFIG` to be set, allowing config to be read from other sources instead. - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/version-bridge](https://github.com/backstage/version-bridge)[@&#8203;1](https://github.com/1).0.10 </details> <details> <summary>backstage/backstage (@&#8203;backstage/core-components)</summary> ### [`v0.16.0`](https://github.com/backstage/backstage/blob/HEAD/packages/core-components/CHANGELOG.md#0160) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...v0.16.0) ##### Minor Changes - [`dc409c5`](https://github.com/backstage/backstage/commit/dc409c5): The SupportButton component will now be hidden if no support config is specified in app-config ##### Patch Changes - [`0f18340`](https://github.com/backstage/backstage/commit/0f18340): Change core component Table tool bar search box to the a appropriate Search icon and text - [`af9097e`](https://github.com/backstage/backstage/commit/af9097e): Adds the ability to mock a media query per break point and to change the active break point during a test. Usage example: ```ts const { set } = mockBreakpoint({ initialBreakpoint: 'md', queryBreakpointMap: { '(min-width:1500px)': 'xl', '(min-width:1000px)': 'lg', '(min-width:700px)': 'md', '(min-width:400px)': 'sm', '(min-width:0px)': 'xs', }, }); // assertions for when the active break point is "md" set('lg'); // assertions for when the active break point is "lg" ``` - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/theme](https://github.com/backstage/theme)[@&#8203;0](https://github.com/0).6.1 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/version-bridge](https://github.com/backstage/version-bridge)[@&#8203;1](https://github.com/1).0.10 </details> <details> <summary>backstage/backstage (@&#8203;backstage/core-plugin-api)</summary> ### [`v1.10.1`](https://github.com/backstage/backstage/blob/HEAD/packages/core-plugin-api/CHANGELOG.md#1101) [Compare Source](https://github.com/backstage/backstage/compare/v1.10.0...v1.10.1) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/version-bridge](https://github.com/backstage/version-bridge)[@&#8203;1](https://github.com/1).0.10 </details> <details> <summary>backstage/backstage (@&#8203;backstage/dev-utils)</summary> ### [`v1.1.3`](https://github.com/backstage/backstage/blob/HEAD/packages/dev-utils/CHANGELOG.md#113) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/theme](https://github.com/backstage/theme)[@&#8203;0](https://github.com/0).6.1 - [@&#8203;backstage/plugin-catalog-react](https://github.com/backstage/plugin-catalog-react)[@&#8203;1](https://github.com/1).14.1 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/core-app-api](https://github.com/backstage/core-app-api)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/app-defaults](https://github.com/backstage/app-defaults)[@&#8203;1](https://github.com/1).5.13 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/integration-react](https://github.com/backstage/integration-react)[@&#8203;1](https://github.com/1).2.1 </details> <details> <summary>backstage/backstage (@&#8203;backstage/integration-react)</summary> ### [`v1.2.1`](https://github.com/backstage/backstage/blob/HEAD/packages/integration-react/CHANGELOG.md#121) [Compare Source](https://github.com/backstage/backstage/compare/v1.2.0...v1.2.1) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/integration](https://github.com/backstage/integration)[@&#8203;1](https://github.com/1).15.2 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-api-docs)</summary> ### [`v0.12.0`](https://github.com/backstage/backstage/blob/HEAD/plugins/api-docs/CHANGELOG.md#0120) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...v0.12.0) ##### Minor Changes - [`6836522`](https://github.com/backstage/backstage/commit/6836522): Added support for pagination in api-docs plugin - DefaultApiExplorerPage ##### Patch Changes - [`11f57de`](https://github.com/backstage/backstage/commit/11f57de): bump `@asyncapi/react-component` to latest `2.x` - [`3cd1dee`](https://github.com/backstage/backstage/commit/3cd1dee): Uses theme values to style the API definition schema so that theme overrides apply. - Updated dependencies - [@&#8203;backstage/plugin-catalog](https://github.com/backstage/plugin-catalog)[@&#8203;1](https://github.com/1).25.0 - [@&#8203;backstage/plugin-catalog-react](https://github.com/backstage/plugin-catalog-react)[@&#8203;1](https://github.com/1).14.1 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/core-compat-api](https://github.com/backstage/core-compat-api)[@&#8203;0](https://github.com/0).3.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/frontend-plugin-api](https://github.com/backstage/frontend-plugin-api)[@&#8203;0](https://github.com/0).9.1 - [@&#8203;backstage/plugin-catalog-common](https://github.com/backstage/plugin-catalog-common)[@&#8203;1](https://github.com/1).1.1 - [@&#8203;backstage/plugin-permission-react](https://github.com/backstage/plugin-permission-react)[@&#8203;0](https://github.com/0).4.28 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-auth-backend)</summary> ### [`v0.24.0`](https://github.com/backstage/backstage/blob/HEAD/plugins/auth-backend/CHANGELOG.md#0240) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...v0.24.0) ##### Minor Changes - [`75168e3`](https://github.com/backstage/backstage/commit/75168e3): **BREAKING**: The AWS ALB `fullProfile` will no longer have the its username or email converted to lowercase. This is to ensure unique handling of the users. You may need to update and configure a custom sign-in resolver or profile transform as a result. ##### Patch Changes - [`d52d7f9`](https://github.com/backstage/backstage/commit/d52d7f9): Support ISO and ms string forms of durations in config too - [`4e58bc7`](https://github.com/backstage/backstage/commit/4e58bc7): Upgrade to uuid v11 internally - Updated dependencies - [@&#8203;backstage/catalog-client](https://github.com/backstage/catalog-client)[@&#8203;1](https://github.com/1).8.0 - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - @&#8203;backstage/plugin-auth-backend-module-google-provider@0.2.2 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - @&#8203;backstage/plugin-auth-backend-module-aws-alb-provider@0.3.0 - [@&#8203;backstage/plugin-auth-node](https://github.com/backstage/plugin-auth-node)[@&#8203;0](https://github.com/0).5.4 - [@&#8203;backstage/plugin-catalog-node](https://github.com/backstage/plugin-catalog-node)[@&#8203;1](https://github.com/1).14.0 - @&#8203;backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.2 - [@&#8203;backstage/backend-plugin-api](https://github.com/backstage/backend-plugin-api)[@&#8203;1](https://github.com/1).0.2 - @&#8203;backstage/plugin-auth-backend-module-oidc-provider@0.3.2 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - @&#8203;backstage/plugin-auth-backend-module-atlassian-provider@0.3.2 - @&#8203;backstage/plugin-auth-backend-module-auth0-provider@0.1.2 - @&#8203;backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.2 - @&#8203;backstage/plugin-auth-backend-module-bitbucket-provider@0.2.2 - @&#8203;backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.2 - @&#8203;backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.2 - @&#8203;backstage/plugin-auth-backend-module-github-provider@0.2.2 - @&#8203;backstage/plugin-auth-backend-module-gitlab-provider@0.2.2 - @&#8203;backstage/plugin-auth-backend-module-microsoft-provider@0.2.2 - @&#8203;backstage/plugin-auth-backend-module-oauth2-provider@0.3.2 - [@&#8203;backstage/plugin-auth-backend-module-oauth2-proxy](https://github.com/backstage/plugin-auth-backend-module-oauth2-proxy)-provider@0.2.2 - @&#8203;backstage/plugin-auth-backend-module-okta-provider@0.1.2 - @&#8203;backstage/plugin-auth-backend-module-onelogin-provider@0.2.2 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-catalog)</summary> ### [`v1.25.0`](https://github.com/backstage/backstage/blob/HEAD/plugins/catalog/CHANGELOG.md#1250) [Compare Source](https://github.com/backstage/backstage/compare/v1.24.0...v1.25.0) ##### Minor Changes - [`50df3c8`](https://github.com/backstage/backstage/commit/50df3c8): - Updated EntityLayout component to implement breadcrumb navigation based on the entity relations. - Added parentEntityRelations prop to EntityLayoutProps to specify relation types for parent entities. - [`79e9631`](https://github.com/backstage/backstage/commit/79e9631): Allow `OffsetPaginatedCatalogTable` to configure Table options and `CursorPaginatedCatalogTable` to configure `paginationPosition`. ##### Patch Changes - [`2a67594`](https://github.com/backstage/backstage/commit/2a67594): Fixed an issue causing the `CatalogIndexPage` to not properly filter results when using offset pagination. - Updated dependencies - [@&#8203;backstage/catalog-client](https://github.com/backstage/catalog-client)[@&#8203;1](https://github.com/1).8.0 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/plugin-catalog-react](https://github.com/backstage/plugin-catalog-react)[@&#8203;1](https://github.com/1).14.1 - [@&#8203;backstage/plugin-scaffolder-common](https://github.com/backstage/plugin-scaffolder-common)[@&#8203;1](https://github.com/1).5.7 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/core-compat-api](https://github.com/backstage/core-compat-api)[@&#8203;0](https://github.com/0).3.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/frontend-plugin-api](https://github.com/backstage/frontend-plugin-api)[@&#8203;0](https://github.com/0).9.1 - [@&#8203;backstage/integration-react](https://github.com/backstage/integration-react)[@&#8203;1](https://github.com/1).2.1 - [@&#8203;backstage/plugin-catalog-common](https://github.com/backstage/plugin-catalog-common)[@&#8203;1](https://github.com/1).1.1 - [@&#8203;backstage/plugin-permission-react](https://github.com/backstage/plugin-permission-react)[@&#8203;0](https://github.com/0).4.28 - [@&#8203;backstage/plugin-search-common](https://github.com/backstage/plugin-search-common)[@&#8203;1](https://github.com/1).2.15 - [@&#8203;backstage/plugin-search-react](https://github.com/backstage/plugin-search-react)[@&#8203;1](https://github.com/1).8.2 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-catalog-backend)</summary> ### [`v1.28.0`](https://github.com/backstage/backstage/blob/HEAD/plugins/catalog-backend/CHANGELOG.md#1280) [Compare Source](https://github.com/backstage/backstage/compare/v1.27.1...v1.28.0) ##### Minor Changes - [`39fd704`](https://github.com/backstage/backstage/commit/39fd704): Internal update to use the new generated server types from `backstage-cli package schema openapi generate --server`. - [`76857da`](https://github.com/backstage/backstage/commit/76857da): Added `entity_ref` column to `final_entities` in order to move `refresh_state` away from the read path - [`34d4360`](https://github.com/backstage/backstage/commit/34d4360): Drop redundant indices from the database. The following redundant indices are removed in this version: - `final_entities_entity_id_idx` - overlaps with `final_entities_pkey` - `refresh_state_entity_id_idx` - overlaps with `refresh_state_pkey` - `refresh_state_entity_ref_idx` - overlaps with `refresh_state_entity_ref_uniq` - `search_key_idx` and `search_value_idx` - these were replaced by the composite index `search_key_value_idx` in [#&#8203;22594](https://github.com/backstage/backstage/issues/22594) No negative end user impact is expected, but rather that performance should increase due to less index churn. ##### Patch Changes - [`d52d7f9`](https://github.com/backstage/backstage/commit/d52d7f9): Support ISO and ms string forms of durations in config too - [`b89834b`](https://github.com/backstage/backstage/commit/b89834b): Fixed an issue where entities would not be marked for restitching if only the target of a relationship changed. - [`1bf02cc`](https://github.com/backstage/backstage/commit/1bf02cc): Fixed bug when searching an entity by `spec.profile.displayName` in the catalog on the frontend. Text filter fields were not applied correctly to the database query resulting in empty results. - [`4e58bc7`](https://github.com/backstage/backstage/commit/4e58bc7): Upgrade to uuid v11 internally - [`5efde17`](https://github.com/backstage/backstage/commit/5efde17): Internal refactor to slightly speed up the processing loop - Updated dependencies - [@&#8203;backstage/catalog-client](https://github.com/backstage/catalog-client)[@&#8203;1](https://github.com/1).8.0 - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/plugin-events-node](https://github.com/backstage/plugin-events-node)[@&#8203;0](https://github.com/0).4.5 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/plugin-search-backend-module-catalog](https://github.com/backstage/plugin-search-backend-module-catalog)[@&#8203;0](https://github.com/0).2.5 - [@&#8203;backstage/plugin-catalog-node](https://github.com/backstage/plugin-catalog-node)[@&#8203;1](https://github.com/1).14.0 - [@&#8203;backstage/backend-plugin-api](https://github.com/backstage/backend-plugin-api)[@&#8203;1](https://github.com/1).0.2 - [@&#8203;backstage/backend-openapi-utils](https://github.com/backstage/backend-openapi-utils)[@&#8203;0](https://github.com/0).3.0 - [@&#8203;backstage/plugin-permission-common](https://github.com/backstage/plugin-permission-common)[@&#8203;0](https://github.com/0).8.2 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/integration](https://github.com/backstage/integration)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/plugin-catalog-common](https://github.com/backstage/plugin-catalog-common)[@&#8203;1](https://github.com/1).1.1 - [@&#8203;backstage/plugin-permission-node](https://github.com/backstage/plugin-permission-node)[@&#8203;0](https://github.com/0).8.5 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-catalog-backend-module-github)</summary> ### [`v0.7.7`](https://github.com/backstage/backstage/blob/HEAD/plugins/catalog-backend-module-github/CHANGELOG.md#077) [Compare Source](https://github.com/backstage/backstage/compare/a62c0b9d2d091d465095607c4039bb17bdc96bbf...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - [`9790c02`](https://github.com/backstage/backstage/commit/9790c02): Fixed an issue in `GithubOrgEntityProvider` that caused an error when processing teams without a parent. - [`4e58bc7`](https://github.com/backstage/backstage/commit/4e58bc7): Upgrade to uuid v11 internally - Updated dependencies - [@&#8203;backstage/catalog-client](https://github.com/backstage/catalog-client)[@&#8203;1](https://github.com/1).8.0 - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/plugin-events-node](https://github.com/backstage/plugin-events-node)[@&#8203;0](https://github.com/0).4.5 - [@&#8203;backstage/plugin-catalog-backend](https://github.com/backstage/plugin-catalog-backend)[@&#8203;1](https://github.com/1).28.0 - [@&#8203;backstage/plugin-catalog-node](https://github.com/backstage/plugin-catalog-node)[@&#8203;1](https://github.com/1).14.0 - [@&#8203;backstage/backend-plugin-api](https://github.com/backstage/backend-plugin-api)[@&#8203;1](https://github.com/1).0.2 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/integration](https://github.com/backstage/integration)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/plugin-catalog-common](https://github.com/backstage/plugin-catalog-common)[@&#8203;1](https://github.com/1).1.1 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-catalog-common)</summary> ### [`v1.1.1`](https://github.com/backstage/backstage/blob/HEAD/plugins/catalog-common/CHANGELOG.md#111) [Compare Source](https://github.com/backstage/backstage/compare/v1.1.0...v1.1.1) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/plugin-permission-common](https://github.com/backstage/plugin-permission-common)[@&#8203;0](https://github.com/0).8.2 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/plugin-search-common](https://github.com/backstage/plugin-search-common)[@&#8203;1](https://github.com/1).2.15 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-catalog-graph)</summary> ### [`v0.4.12`](https://github.com/backstage/backstage/blob/HEAD/plugins/catalog-graph/CHANGELOG.md#0412) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/catalog-client](https://github.com/backstage/catalog-client)[@&#8203;1](https://github.com/1).8.0 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/plugin-catalog-react](https://github.com/backstage/plugin-catalog-react)[@&#8203;1](https://github.com/1).14.1 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/core-compat-api](https://github.com/backstage/core-compat-api)[@&#8203;0](https://github.com/0).3.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/frontend-plugin-api](https://github.com/backstage/frontend-plugin-api)[@&#8203;0](https://github.com/0).9.1 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-catalog-import)</summary> ### [`v0.12.6`](https://github.com/backstage/backstage/blob/HEAD/plugins/catalog-import/CHANGELOG.md#0126) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - [`ea5b7f3`](https://github.com/backstage/backstage/commit/ea5b7f3): Fixed parsing of catalog-info.yaml when creating a PR to register a repository if the file contains more than one document - Updated dependencies - [@&#8203;backstage/catalog-client](https://github.com/backstage/catalog-client)[@&#8203;1](https://github.com/1).8.0 - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/plugin-catalog-react](https://github.com/backstage/plugin-catalog-react)[@&#8203;1](https://github.com/1).14.1 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/core-compat-api](https://github.com/backstage/core-compat-api)[@&#8203;0](https://github.com/0).3.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/frontend-plugin-api](https://github.com/backstage/frontend-plugin-api)[@&#8203;0](https://github.com/0).9.1 - [@&#8203;backstage/integration](https://github.com/backstage/integration)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/integration-react](https://github.com/backstage/integration-react)[@&#8203;1](https://github.com/1).2.1 - [@&#8203;backstage/plugin-catalog-common](https://github.com/backstage/plugin-catalog-common)[@&#8203;1](https://github.com/1).1.1 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-catalog-react)</summary> ### [`v1.14.1`](https://github.com/backstage/backstage/blob/HEAD/plugins/catalog-react/CHANGELOG.md#1141) [Compare Source](https://github.com/backstage/backstage/compare/v1.14.0...v1.14.1) ##### Patch Changes - [`9cc82c0`](https://github.com/backstage/backstage/commit/9cc82c0): Fixed bug in `EntityDisplayName` where text was overflowing. - [`6fcbb3b`](https://github.com/backstage/backstage/commit/6fcbb3b): Ensure EntityDisplayName component link receives underline on hover. - [`9670906`](https://github.com/backstage/backstage/commit/9670906): Improve UI consistency of default catalog filters - Updated dependencies - [@&#8203;backstage/catalog-client](https://github.com/backstage/catalog-client)[@&#8203;1](https://github.com/1).8.0 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/plugin-permission-common](https://github.com/backstage/plugin-permission-common)[@&#8203;0](https://github.com/0).8.2 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/core-compat-api](https://github.com/backstage/core-compat-api)[@&#8203;0](https://github.com/0).3.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/frontend-plugin-api](https://github.com/backstage/frontend-plugin-api)[@&#8203;0](https://github.com/0).9.1 - [@&#8203;backstage/frontend-test-utils](https://github.com/backstage/frontend-test-utils)[@&#8203;0](https://github.com/0).2.2 - [@&#8203;backstage/integration-react](https://github.com/backstage/integration-react)[@&#8203;1](https://github.com/1).2.1 - [@&#8203;backstage/version-bridge](https://github.com/backstage/version-bridge)[@&#8203;1](https://github.com/1).0.10 - [@&#8203;backstage/plugin-catalog-common](https://github.com/backstage/plugin-catalog-common)[@&#8203;1](https://github.com/1).1.1 - [@&#8203;backstage/plugin-permission-react](https://github.com/backstage/plugin-permission-react)[@&#8203;0](https://github.com/0).4.28 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-org)</summary> ### [`v0.6.32`](https://github.com/backstage/backstage/blob/HEAD/plugins/org/CHANGELOG.md#0632) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - [`a278fdd`](https://github.com/backstage/backstage/commit/a278fdd): Fix rendering of description in MembersListCard. Add guardrails for potential long texts to prevent it from breaking the UI. - Updated dependencies - [@&#8203;backstage/plugin-catalog-react](https://github.com/backstage/plugin-catalog-react)[@&#8203;1](https://github.com/1).14.1 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/core-compat-api](https://github.com/backstage/core-compat-api)[@&#8203;0](https://github.com/0).3.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/frontend-plugin-api](https://github.com/backstage/frontend-plugin-api)[@&#8203;0](https://github.com/0).9.1 - [@&#8203;backstage/plugin-catalog-common](https://github.com/backstage/plugin-catalog-common)[@&#8203;1](https://github.com/1).1.1 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-permission-common)</summary> ### [`v0.8.2`](https://github.com/backstage/backstage/blob/HEAD/plugins/permission-common/CHANGELOG.md#082) [Compare Source](https://github.com/backstage/backstage/compare/v0.8.1...v0.8.2) ##### Patch Changes - [`4e58bc7`](https://github.com/backstage/backstage/commit/4e58bc7): Upgrade to uuid v11 internally - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-permission-node)</summary> ### [`v0.8.5`](https://github.com/backstage/backstage/blob/HEAD/plugins/permission-node/CHANGELOG.md#085) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/plugin-auth-node](https://github.com/backstage/plugin-auth-node)[@&#8203;0](https://github.com/0).5.4 - [@&#8203;backstage/backend-plugin-api](https://github.com/backstage/backend-plugin-api)[@&#8203;1](https://github.com/1).0.2 - [@&#8203;backstage/plugin-permission-common](https://github.com/backstage/plugin-permission-common)[@&#8203;0](https://github.com/0).8.2 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-permission-react)</summary> ### [`v0.4.28`](https://github.com/backstage/backstage/blob/HEAD/plugins/permission-react/CHANGELOG.md#0428) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/plugin-permission-common](https://github.com/backstage/plugin-permission-common)[@&#8203;0](https://github.com/0).8.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-proxy-backend)</summary> ### [`v0.5.8`](https://github.com/backstage/backstage/blob/HEAD/plugins/proxy-backend/CHANGELOG.md#058) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - [`4e58bc7`](https://github.com/backstage/backstage/commit/4e58bc7): Upgrade to uuid v11 internally - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/backend-plugin-api](https://github.com/backstage/backend-plugin-api)[@&#8203;1](https://github.com/1).0.2 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-scaffolder)</summary> ### [`v1.27.0`](https://github.com/backstage/backstage/blob/HEAD/plugins/scaffolder/CHANGELOG.md#1270) [Compare Source](https://github.com/backstage/backstage/compare/v1.26.2...v1.27.0) ##### Minor Changes - [`f61d4cc`](https://github.com/backstage/backstage/commit/f61d4cc): Add scaffolder permission `scaffolder.template.management` for accessing the template management features - [`69fb6e7`](https://github.com/backstage/backstage/commit/69fb6e7): Fix `contextMenu` not being disabled bug in new scaffolder pages ##### Patch Changes - [`99471cd`](https://github.com/backstage/backstage/commit/99471cd): fix(scaffolder): use `onInputChange` in `RepoUrlPicker` to fix issue with the value not updating properly - [`8e4bed4`](https://github.com/backstage/backstage/commit/8e4bed4): Updated dependency `idb-keyval` to `5.1.5`. - [`7669af3`](https://github.com/backstage/backstage/commit/7669af3): Revert the change of the option label for `EntityPicker` - Updated dependencies - [@&#8203;backstage/catalog-client](https://github.com/backstage/catalog-client)[@&#8203;1](https://github.com/1).8.0 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/plugin-scaffolder-react](https://github.com/backstage/plugin-scaffolder-react)[@&#8203;1](https://github.com/1).14.0 - [@&#8203;backstage/plugin-catalog-react](https://github.com/backstage/plugin-catalog-react)[@&#8203;1](https://github.com/1).14.1 - [@&#8203;backstage/plugin-scaffolder-common](https://github.com/backstage/plugin-scaffolder-common)[@&#8203;1](https://github.com/1).5.7 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/core-compat-api](https://github.com/backstage/core-compat-api)[@&#8203;0](https://github.com/0).3.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/frontend-plugin-api](https://github.com/backstage/frontend-plugin-api)[@&#8203;0](https://github.com/0).9.1 - [@&#8203;backstage/integration](https://github.com/backstage/integration)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/integration-react](https://github.com/backstage/integration-react)[@&#8203;1](https://github.com/1).2.1 - [@&#8203;backstage/plugin-catalog-common](https://github.com/backstage/plugin-catalog-common)[@&#8203;1](https://github.com/1).1.1 - [@&#8203;backstage/plugin-permission-react](https://github.com/backstage/plugin-permission-react)[@&#8203;0](https://github.com/0).4.28 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-scaffolder-backend)</summary> ### [`v1.27.0`](https://github.com/backstage/backstage/blob/HEAD/plugins/scaffolder-backend/CHANGELOG.md#1270) [Compare Source](https://github.com/backstage/backstage/compare/v1.26.2...v1.27.0) ##### Minor Changes - [`0587633`](https://github.com/backstage/backstage/commit/0587633): Bumped the `isolated-vm` dependency from v4 to v5, which drops support for Node.js v16. - [`e61d5ef`](https://github.com/backstage/backstage/commit/e61d5ef): BREAKING EXPERIMENTAL: The `checkpoint` method now takes an object instead of previous arguments. ```ts await ctx.checkpoint({ key: 'repo.create', fn: () => ockokit.repo.create({...})}) ``` You can also now return `void` from the checkpoint if the method returns `void` inside the `checkpoint` handler. ##### Patch Changes - [`6aa5b98`](https://github.com/backstage/backstage/commit/6aa5b98): Fix tasks listing with postgres - [`59137ff`](https://github.com/backstage/backstage/commit/59137ff): Fix issue with token not being available because it's now non-enumerable - [`c5e39e7`](https://github.com/backstage/backstage/commit/c5e39e7): Internal refactor to use the deferred from the types package - [`e4f5d95`](https://github.com/backstage/backstage/commit/e4f5d95): Align with type declaration of template filter/global function by supporting undefined as return value. - [`d52d7f9`](https://github.com/backstage/backstage/commit/d52d7f9): Support ISO and ms string forms of durations in config too - [`7ab3371`](https://github.com/backstage/backstage/commit/7ab3371): Modified `createDryRunner` and corresponding route to include `templateMetaData` inside the `templateInfo`. This allows custom action writers to access things like `templateInfo.entity.metadata.name` via the action context while executing templates using the dry run framework. - [`4e58bc7`](https://github.com/backstage/backstage/commit/4e58bc7): Upgrade to uuid v11 internally - [`2dae341`](https://github.com/backstage/backstage/commit/2dae341): Add new `fs:readdir` action to list current content of the workspace - [`97ba58f`](https://github.com/backstage/backstage/commit/97ba58f): Add example template for notification sending - Updated dependencies - [@&#8203;backstage/catalog-client](https://github.com/backstage/catalog-client)[@&#8203;1](https://github.com/1).8.0 - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/backend-defaults](https://github.com/backstage/backend-defaults)[@&#8203;0](https://github.com/0).5.3 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/plugin-scaffolder-backend-module-gitlab](https://github.com/backstage/plugin-scaffolder-backend-module-gitlab)[@&#8203;0](https://github.com/0).6.1 - [@&#8203;backstage/plugin-scaffolder-common](https://github.com/backstage/plugin-scaffolder-common)[@&#8203;1](https://github.com/1).5.7 - [@&#8203;backstage/plugin-auth-node](https://github.com/backstage/plugin-auth-node)[@&#8203;0](https://github.com/0).5.4 - [@&#8203;backstage/plugin-bitbucket-cloud-common](https://github.com/backstage/plugin-bitbucket-cloud-common)[@&#8203;0](https://github.com/0).2.25 - [@&#8203;backstage/plugin-catalog-node](https://github.com/backstage/plugin-catalog-node)[@&#8203;1](https://github.com/1).14.0 - [@&#8203;backstage/backend-plugin-api](https://github.com/backstage/backend-plugin-api)[@&#8203;1](https://github.com/1).0.2 - [@&#8203;backstage/plugin-permission-common](https://github.com/backstage/plugin-permission-common)[@&#8203;0](https://github.com/0).8.2 - @&#8203;backstage/plugin-scaffolder-backend-module-bitbucket-server@0.2.2 - @&#8203;backstage/plugin-scaffolder-backend-module-bitbucket-cloud@0.2.2 - [@&#8203;backstage/plugin-scaffolder-node](https://github.com/backstage/plugin-scaffolder-node)[@&#8203;0](https://github.com/0).6.0 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/integration](https://github.com/backstage/integration)[@&#8203;1](https://github.com/1).15.2 - @&#8203;backstage/plugin-catalog-backend-module-scaffolder-entity-model@0.2.2 - [@&#8203;backstage/plugin-permission-node](https://github.com/backstage/plugin-permission-node)[@&#8203;0](https://github.com/0).8.5 - [@&#8203;backstage/plugin-scaffolder-backend-module-azure](https://github.com/backstage/plugin-scaffolder-backend-module-azure)[@&#8203;0](https://github.com/0).2.2 - @&#8203;backstage/plugin-scaffolder-backend-module-bitbucket@0.3.2 - [@&#8203;backstage/plugin-scaffolder-backend-module-gerrit](https://github.com/backstage/plugin-scaffolder-backend-module-gerrit)[@&#8203;0](https://github.com/0).2.2 - [@&#8203;backstage/plugin-scaffolder-backend-module-gitea](https://github.com/backstage/plugin-scaffolder-backend-module-gitea)[@&#8203;0](https://github.com/0).2.2 - [@&#8203;backstage/plugin-scaffolder-backend-module-github](https://github.com/backstage/plugin-scaffolder-backend-module-github)[@&#8203;0](https://github.com/0).5.2 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-search)</summary> ### [`v1.4.19`](https://github.com/backstage/backstage/blob/HEAD/plugins/search/CHANGELOG.md#1419) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - [`a4ccc82`](https://github.com/backstage/backstage/commit/a4ccc82): Removes the card UI from the search results type filter for a cleaner UI consistent with other filters - Updated dependencies - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/plugin-catalog-react](https://github.com/backstage/plugin-catalog-react)[@&#8203;1](https://github.com/1).14.1 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/core-compat-api](https://github.com/backstage/core-compat-api)[@&#8203;0](https://github.com/0).3.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/frontend-plugin-api](https://github.com/backstage/frontend-plugin-api)[@&#8203;0](https://github.com/0).9.1 - [@&#8203;backstage/version-bridge](https://github.com/backstage/version-bridge)[@&#8203;1](https://github.com/1).0.10 - [@&#8203;backstage/plugin-search-common](https://github.com/backstage/plugin-search-common)[@&#8203;1](https://github.com/1).2.15 - [@&#8203;backstage/plugin-search-react](https://github.com/backstage/plugin-search-react)[@&#8203;1](https://github.com/1).8.2 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-search-backend)</summary> ### [`v1.7.0`](https://github.com/backstage/backstage/blob/HEAD/plugins/search-backend/CHANGELOG.md#170) [Compare Source](https://github.com/backstage/backstage/compare/a62c0b9d2d091d465095607c4039bb17bdc96bbf...v1.7.0) ##### Minor Changes - [`39fd704`](https://github.com/backstage/backstage/commit/39fd704): Internal update to use the new generated server types from `backstage-cli package schema openapi generate --server`. ##### Patch Changes - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/backend-defaults](https://github.com/backstage/backend-defaults)[@&#8203;0](https://github.com/0).5.3 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/backend-plugin-api](https://github.com/backstage/backend-plugin-api)[@&#8203;1](https://github.com/1).0.2 - [@&#8203;backstage/backend-openapi-utils](https://github.com/backstage/backend-openapi-utils)[@&#8203;0](https://github.com/0).3.0 - [@&#8203;backstage/plugin-search-backend-node](https://github.com/backstage/plugin-search-backend-node)[@&#8203;1](https://github.com/1).3.5 - [@&#8203;backstage/plugin-permission-common](https://github.com/backstage/plugin-permission-common)[@&#8203;0](https://github.com/0).8.2 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/plugin-permission-node](https://github.com/backstage/plugin-permission-node)[@&#8203;0](https://github.com/0).8.5 - [@&#8203;backstage/plugin-search-common](https://github.com/backstage/plugin-search-common)[@&#8203;1](https://github.com/1).2.15 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-search-backend-module-pg)</summary> ### [`v0.5.38`](https://github.com/backstage/backstage/blob/HEAD/plugins/search-backend-module-pg/CHANGELOG.md#0538) [Compare Source](https://github.com/backstage/backstage/compare/a62c0b9d2d091d465095607c4039bb17bdc96bbf...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - [`4e58bc7`](https://github.com/backstage/backstage/commit/4e58bc7): Upgrade to uuid v11 internally - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/backend-plugin-api](https://github.com/backstage/backend-plugin-api)[@&#8203;1](https://github.com/1).0.2 - [@&#8203;backstage/plugin-search-backend-node](https://github.com/backstage/plugin-search-backend-node)[@&#8203;1](https://github.com/1).3.5 - [@&#8203;backstage/plugin-search-common](https://github.com/backstage/plugin-search-common)[@&#8203;1](https://github.com/1).2.15 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-search-backend-node)</summary> ### [`v1.3.5`](https://github.com/backstage/backstage/blob/HEAD/plugins/search-backend-node/CHANGELOG.md#135) [Compare Source](https://github.com/backstage/backstage/compare/a62c0b9d2d091d465095607c4039bb17bdc96bbf...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - [`4e58bc7`](https://github.com/backstage/backstage/commit/4e58bc7): Upgrade to uuid v11 internally - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/backend-defaults](https://github.com/backstage/backend-defaults)[@&#8203;0](https://github.com/0).5.3 - [@&#8203;backstage/backend-plugin-api](https://github.com/backstage/backend-plugin-api)[@&#8203;1](https://github.com/1).0.2 - [@&#8203;backstage/plugin-permission-common](https://github.com/backstage/plugin-permission-common)[@&#8203;0](https://github.com/0).8.2 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/plugin-search-common](https://github.com/backstage/plugin-search-common)[@&#8203;1](https://github.com/1).2.15 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-search-react)</summary> ### [`v1.8.2`](https://github.com/backstage/backstage/blob/HEAD/plugins/search-react/CHANGELOG.md#182) [Compare Source](https://github.com/backstage/backstage/compare/v1.8.1...v1.8.2) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/theme](https://github.com/backstage/theme)[@&#8203;0](https://github.com/0).6.1 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/frontend-plugin-api](https://github.com/backstage/frontend-plugin-api)[@&#8203;0](https://github.com/0).9.1 - [@&#8203;backstage/version-bridge](https://github.com/backstage/version-bridge)[@&#8203;1](https://github.com/1).0.10 - [@&#8203;backstage/plugin-search-common](https://github.com/backstage/plugin-search-common)[@&#8203;1](https://github.com/1).2.15 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-techdocs)</summary> ### [`v1.11.1`](https://github.com/backstage/backstage/blob/HEAD/plugins/techdocs/CHANGELOG.md#1111) [Compare Source](https://github.com/backstage/backstage/compare/v1.11.0...v1.11.1) ##### Patch Changes - [`37a7810`](https://github.com/backstage/backstage/commit/37a7810): Fixed an issue where `<TechDocsReaderPageContent />` would re-render infinitely under certain conditions. - [`e937ae7`](https://github.com/backstage/backstage/commit/e937ae7): Fix an issue with index page of documentation site being re-rendered. - [`90246a9`](https://github.com/backstage/backstage/commit/90246a9): Fix techdocs config schema for custom elements sanitizer - [`605bdc0`](https://github.com/backstage/backstage/commit/605bdc0): Avoid page re-rendering when clicking on anchor links in the same documentation page. - [`4f0cb89`](https://github.com/backstage/backstage/commit/4f0cb89): Added DomPurify sanitizer configuration for custom elements implementing RFC https://github.com/backstage/backstage/issues/26988. See https://backstage.io/docs/features/techdocs/how-to-guides#how-to-enable-custom-elements-in-techdocs for how to enable it in the configuration. - [`f246178`](https://github.com/backstage/backstage/commit/f246178): Removed `canvas` dev dependency. - [`4a2f73a`](https://github.com/backstage/backstage/commit/4a2f73a): Fix an issue that caused the current documentation page to be re-rendered when navigating to another one. - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/theme](https://github.com/backstage/theme)[@&#8203;0](https://github.com/0).6.1 - [@&#8203;backstage/plugin-catalog-react](https://github.com/backstage/plugin-catalog-react)[@&#8203;1](https://github.com/1).14.1 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/plugin-techdocs-react](https://github.com/backstage/plugin-techdocs-react)[@&#8203;1](https://github.com/1).2.10 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/core-compat-api](https://github.com/backstage/core-compat-api)[@&#8203;0](https://github.com/0).3.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/frontend-plugin-api](https://github.com/backstage/frontend-plugin-api)[@&#8203;0](https://github.com/0).9.1 - [@&#8203;backstage/integration](https://github.com/backstage/integration)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/integration-react](https://github.com/backstage/integration-react)[@&#8203;1](https://github.com/1).2.1 - [@&#8203;backstage/plugin-auth-react](https://github.com/backstage/plugin-auth-react)[@&#8203;0](https://github.com/0).1.8 - [@&#8203;backstage/plugin-search-common](https://github.com/backstage/plugin-search-common)[@&#8203;1](https://github.com/1).2.15 - [@&#8203;backstage/plugin-search-react](https://github.com/backstage/plugin-search-react)[@&#8203;1](https://github.com/1).8.2 - [@&#8203;backstage/plugin-techdocs-common](https://github.com/backstage/plugin-techdocs-common)[@&#8203;0](https://github.com/0).1.0 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-techdocs-backend)</summary> ### [`v1.11.2`](https://github.com/backstage/backstage/blob/HEAD/plugins/techdocs-backend/CHANGELOG.md#1112) [Compare Source](https://github.com/backstage/backstage/compare/v1.11.1...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/catalog-client](https://github.com/backstage/catalog-client)[@&#8203;1](https://github.com/1).8.0 - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/plugin-catalog-node](https://github.com/backstage/plugin-catalog-node)[@&#8203;1](https://github.com/1).14.0 - [@&#8203;backstage/backend-plugin-api](https://github.com/backstage/backend-plugin-api)[@&#8203;1](https://github.com/1).0.2 - [@&#8203;backstage/plugin-permission-common](https://github.com/backstage/plugin-permission-common)[@&#8203;0](https://github.com/0).8.2 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/integration](https://github.com/backstage/integration)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/plugin-catalog-common](https://github.com/backstage/plugin-catalog-common)[@&#8203;1](https://github.com/1).1.1 - [@&#8203;backstage/plugin-search-backend-module-techdocs](https://github.com/backstage/plugin-search-backend-module-techdocs)[@&#8203;0](https://github.com/0).3.2 - [@&#8203;backstage/plugin-techdocs-common](https://github.com/backstage/plugin-techdocs-common)[@&#8203;0](https://github.com/0).1.0 - [@&#8203;backstage/plugin-techdocs-node](https://github.com/backstage/plugin-techdocs-node)[@&#8203;1](https://github.com/1).12.13 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-techdocs-module-addons-contrib)</summary> ### [`v1.1.17`](https://github.com/backstage/backstage/blob/HEAD/plugins/techdocs-module-addons-contrib/CHANGELOG.md#1117) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/plugin-techdocs-react](https://github.com/backstage/plugin-techdocs-react)[@&#8203;1](https://github.com/1).2.10 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/integration](https://github.com/backstage/integration)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/integration-react](https://github.com/backstage/integration-react)[@&#8203;1](https://github.com/1).2.1 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-techdocs-react)</summary> ### [`v1.2.10`](https://github.com/backstage/backstage/blob/HEAD/plugins/techdocs-react/CHANGELOG.md#1210) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - [`4a2f73a`](https://github.com/backstage/backstage/commit/4a2f73a): Fix an issue that caused the current documentation page to be re-rendered when navigating to another one. - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/version-bridge](https://github.com/backstage/version-bridge)[@&#8203;1](https://github.com/1).0.10 </details> <details> <summary>backstage/backstage (@&#8203;backstage/plugin-user-settings)</summary> ### [`v0.8.15`](https://github.com/backstage/backstage/blob/HEAD/plugins/user-settings/CHANGELOG.md#0815) [Compare Source](https://github.com/backstage/backstage/compare/3ae2f1e3bd2f09888f21927e66b13111620da4e4...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/theme](https://github.com/backstage/theme)[@&#8203;0](https://github.com/0).6.1 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/plugin-catalog-react](https://github.com/backstage/plugin-catalog-react)[@&#8203;1](https://github.com/1).14.1 - [@&#8203;backstage/core-components](https://github.com/backstage/core-components)[@&#8203;0](https://github.com/0).16.0 - [@&#8203;backstage/core-app-api](https://github.com/backstage/core-app-api)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/catalog-model](https://github.com/backstage/catalog-model)[@&#8203;1](https://github.com/1).7.1 - [@&#8203;backstage/core-compat-api](https://github.com/backstage/core-compat-api)[@&#8203;0](https://github.com/0).3.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/errors](https://github.com/backstage/errors)[@&#8203;1](https://github.com/1).2.5 - [@&#8203;backstage/frontend-plugin-api](https://github.com/backstage/frontend-plugin-api)[@&#8203;0](https://github.com/0).9.1 - [@&#8203;backstage/plugin-signals-react](https://github.com/backstage/plugin-signals-react)[@&#8203;0](https://github.com/0).0.7 - [@&#8203;backstage/plugin-user-settings-common](https://github.com/backstage/plugin-user-settings-common)[@&#8203;0](https://github.com/0).0.1 </details> <details> <summary>backstage/backstage (@&#8203;backstage/test-utils)</summary> ### [`v1.7.1`](https://github.com/backstage/backstage/blob/HEAD/packages/test-utils/CHANGELOG.md#171) [Compare Source](https://github.com/backstage/backstage/compare/v1.7.0...v1.7.1) ##### Patch Changes - Updated dependencies - [@&#8203;backstage/config](https://github.com/backstage/config)[@&#8203;1](https://github.com/1).3.0 - [@&#8203;backstage/theme](https://github.com/backstage/theme)[@&#8203;0](https://github.com/0).6.1 - [@&#8203;backstage/types](https://github.com/backstage/types)[@&#8203;1](https://github.com/1).2.0 - [@&#8203;backstage/core-app-api](https://github.com/backstage/core-app-api)[@&#8203;1](https://github.com/1).15.2 - [@&#8203;backstage/plugin-permission-common](https://github.com/backstage/plugin-permission-common)[@&#8203;0](https://github.com/0).8.2 - [@&#8203;backstage/core-plugin-api](https://github.com/backstage/core-plugin-api)[@&#8203;1](https://github.com/1).10.1 - [@&#8203;backstage/plugin-permission-react](https://github.com/backstage/plugin-permission-react)[@&#8203;0](https://github.com/0).4.28 </details> <details> <summary>backstage/backstage (@&#8203;backstage/theme)</summary> ### [`v0.6.1`](https://github.com/backstage/backstage/blob/HEAD/packages/theme/CHANGELOG.md#061) [Compare Source](https://github.com/backstage/backstage/compare/v0.6.0...d589a90b10f3c15b36005147debcc6925da3ee11) ##### Patch Changes - [`ea75c37`](https://github.com/backstage/backstage/commit/ea75c37): Internal refactor to avoid top-level imports from MUI. </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM3LjQyNC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2024-11-20 02:02:43 +01:00
fix(deps): update backstage monorepo
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
f7f1f32cb0
kjuulh scheduled this pull request to auto merge when all checks succeed 2024-11-20 02:02:44 +01:00
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build encountered an error
This pull request can be merged automatically.
You are not authorized to merge this pull request.

Checkout

From your project repository, check out a new branch and test the changes.
git fetch -u origin renovate/backstage-monorepo:renovate/backstage-monorepo
git checkout renovate/backstage-monorepo
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/backstage#56
No description provided.