Skip to content

Latest commit

 

History

History
2123 lines (1624 loc) · 68 KB

v1.33.0-next.0-changelog.md

File metadata and controls

2123 lines (1624 loc) · 68 KB

Release v1.33.0-next.0

Upgrade Helper: https://backstage.github.io/upgrade-helper/?to=1.33.0-next.0

@backstage/catalog-client@1.8.0-next.0

Minor Changes

  • 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: Fix for certain filter fields in the catalogApiMock being case sensitive.
  • Updated dependencies
    • @backstage/catalog-model@1.7.0
    • @backstage/errors@1.2.4

@backstage/cli@0.29.0-next.0

Minor Changes

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

Patch Changes

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

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

  • 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.

  • 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.

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

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

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

  • 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/catalog-model@1.7.0
    • @backstage/cli-common@0.1.14
    • @backstage/cli-node@0.2.9
    • @backstage/config@1.2.0
    • @backstage/config-loader@1.9.1
    • @backstage/errors@1.2.4
    • @backstage/eslint-plugin@0.1.10
    • @backstage/integration@1.15.1
    • @backstage/release-manifests@0.0.11
    • @backstage/types@1.1.1

@backstage/core-components@0.16.0-next.0

Minor Changes

  • dc409c5: The SupportButton component will now be hidden if no support config is specified in app-config

Patch Changes

  • af9097e: Adds the ability to mock a media query per break point and to change the active break point during a test. Usage example:

    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

    • @backstage/config@1.2.0
    • @backstage/core-plugin-api@1.10.0
    • @backstage/errors@1.2.4
    • @backstage/theme@0.6.0
    • @backstage/version-bridge@1.0.10

@backstage/repo-tools@0.11.0-next.0

Minor Changes

  • 47fdbb4: Adds a --watch mode to the schema openapi generate command for a better local schema writing experience.

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/cli-common@0.1.14
    • @backstage/cli-node@0.2.9
    • @backstage/config-loader@1.9.1
    • @backstage/errors@1.2.4

@backstage/plugin-auth-backend@0.24.0-next.0

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

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.0-next.0
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/catalog-client@1.8.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.2-next.0

@backstage/plugin-auth-backend-module-aws-alb-provider@0.3.0-next.0

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

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.24.0-next.0
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/errors@1.2.4

@backstage/plugin-catalog-node@1.14.0-next.0

Minor Changes

  • bc13b42: The catalogServiceRef now has its own accompanying CatalogService interface that requires Backstage credentials objects to be passed. This new version of the catalogServiceRef has been promoted and is now available via the main @backstage/plugin-catalog-node entry point.

    The old catalogServiceRef with the old CatalogApi type is still available from the /alpha entry point.

Patch Changes

  • Updated dependencies
    • @backstage/catalog-client@1.8.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-catalog-common@1.1.0
    • @backstage/plugin-permission-common@0.8.1
    • @backstage/plugin-permission-node@0.8.5-next.0

@backstage/app-defaults@1.5.13-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.16.0-next.0
    • @backstage/core-app-api@1.15.1
    • @backstage/core-plugin-api@1.10.0
    • @backstage/theme@0.6.0
    • @backstage/plugin-permission-react@0.4.27

@backstage/backend-app-api@1.0.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0
    • @backstage/config-loader@1.9.1
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-permission-node@0.8.5-next.0

@backstage/backend-defaults@0.5.3-next.0

Patch Changes

  • f6eaec2: Link to proper package in rootLoggerServiceFactory doc string.
  • Updated dependencies
    • @backstage/plugin-events-node@0.4.3-next.0
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-app-api@1.0.2-next.0
    • @backstage/backend-dev-utils@0.1.5
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/cli-common@0.1.14
    • @backstage/cli-node@0.2.9
    • @backstage/config@1.2.0
    • @backstage/config-loader@1.9.1
    • @backstage/errors@1.2.4
    • @backstage/integration@1.15.1
    • @backstage/integration-aws-node@0.1.12
    • @backstage/types@1.1.1
    • @backstage/plugin-permission-node@0.8.5-next.0

