github backstage/backstage release-2022-01-13

latest releases: v1.43.0-next.2, v1.43.0-next.1, v1.42.5...
3 years ago

@backstage/cli@0.11.0

Minor Changes

  • 14e980acee: ESLint upgraded to version 8 and all it's plugins updated to newest version.

    If you use any custom plugins for ESLint please check compatibility.

    ```diff

    • "@typescript-eslint/eslint-plugin": "^v4.33.0",
    • "@typescript-eslint/parser": "^v4.28.3",
    • "@typescript-eslint/eslint-plugin": "^5.9.0",
    • "@typescript-eslint/parser": "^5.9.0",
    • "eslint": "^7.30.0",
    • "eslint": "^8.6.0",
    • "eslint-plugin-import": "^2.20.2",
    • "eslint-plugin-jest": "^24.1.0",
    • "eslint-plugin-jsx-a11y": "^6.2.1",
    • "eslint-plugin-import": "^2.25.4",
    • "eslint-plugin-jest": "^25.3.4",
    • "eslint-plugin-jsx-a11y": "^6.5.1",
    • "eslint-plugin-react": "^7.12.4",
    • "eslint-plugin-react-hooks": "^4.0.0",
    • "eslint-plugin-react": "^7.28.0",
    • "eslint-plugin-react-hooks": "^4.3.0",
      Please consult changelogs from packages if you find any problems. ### Patch Changes - f302d24d34: Switch Webpack minification to use `esbuild` instead of `terser`. - bee7082094: Update `config/eslint.js` to forbid imports of `@material-ui/icons/` as well. - 7946418729: Switched to using `@manypkg/get-packages` to list monorepo packages, which provides better support for different kind of monorepo setups. - Updated dependencies - @backstage/config@0.1.12 - @backstage/errors@0.2.0 - @backstage/config-loader@0.9.2 ## @backstage/core-app-api@0.4.0 ### Minor Changes - e2eb92c109: Removed previously deprecated `ApiRegistry` export. ### Patch Changes - 34442cd5cf: Fixed an issue where valid SAML and GitHub sessions would be considered invalid and not be stored. Deprecated the `SamlSession` and `GithubSession` types. - 784d8078ab: Removed direct and transitive MUI dependencies. - Updated dependencies - @backstage/config@0.1.12 - @backstage/core-plugin-api@0.5.0 ## @backstage/core-plugin-api@0.5.0 ### Minor Changes - 784d8078ab: Removed the deprecated `OldIconComponent` type. - e2eb92c109: Removed previously deprecated exports: `PluginHooks`, `PluginOutput`, and `FeatureFlagOutput`. The deprecated `register` method of `PluginConfig` has been removed, as well as the deprecated `output` method of `BackstagePlugin`. ### Patch Changes - 784d8078ab: Removed direct and transitive MUI dependencies. - Updated dependencies - @backstage/config@0.1.12 ## @backstage/errors@0.2.0 ### Minor Changes - e2eb92c109: Removed the deprecated exports `ErrorResponse` and `parseErrorResponse`. Removed the deprecated `constructor` and the deprecated `data` property of `ResponseError`. ## @backstage/plugin-airbrake@0.1.0 ### Minor Changes - 04c86e5a10: A plugin for Airbrake (<https://airbrake.io/>) has been created ### Patch Changes - Updated dependencies - @backstage/core-components@0.8.4 - @backstage/core-plugin-api@0.5.0 ## @backstage/plugin-azure-devops-backend@0.3.0 ### Minor Changes - a2ed2c2d69: - feat: Created PullRequestsDashboardProvider for resolving team and team member relations - feat: Created useUserTeamIds hook. - feat: Updated useFilterProcessor to provide teamIds for `AssignedToCurrentUsersTeams` and `CreatedByCurrentUsersTeams` filters. ### Patch Changes - 9f9596f9ef: Only warn if teams fail to load at startup. - Updated dependencies - @backstage/config@0.1.12 - @backstage/backend-common@0.10.3 - @backstage/plugin-azure-devops-common@0.2.0 ## @backstage/plugin-azure-devops-common@0.2.0 ### Minor Changes - a2ed2c2d69: - feat: Created PullRequestsDashboardProvider for resolving team and team member relations - feat: Created useUserTeamIds hook. - feat: Updated useFilterProcessor to provide teamIds for `AssignedToCurrentUsersTeams` and `CreatedByCurrentUsersTeams` filters. ## @backstage/plugin-catalog-backend@0.20.0 ### Minor Changes - cd529c4094: In order to integrate the permissions system with the refresh endpoint in catalog-backend, a new AuthorizedRefreshService was created as a thin wrapper around the existing refresh service which performs authorization and handles the case when authorization is denied. In order to instantiate AuthorizedRefreshService, a permission client is required, which was added as a new field to `CatalogEnvironment`. The new `permissions` field in `CatalogEnvironment` should already receive the permission client from the `PluginEnvrionment`, so there should be no changes required to the catalog backend setup. See [the create-app changelog](https://github.com/backstage/backstage/blob/master/packages/create-app/CHANGELOG.md) for more details. ### Patch Changes - 0ae759dad4: Add catalog permission rules. - 3b4d8caff6: Allow a custom GithubCredentialsProvider to be passed to the GitHub processors. - 6fd70f8bc8: Provide support for Bitbucket servers with custom BaseURLs. - 5333451def: Cleaned up API exports - 730d01ab1a: Add apply-conditions endpoint for evaluating conditional permissions in catalog backend. - 0a6c68582a: Add authorization to catalog-backend entities GET endpoints - Updated dependencies - @backstage/config@0.1.12 - @backstage/integration@0.7.1 - @backstage/backend-common@0.10.3 - @backstage/plugin-permission-node@0.3.0 - @backstage/errors@0.2.0 - @backstage/catalog-client@0.5.4 - @backstage/catalog-model@0.9.9 - @backstage/plugin-permission-common@0.3.1 ## @backstage/plugin-catalog-graphql@0.3.0 ### Minor Changes - 0fb17da164: chore: bumping dependencies in the GraphQL modules and bringing them up to date with the latest `graphql-modules` library ### Patch Changes - cf01627a33: Bump graphql versions - Updated dependencies - @backstage/config@0.1.12 - @backstage/catalog-model@0.9.9 ## @backstage/plugin-permission-backend@0.3.0 ### Minor Changes - 419ca637c0: Optimizations to the integration between the permission backend and plugin-backends using createPermissionIntegrationRouter: - The permission backend already supported batched requests to authorize, but would make calls to plugin backend to apply conditions serially. Now, after applying the policy for each authorization request, the permission backend makes a single batched /apply-conditions request to each plugin backend referenced in policy decisions. - The `getResource` method accepted by `createPermissionIntegrationRouter` has been replaced with `getResources`, to allow consumers to make batch requests to upstream data stores. When /apply-conditions is called with a batch of requests, all required resources are requested in a single invocation of `getResources`. Plugin owners consuming `createPermissionIntegrationRouter` should replace the `getResource` method in the options with a `getResources` method, accepting an array of resourceRefs, and returning an array of the corresponding resources. ### Patch Changes - Updated dependencies - @backstage/config@0.1.12 - @backstage/backend-common@0.10.3 - @backstage/plugin-permission-node@0.3.0 - @backstage/plugin-auth-backend@0.6.2 - @backstage/errors@0.2.0 - @backstage/plugin-permission-common@0.3.1 ## @backstage/plugin-permission-node@0.3.0 ### Minor Changes - 419ca637c0: Optimizations to the integration between the permission backend and plugin-backends using createPermissionIntegrationRouter: - The permission backend already supported batched requests to authorize, but would make calls to plugin backend to apply conditions serially. Now, after applying the policy for each authorization request, the permission backend makes a single batched /apply-conditions request to each plugin backend referenced in policy decisions. - The `getResource` method accepted by `createPermissionIntegrationRouter` has been replaced with `getResources`, to allow consumers to make batch requests to upstream data stores. When /apply-conditions is called with a batch of requests, all required resources are requested in a single invocation of `getResources`. Plugin owners consuming `createPermissionIntegrationRouter` should replace the `getResource` method in the options with a `getResources` method, accepting an array of resourceRefs, and returning an array of the corresponding resources. ### Patch Changes - 9db1b86f32: Add helpers for creating PermissionRules with inferred types - Updated dependencies - @backstage/config@0.1.12 - @backstage/backend-common@0.10.3 - @backstage/plugin-auth-backend@0.6.2 - @backstage/errors@0.2.0 - @backstage/plugin-permission-common@0.3.1 ## @backstage/app-defaults@0.1.4 ### Patch Changes - Updated dependencies - @backstage/core-components@0.8.4 - @backstage/core-plugin-api@0.5.0 - @backstage/core-app-api@0.4.0 - @backstage/plugin-permission-react@0.2.2 ## @backstage/backend-common@0.10.3 ### Patch Changes - 5b406daabe: build(deps-dev): bump `http-errors` from 1.8.0 to 2.0.0 - 5333451def: Cleaned up API exports - db5310e25e: bump `logform` to use fixed version of `color` dependency - 7946418729: Switched to using `@manypkg/get-packages` to list monorepo packages, which provides better support for different kind of monorepo setups. - 3b4d8caff6: The GithubUrlReader is switched to use the DefaultGithubCredentialsProvider - f77bd5c8ff: Clean up API reports - Updated dependencies - @backstage/config@0.1.12 - @backstage/integration@0.7.1 - @backstage/errors@0.2.0 - @backstage/config-loader@0.9.2 ## @backstage/backend-tasks@0.1.3 ### Patch Changes - Updated dependencies - @backstage/config@0.1.12 - @backstage/backend-common@0.10.3 - @backstage/errors@0.2.0 ## @backstage/backend-test-utils@0.1.13 ### Patch Changes - b1bc55405e: Bump `testcontainers` dependency to version `8.1.2` - Updated dependencies - @backstage/config@0.1.12 - @backstage/backend-common@0.10.3 - @backstage/cli@0.11.0 ## @backstage/catalog-client@0.5.4 ### Patch Changes - Updated dependencies - @backstage/errors@0.2.0 - @backstage/catalog-model@0.9.9 ## @backstage/catalog-model@0.9.9 ### Patch Changes - Updated dependencies - @backstage/config@0.1.12 - @backstage/errors@0.2.0 ## @backstage/codemods@0.1.29 ### Patch Changes - Updated dependencies - @backstage/core-components@0.8.4 - @backstage/core-plugin-api@0.5.0 - @backstage/core-app-api@0.4.0 ## @backstage/config@0.1.12 ### Patch Changes - f5343e7c1a: The `ConfigReader#get` method now always returns a deep clone of the configuration data. ## @backstage/config-loader@0.9.2 ### Patch Changes - Updated dependencies - @backstage/config@0.1.12 - @backstage/errors@0.2.0 ## @backstage/core-components@0.8.4 ### Patch Changes - 6415189d99: Add a `ProxiedSignInPage` that can be used e.g. for GCP IAP and AWS ALB - de2396da24: Create a short delay when `<SidebarSubmenu/>` is opened - 5333451def: Cleaned up API exports - e2eb92c109: Updated `ResponseErrorPanel` to not use the deprecated `data` property of `ResponseError`. - Updated dependencies - @backstage/config@0.1.12 - @backstage/core-plugin-api@0.5.0 - @backstage/errors@0.2.0 ## @backstage/create-app@0.4.12 ### Patch Changes - 5333451def: Cleaned up API exports - cd529c4094: Add permissions to create-app's PluginEnvironment `CatalogEnvironment` now has a `permissions` field, which means that a permission client must now be provided as part of `PluginEnvironment`. To apply these changes to an existing app, add the following to the `makeCreateEnv` function in `packages/backend/src/index.ts`: diff
      // packages/backend/src/index.ts
      + import { ServerPermissionClient } from '@backstage/plugin-permission-node';
      function makeCreateEnv(config: Config) {
      ...
      + const permissions = ServerPerimssionClient.fromConfig(config, {
      + discovery,
      + tokenManager,
      + });
      root.info(Created UrlReader ${reader});
      return (plugin: string): PluginEnvironment => {
      ...
      return {
      logger,
      cache,
      database,
      config,
      reader,
      discovery,
      tokenManager,
      scheduler,
      + permissions,
      };
      }
      }
      ```

    And add a permissions field to the PluginEnvironment type in packages/backend/src/types.ts:

      // packages/backend/src/types.ts
    
    + import { PermissionAuthorizer } from '@backstage/plugin-permission-common';
    
    
      export type PluginEnvironment = {
        ...
    +   permissions: PermissionAuthorizer;
      };
    

    @backstage/plugin-permission-common and @backstage/plugin-permission-node will need to be installed as dependencies:

      // packages/backend/package.json
    +   "@backstage/plugin-permission-common": "...",
    +   "@backstage/plugin-permission-node": "...",
    

## @backstage/dev-utils@0.2.17

Patch Changes

  • Updated dependencies
    • @backstage/test-utils@0.2.2
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/core-app-api@0.4.0
    • @backstage/app-defaults@0.1.4
    • @backstage/catalog-model@0.9.9
    • @backstage/integration-react@0.1.18

## @backstage/integration@0.7.1

Patch Changes

  • 3b4d8caff6: Adds a new GitHub credentials provider (DefaultGithubCredentialsProvider). It handles multiple app configurations. It looks up the app configuration based on the url.
  • 5333451def: Cleaned up API exports
  • Updated dependencies
    • @backstage/config@0.1.12

## @backstage/integration-react@0.1.18

Patch Changes

  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/integration@0.7.1
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0

## @backstage/techdocs-common@0.11.3

Patch Changes

  • 5333451def: Cleaned up API exports
  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/integration@0.7.1
    • @backstage/backend-common@0.10.3
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/test-utils@0.2.2

Patch Changes

  • 2d3fd91e33: Add new MockConfigApi as a more discoverable and leaner method for mocking configuration.
  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/core-plugin-api@0.5.0
    • @backstage/core-app-api@0.4.0

## @backstage/plugin-allure@0.1.11

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-analytics-module-ga@0.1.6

Patch Changes

  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0

## @backstage/plugin-apache-airflow@0.1.3

Patch Changes

  • 5333451def: Cleaned up API exports
  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0

## @backstage/plugin-api-docs@0.6.22

Patch Changes

## @backstage/plugin-auth-backend@0.6.2

Patch Changes

  • 5333451def: Cleaned up API exports

  • da9c59d6e0: Removed @backstage/test-utils dependency.

  • 20ca7cfa5f: Switched the secure cookie mode set on the express-session to use 'auto' rather than true. This works around an issue where cookies would not be set if TLS termination was handled in a proxy rather than having the backend served directly with HTTPS.

    The downside of this change is that secure cookies won't be used unless the backend is directly served with HTTPS. This will be remedied in a future update that allows the backend to configured for trusted proxy mode.

  • Updated dependencies

    • @backstage/config@0.1.12
    • @backstage/backend-common@0.10.3
    • @backstage/errors@0.2.0
    • @backstage/catalog-client@0.5.4
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-azure-devops@0.1.10

Patch Changes

  • a2ed2c2d69: - feat: Created PullRequestsDashboardProvider for resolving team and team member relations
    • feat: Created useUserTeamIds hook.
    • feat: Updated useFilterProcessor to provide teamIds for AssignedToCurrentUsersTeams and CreatedByCurrentUsersTeams filters.
  • 5333451def: Cleaned up API exports
  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-azure-devops-common@0.2.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-badges@0.2.19

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-badges-backend@0.1.15

Patch Changes

  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/backend-common@0.10.3
    • @backstage/errors@0.2.0
    • @backstage/catalog-client@0.5.4
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-bazaar@0.1.9

Patch Changes

  • 6eb6e2dc31: Add Bazaar plugin to marketplace and some minor refactoring
  • b47965beec: build(deps): bump @date-io/luxon from 1.3.13 to 2.11.1
  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/cli@0.11.0
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/catalog-client@0.5.4
    • @backstage/catalog-model@0.9.9
    • @backstage/plugin-catalog@0.7.8

## @backstage/plugin-bazaar-backend@0.1.6

Patch Changes

  • 6eb6e2dc31: Add Bazaar plugin to marketplace and some minor refactoring
  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/backend-common@0.10.3
    • @backstage/backend-test-utils@0.1.13

## @backstage/plugin-bitrise@0.1.22

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-catalog@0.7.8

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/errors@0.2.0
    • @backstage/catalog-client@0.5.4
    • @backstage/catalog-model@0.9.9
    • @backstage/integration-react@0.1.18

## @backstage/plugin-catalog-backend-module-ldap@0.3.9

Patch Changes

  • 2b19fd2e94: Make sure to avoid accidental data sharing / mutation of set values
  • 722681b1b1: Clean up API report
  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/plugin-catalog-backend@0.20.0
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-catalog-backend-module-msgraph@0.2.12

Patch Changes

  • 722681b1b1: Clean up API report
  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/plugin-catalog-backend@0.20.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-catalog-graph@0.2.6

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/catalog-client@0.5.4
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-catalog-import@0.7.9

Patch Changes

  • 5333451def: Cleaned up API exports
  • Updated dependencies
    • @backstage/integration@0.7.1
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/errors@0.2.0
    • @backstage/catalog-client@0.5.4
    • @backstage/catalog-model@0.9.9
    • @backstage/integration-react@0.1.18

## @backstage/plugin-catalog-react@0.6.11

Patch Changes

  • 5333451def: Cleaned up API exports
  • Updated dependencies
    • @backstage/integration@0.7.1
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/errors@0.2.0
    • @backstage/catalog-client@0.5.4
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-circleci@0.2.34

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-cloudbuild@0.2.32

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-code-coverage@0.1.22

Patch Changes

  • 5333451def: Cleaned up API exports
  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-code-coverage-backend@0.1.19

Patch Changes

  • 5333451def: Cleaned up API exports
  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/integration@0.7.1
    • @backstage/backend-common@0.10.3
    • @backstage/errors@0.2.0
    • @backstage/catalog-client@0.5.4
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-config-schema@0.1.18

Patch Changes

  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/errors@0.2.0

## @backstage/plugin-cost-insights@0.11.17

Patch Changes

  • 5333451def: Cleaned up API exports
  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0

## @backstage/plugin-explore@0.3.25

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/catalog-model@0.9.9
    • @backstage/plugin-explore-react@0.0.10

## @backstage/plugin-explore-react@0.0.10

Patch Changes

  • Updated dependencies
    • @backstage/core-plugin-api@0.5.0

## @backstage/plugin-firehydrant@0.1.12

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11

## @backstage/plugin-fossa@0.2.27

Patch Changes

  • 5333451def: Cleaned up API exports
  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-gcp-projects@0.3.13

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0

## @backstage/plugin-git-release-manager@0.3.8

Patch Changes

  • c1813739c6: Improved copy for patch CTA
  • Updated dependencies
    • @backstage/integration@0.7.1
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0

## @backstage/plugin-github-actions@0.4.31

Patch Changes

  • Updated dependencies
    • @backstage/integration@0.7.1
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-github-deployments@0.1.26

Patch Changes

  • Updated dependencies
    • @backstage/integration@0.7.1
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9
    • @backstage/integration-react@0.1.18

## @backstage/plugin-gitops-profiles@0.3.13

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0

## @backstage/plugin-gocd@0.1.1

Patch Changes

  • d9aaecd1cb: Add GoCD plugin for CI/CD.
  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-graphiql@0.2.27

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0

## @backstage/plugin-graphql-backend@0.1.11

Patch Changes

  • 0fb17da164: chore: bumping dependencies in the GraphQL modules and bringing them up to date with the latest graphql-modules library
  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/backend-common@0.10.3
    • @backstage/plugin-catalog-graphql@0.3.0

## @backstage/plugin-home@0.4.10

Patch Changes

  • bdf1419d20: Adds two new home components - CompanyLogo and Toolkit.
  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-search@0.5.5

## @backstage/plugin-ilert@0.1.21

Patch Changes

  • b47965beec: build(deps): bump @date-io/luxon from 1.3.13 to 2.11.1
  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-jenkins@0.5.17

Patch Changes

  • 5333451def: Cleaned up API exports
  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-kafka@0.2.25

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-kafka-backend@0.2.14

Patch Changes

  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/backend-common@0.10.3
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-kubernetes@0.5.4

Patch Changes

  • 7612e2856b: Clean up emptystate.svg image, removing wrong white artifact from the background
  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-kubernetes-backend@0.4.3

Patch Changes

  • a67ec8527f: Exclude the AWS session token from credential validation, because it's not necessary in this context.
  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/backend-common@0.10.3
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-lighthouse@0.2.34

Patch Changes

  • Updated dependencies
    • @backstage/config@0.1.12
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-newrelic@0.3.13

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0

## @backstage/plugin-newrelic-dashboard@0.1.3

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.4
    • @backstage/core-plugin-api@0.5.0
    • @backstage/plugin-catalog-react@0.6.11
    • @backstage/errors@0.2.0
    • @backstage/catalog-model@0.9.9

## @backstage/plugin-org@0.3.34

Patch Changes

  • 3f08dcd696: For the component EntityMembersListCard you can now specify the type of members you have in a group. For example:

    <Grid item xs={12}>
      <EntityMembersListCard memberDisplayTitle="Ninja's" />
    </Grid>
    

    If left empty it will by default use 'Members'.

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-pagerduty@0.3.22

      Patch Changes

    • 7612e2856b: Clean up emptystate.svg image, removing wrong white artifact from the background

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-permission-common@0.3.1

      Patch Changes

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/errors@0.2.0

      @backstage/plugin-permission-react@0.2.2

      Patch Changes

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-permission-common@0.3.1

      @backstage/plugin-rollbar@0.3.23

      Patch Changes

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-scaffolder@0.11.18

      Patch Changes

    • 5333451def: Cleaned up API exports

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/integration@0.7.1

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/errors@0.2.0

    • @backstage/catalog-client@0.5.4

    • @backstage/catalog-model@0.9.9

    • @backstage/integration-react@0.1.18

      @backstage/plugin-scaffolder-backend@0.15.20

      Patch Changes

    • 9fbd3b90ae: fix: Register plugin to prioritise Component kind for entityRef

    • 451ef0aa07: Fix token pass-through for software templates using beta 3 version

    • 5333451def: Cleaned up API exports

    • 3b4d8caff6: Allow a GitHubCredentialsProvider to be passed to the GitHub scaffolder tasks actions.

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/integration@0.7.1

    • @backstage/backend-common@0.10.3

    • @backstage/plugin-catalog-backend@0.20.0

    • @backstage/errors@0.2.0

    • @backstage/catalog-client@0.5.4

    • @backstage/catalog-model@0.9.9

    • @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.8

      @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.8

      Patch Changes

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/plugin-scaffolder-backend@0.15.20

    • @backstage/integration@0.7.1

    • @backstage/backend-common@0.10.3

    • @backstage/errors@0.2.0

      @backstage/plugin-scaffolder-backend-module-rails@0.2.3

      Patch Changes

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/plugin-scaffolder-backend@0.15.20

    • @backstage/integration@0.7.1

    • @backstage/backend-common@0.10.3

    • @backstage/errors@0.2.0

      @backstage/plugin-search@0.5.5

      Patch Changes

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/errors@0.2.0

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-search-backend-node@0.4.4

      Patch Changes

    • 5333451def: Cleaned up API exports

      @backstage/plugin-sentry@0.3.33

      Patch Changes

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-shortcuts@0.1.19

      Patch Changes

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

      @backstage/plugin-sonarqube@0.2.12

      Patch Changes

    • 3423b3b24d: Enhance token description by highlighting that the trailing colon is required.

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-splunk-on-call@0.3.19

      Patch Changes

    • 7612e2856b: Clean up emptystate.svg image, removing wrong white artifact from the background

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-tech-insights@0.1.5

      Patch Changes

    • 34883f5c9e: Added possibility to pass customized title and description for the scorecards instead of using hardcoded ones.

    • a60eb0f0dd: adding new operation to run checks for multiple entities in one request

    • 48580d0fbb: fix React warning because of missing key prop

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/plugin-tech-insights-common@0.2.1

    • @backstage/errors@0.2.0

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-tech-insights-backend@0.1.5

      Patch Changes

    • 19f0f93504: Catch errors from a fact retriever and log them.

    • 10f26e8883: Modify queries to perform better by filtering on sub-queries as well

    • a60eb0f0dd: adding new operation to run checks for multiple entities in one request

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/backend-common@0.10.3

    • @backstage/plugin-tech-insights-common@0.2.1

    • @backstage/errors@0.2.0

    • @backstage/catalog-client@0.5.4

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.5

      Patch Changes

    • a60eb0f0dd: adding new operation to run checks for multiple entities in one request

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/backend-common@0.10.3

    • @backstage/plugin-tech-insights-common@0.2.1

    • @backstage/errors@0.2.0

      @backstage/plugin-tech-insights-common@0.2.1

      Patch Changes

    • a60eb0f0dd: adding new operation to run checks for multiple entities in one request

      @backstage/plugin-tech-radar@0.5.2

      Patch Changes

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

      @backstage/plugin-techdocs@0.12.14

      Patch Changes

    • 5333451def: Cleaned up API exports

    • 1628ca3f49: Fix an issue where the TechDocs sidebar is hidden when the Backstage sidebar is pinned at smaller screen sizes

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/integration@0.7.1

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/errors@0.2.0

    • @backstage/catalog-model@0.9.9

    • @backstage/integration-react@0.1.18

    • @backstage/plugin-catalog@0.7.8

    • @backstage/plugin-search@0.5.5

      @backstage/plugin-techdocs-backend@0.12.3

      Patch Changes

    • 5333451def: Cleaned up API exports

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/integration@0.7.1

    • @backstage/backend-common@0.10.3

    • @backstage/techdocs-common@0.11.3

    • @backstage/errors@0.2.0

    • @backstage/catalog-client@0.5.4

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-todo@0.1.18

      Patch Changes

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/errors@0.2.0

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-todo-backend@0.1.18

      Patch Changes

    • 2260702efd: Properly exported all referenced types

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/integration@0.7.1

    • @backstage/backend-common@0.10.3

    • @backstage/errors@0.2.0

    • @backstage/catalog-client@0.5.4

    • @backstage/catalog-model@0.9.9

      @backstage/plugin-user-settings@0.3.16

      Patch Changes

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

      @backstage/plugin-xcmetrics@0.2.15

      Patch Changes

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/core-plugin-api@0.5.0

    • @backstage/errors@0.2.0

      example-app@0.2.60

      Patch Changes

    • Updated dependencies

    • @backstage/core-components@0.8.4

    • @backstage/cli@0.11.0

    • @backstage/plugin-tech-insights@0.1.5

    • @backstage/plugin-gocd@0.1.1

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-org@0.3.34

    • @backstage/plugin-home@0.4.10

    • @backstage/plugin-azure-devops@0.1.10

    • @backstage/plugin-apache-airflow@0.1.3

    • @backstage/plugin-catalog-import@0.7.9

    • @backstage/plugin-catalog-react@0.6.11

    • @backstage/plugin-code-coverage@0.1.22

    • @backstage/plugin-cost-insights@0.11.17

    • @backstage/plugin-jenkins@0.5.17

    • @backstage/plugin-scaffolder@0.11.18

    • @backstage/plugin-techdocs@0.12.14

    • @backstage/plugin-kubernetes@0.5.4

    • @backstage/plugin-pagerduty@0.3.22

    • @backstage/plugin-api-docs@0.6.22

    • @backstage/core-app-api@0.4.0

    • @backstage/plugin-airbrake@0.1.0

    • @backstage/app-defaults@0.1.4

    • @backstage/catalog-model@0.9.9

    • @backstage/integration-react@0.1.18

    • @backstage/plugin-badges@0.2.19

    • @backstage/plugin-catalog@0.7.8

    • @backstage/plugin-catalog-graph@0.2.6

    • @backstage/plugin-circleci@0.2.34

    • @backstage/plugin-cloudbuild@0.2.32

    • @backstage/plugin-explore@0.3.25

    • @backstage/plugin-gcp-projects@0.3.13

    • @backstage/plugin-github-actions@0.4.31

    • @backstage/plugin-graphiql@0.2.27

    • @backstage/plugin-kafka@0.2.25

    • @backstage/plugin-lighthouse@0.2.34

    • @backstage/plugin-newrelic@0.3.13

    • @backstage/plugin-newrelic-dashboard@0.1.3

    • @backstage/plugin-rollbar@0.3.23

    • @backstage/plugin-search@0.5.5

    • @backstage/plugin-sentry@0.3.33

    • @backstage/plugin-shortcuts@0.1.19

    • @backstage/plugin-tech-radar@0.5.2

    • @backstage/plugin-todo@0.1.18

    • @backstage/plugin-user-settings@0.3.16

      example-backend@0.2.60

      Patch Changes

    • Updated dependencies

    • @backstage/config@0.1.12

    • @backstage/plugin-scaffolder-backend@0.15.20

    • @backstage/integration@0.7.1

    • @backstage/backend-common@0.10.3

    • @backstage/plugin-todo-backend@0.1.18

    • @backstage/plugin-catalog-backend@0.20.0

    • @backstage/plugin-tech-insights-backend@0.1.5

    • @backstage/plugin-permission-node@0.3.0

    • @backstage/plugin-auth-backend@0.6.2

    • @backstage/plugin-code-coverage-backend@0.1.19

    • @backstage/plugin-search-backend-node@0.4.4

    • @backstage/plugin-techdocs-backend@0.12.3

    • @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.5

    • @backstage/plugin-permission-backend@0.3.0

    • @backstage/plugin-graphql-backend@0.1.11

    • @backstage/plugin-kubernetes-backend@0.4.3

    • example-app@0.2.60

    • @backstage/backend-tasks@0.1.3

    • @backstage/catalog-client@0.5.4

    • @backstage/catalog-model@0.9.9

    • @backstage/plugin-badges-backend@0.1.15

    • @backstage/plugin-kafka-backend@0.2.14

    • @backstage/plugin-permission-common@0.3.1

    • @backstage/plugin-scaffolder-backend-module-rails@0.2.3

      embedded-techdocs-app@0.2.59

      Patch Changes

    • Updated dependencies

    • @backstage/test-utils@0.2.2

    • @backstage/config@0.1.12

    • @backstage/core-components@0.8.4

    • @backstage/cli@0.11.0

    • @backstage/core-plugin-api@0.5.0

    • @backstage/plugin-techdocs@0.12.14

    • @backstage/core-app-api@0.4.0

    • @backstage/app-defaults@0.1.4

    • @backstage/catalog-model@0.9.9

    • @backstage/integration-react@0.1.18

    • @backstage/plugin-catalog@0.7.8

      storybook@0.2.1

      Patch Changes

    • Updated dependencies

    • @backstage/test-utils@0.2.2

    • @backstage/core-plugin-api@0.5.0

    • @backstage/core-app-api@0.4.0

Don't miss a new backstage release

NewReleases is sending notifications on new releases.