@backstage/backend-dynamic-feature-service@0.4.4-next.0

Patch Changes

  • 8593dfa: Improve the way alpha packages are supported when loading dynamic backend plugins. The ScannedPluginPackage descriptor of dynamic backend plugins loaded from their alpha package.json now contain both the main package manifest and the alpha manifest. Previously it used to contain only the content of the alpha package.json, which is nearly empty. This will make it easier to use or display metadata of loaded dynamic backend plugins, which is contained in the main manifest.
  • Updated dependencies
    • @backstage/plugin-events-node@0.4.3-next.0
    • @backstage/plugin-events-backend@0.3.15-next.0
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-defaults@0.5.3-next.0
    • @backstage/backend-app-api@1.0.2-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/cli-common@0.1.14
    • @backstage/cli-node@0.2.9
    • @backstage/config@1.2.0
    • @backstage/config-loader@1.9.1
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-app-node@0.1.27-next.0
    • @backstage/plugin-catalog-backend@1.27.2-next.0
    • @backstage/plugin-permission-common@0.8.1
    • @backstage/plugin-permission-node@0.8.5-next.0
    • @backstage/plugin-scaffolder-node@0.5.1-next.0
    • @backstage/plugin-search-backend-node@1.3.5-next.0
    • @backstage/plugin-search-common@1.2.14

@backstage/backend-openapi-utils@0.2.1-next.0

Patch Changes

  • f01787a: Moves msw from dependencies to devDependencies
  • Updated dependencies
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/backend-plugin-api@1.0.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-permission-common@0.8.1

@backstage/backend-test-utils@1.0.3-next.0

Patch Changes

  • 7aae8e3: The mockServices.discovery.factory() factory now uses the mocked discovery service as its implementation, avoid the need for configuration.
  • eb82994: Removed unused msw dependency.
  • Updated dependencies
    • @backstage/plugin-events-node@0.4.3-next.0
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-defaults@0.5.3-next.0
    • @backstage/backend-app-api@1.0.2-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/core-compat-api@0.3.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-plugin-api@1.10.0
    • @backstage/frontend-plugin-api@0.9.1-next.0
    • @backstage/version-bridge@1.0.10

@backstage/create-app@0.5.22-next.0

Patch Changes

  • Bumped create-app version.
  • Updated dependencies
    • @backstage/cli-common@0.1.14

@backstage/dev-utils@1.1.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.16.0-next.0
    • @backstage/app-defaults@1.5.13-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/core-app-api@1.15.1
    • @backstage/core-plugin-api@1.10.0
    • @backstage/integration-react@1.2.0
    • @backstage/theme@0.6.0
    • @backstage/plugin-catalog-react@1.14.1-next.0

@backstage/frontend-app-api@0.10.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/config@1.2.0
    • @backstage/core-app-api@1.15.1
    • @backstage/core-plugin-api@1.10.0
    • @backstage/errors@1.2.4
    • @backstage/frontend-defaults@0.1.2-next.0
    • @backstage/frontend-plugin-api@0.9.1-next.0
    • @backstage/types@1.1.1
    • @backstage/version-bridge@1.0.10

@backstage/frontend-defaults@0.1.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/frontend-app-api@0.10.1-next.0
    • @backstage/frontend-plugin-api@0.9.1-next.0
    • @backstage/plugin-app@0.1.2-next.0

@backstage/frontend-plugin-api@0.9.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.16.0-next.0
    • @backstage/core-plugin-api@1.10.0
    • @backstage/types@1.1.1
    • @backstage/version-bridge@1.0.10

@backstage/frontend-test-utils@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/config@1.2.0
    • @backstage/frontend-app-api@0.10.1-next.0
    • @backstage/frontend-plugin-api@0.9.1-next.0
    • @backstage/test-utils@1.7.0
    • @backstage/types@1.1.1
    • @backstage/version-bridge@1.0.10
    • @backstage/plugin-app@0.1.2-next.0

@techdocs/cli@1.8.22-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-defaults@0.5.3-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/cli-common@0.1.14
    • @backstage/config@1.2.0
    • @backstage/plugin-techdocs-node@1.12.13-next.0

@backstage/plugin-api-docs@0.11.12-next.0

Patch Changes

  • 11f57de: bump @asyncapi/react-component to latest 2.x
  • 3cd1dee: Uses theme values to style the API definition schema so that theme overrides apply.
  • Updated dependencies
    • @backstage/core-components@0.16.0-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/core-compat-api@0.3.2-next.0
    • @backstage/core-plugin-api@1.10.0
    • @backstage/frontend-plugin-api@0.9.1-next.0
    • @backstage/plugin-catalog@1.24.1-next.0
    • @backstage/plugin-catalog-common@1.1.0
    • @backstage/plugin-catalog-react@1.14.1-next.0
    • @backstage/plugin-permission-react@0.4.27

@backstage/plugin-app@0.1.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.16.0-next.0
    • @backstage/core-plugin-api@1.10.0
    • @backstage/frontend-plugin-api@0.9.1-next.0
    • @backstage/integration-react@1.2.0
    • @backstage/theme@0.6.0
    • @backstage/plugin-permission-react@0.4.27

@backstage/plugin-app-backend@0.3.77-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/config@1.2.0
    • @backstage/config-loader@1.9.1
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-app-node@0.1.27-next.0

@backstage/plugin-app-node@0.1.27-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/config-loader@1.9.1

@backstage/plugin-app-visualizer@0.1.12-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.16.0-next.0
    • @backstage/core-plugin-api@1.10.0
    • @backstage/frontend-plugin-api@0.9.1-next.0

@backstage/plugin-auth-backend-module-atlassian-provider@0.3.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-auth0-provider@0.1.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/errors@1.2.4

@backstage/plugin-auth-backend-module-bitbucket-provider@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

@backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/plugin-auth-backend-module-github-provider@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-gitlab-provider@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-google-provider@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-guest-provider@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/errors@1.2.4

@backstage/plugin-auth-backend-module-microsoft-provider@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-oauth2-provider@0.3.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/errors@1.2.4

@backstage/plugin-auth-backend-module-oidc-provider@0.3.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.24.0-next.0
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-okta-provider@0.1.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-onelogin-provider@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0

@backstage/plugin-auth-backend-module-pinniped-provider@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/config@1.2.0

@backstage/plugin-auth-backend-module-vmware-cloud-provider@0.4.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0

@backstage/plugin-auth-node@0.5.4-next.0

Patch Changes

  • a0a9a4a: Browsers silently drop cookies that exceed 4KB, which can be problematic for refresh tokens and other large cookies.This update ensures that large cookies, like refresh tokens, are not dropped by browsers, maintaining the integrity of the authentication process. The changes include both the implementation of the cookie splitting logic and corresponding tests to validate the new functionality.
  • Updated dependencies
    • @backstage/catalog-client@1.8.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

@backstage/plugin-auth-react@0.1.8-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.16.0-next.0
    • @backstage/core-plugin-api@1.10.0
    • @backstage/errors@1.2.4

@backstage/plugin-catalog@1.24.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.16.0-next.0
    • @backstage/catalog-client@1.8.0-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/core-compat-api@0.3.2-next.0
    • @backstage/core-plugin-api@1.10.0
    • @backstage/errors@1.2.4
    • @backstage/frontend-plugin-api@0.9.1-next.0
    • @backstage/integration-react@1.2.0
    • @backstage/types@1.1.1
    • @backstage/plugin-catalog-common@1.1.0
    • @backstage/plugin-catalog-react@1.14.1-next.0
    • @backstage/plugin-permission-react@0.4.27
    • @backstage/plugin-scaffolder-common@1.5.6
    • @backstage/plugin-search-common@1.2.14
    • @backstage/plugin-search-react@1.8.2-next.0

@backstage/plugin-catalog-backend@1.27.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-events-node@0.4.3-next.0
    • @backstage/plugin-search-backend-module-catalog@0.2.5-next.0
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-openapi-utils@0.2.1-next.0
    • @backstage/catalog-client@1.8.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/integration@1.15.1
    • @backstage/types@1.1.1
    • @backstage/plugin-catalog-common@1.1.0
    • @backstage/plugin-permission-common@0.8.1
    • @backstage/plugin-permission-node@0.8.5-next.0

@backstage/plugin-catalog-backend-module-aws@0.4.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-defaults@0.5.3-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/integration@1.15.1
    • @backstage/integration-aws-node@0.1.12
    • @backstage/plugin-catalog-common@1.1.0
    • @backstage/plugin-kubernetes-common@0.8.3

@backstage/plugin-catalog-backend-module-azure@0.2.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/config@1.2.0
    • @backstage/integration@1.15.1
    • @backstage/plugin-catalog-common@1.1.0

@backstage/plugin-catalog-backend-module-backstage-openapi@0.4.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-openapi-utils@0.2.1-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4

@backstage/plugin-catalog-backend-module-bitbucket-cloud@0.4.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-events-node@0.4.3-next.0
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/catalog-client@1.8.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/integration@1.15.1
    • @backstage/plugin-bitbucket-cloud-common@0.2.24
    • @backstage/plugin-catalog-common@1.1.0

@backstage/plugin-catalog-backend-module-bitbucket-server@0.2.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/integration@1.15.1

@backstage/plugin-catalog-backend-module-gcp@0.3.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/plugin-kubernetes-common@0.8.3

@backstage/plugin-catalog-backend-module-gerrit@0.2.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/integration@1.15.1

@backstage/plugin-catalog-backend-module-github@0.7.7-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-events-node@0.4.3-next.0
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/catalog-client@1.8.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/integration@1.15.1
    • @backstage/plugin-catalog-backend@1.27.2-next.0
    • @backstage/plugin-catalog-common@1.1.0

@backstage/plugin-catalog-backend-module-github-org@0.3.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-events-node@0.4.3-next.0
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/config@1.2.0
    • @backstage/plugin-catalog-backend-module-github@0.7.7-next.0

@backstage/plugin-catalog-backend-module-gitlab@0.4.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-events-node@0.4.3-next.0
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-defaults@0.5.3-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/integration@1.15.1
    • @backstage/plugin-catalog-common@1.1.0

@backstage/plugin-catalog-backend-module-gitlab-org@0.2.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-events-node@0.4.3-next.0
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/plugin-catalog-backend-module-gitlab@0.4.5-next.0

@backstage/plugin-catalog-backend-module-incremental-ingestion@0.5.7-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-events-node@0.4.3-next.0
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/plugin-catalog-backend@1.27.2-next.0
    • @backstage/plugin-permission-common@0.8.1

@backstage/plugin-catalog-backend-module-ldap@0.9.2-next.0

Patch Changes

  • 884a86c: Added a dnCaseSensitive flag to support LDAP servers with mixed-case attributes.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-catalog-common@1.1.0

@backstage/plugin-catalog-backend-module-logs@0.1.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-events-node@0.4.3-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/plugin-catalog-backend@1.27.2-next.0

@backstage/plugin-catalog-backend-module-msgraph@0.6.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/plugin-catalog-common@1.1.0

@backstage/plugin-catalog-backend-module-openapi@0.2.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/integration@1.15.1
    • @backstage/types@1.1.1
    • @backstage/plugin-catalog-backend@1.27.2-next.0
    • @backstage/plugin-catalog-common@1.1.0

@backstage/plugin-catalog-backend-module-puppetdb@0.2.4-next.0

Patch Changes