Backstage - v0.67.0


@backstage/catalog-client@0.6.0

Minor Changes

  • f8633307c4: Fixed the return type of the catalog API getEntityAncestors, to match the
    actual server response shape.

    While this technically is a breaking change, the old shape has never worked at
    all if you tried to use it - so treating this as an immediately-shipped breaking
    bug fix.

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

Minor Changes

  • 08fcda13ef: The callbackUrl option of OAuthAdapter is now required.
  • 6bc86fcf2d: The following breaking changes were made, which may imply specifically needing
    to make small adjustments in your custom auth providers.

    • BREAKING: Moved IdentityClient, BackstageSignInResult,
      BackstageIdentityResponse, and BackstageUserIdentity to
      @backstage/plugin-auth-node.
    • BREAKING: Removed deprecated type BackstageIdentity, please use
      BackstageSignInResult from @backstage/plugin-auth-node instead.

    While moving over, IdentityClient was also changed in the following ways:

    • BREAKING: Made IdentityClient.listPublicKeys private. It was only used
      in tests, and should not be part of the API surface of that class.
    • BREAKING: Removed the static IdentityClient.getBearerToken. It is now
      replaced by getBearerTokenFromAuthorizationHeader from
      @backstage/plugin-auth-node.
    • BREAKING: Removed the constructor. Please use the IdentityClient.create
      static method instead.

    Since the IdentityClient interface is marked as experimental, this is a
    breaking change without a deprecation period.

    In your auth providers, you may need to update your imports and usages as
    follows (example code; yours may be slightly different):

    ````diff
    -import { IdentityClient } from '@backstage/plugin-auth-backend';
    +import {
    + IdentityClient,
    + getBearerTokenFromAuthorizationHeader
    +} from '@backstage/plugin-auth-node';

    // ...

    • const identity = new IdentityClient({
    • const identity = IdentityClient.create({
      discovery,
      issuer: await discovery.getExternalBaseUrl('auth'),
      });```

    // ...

    const token =
    - IdentityClient.getBearerToken(req.headers.authorization) ||
    + getBearerTokenFromAuthorizationHeader(req.headers.authorization) ||
    req.cookies['token'];
    ````

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • 3396bc5973: Enabled refresh for the Atlassian provider.

  • 08fcda13ef: Added a new cookieConfigurer option to AuthProviderConfig that makes it possible to override the default logic for configuring OAuth provider cookies.

  • Updated dependencies

    • @backstage/catalog-client@0.6.0
    • @backstage/backend-common@0.10.7
    • @backstage/plugin-auth-node@0.1.0

## @backstage/plugin-auth-node@0.1.0

Minor Changes

  • 9058bb1b5e: Added this package, to hold shared types and functionality that other backend
    packages need to import.

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7

## @backstage/plugin-cicd-statistics@0.1.0

Minor Changes

  • 770c195f34: Added new plugin "CI/CD Statistics" which charts pipeline build durations over time

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-todo@0.2.0

Minor Changes

  • 323f48704d: BREAKING: The EntityTodoContent is now a routable extension. This means it must be rendered within a route, but that's most likely already the case for most apps. The mount point RouteRef is available via todoPlugin.routes.entityContent.

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/app-defaults@0.1.7

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

## @backstage/backend-common@0.10.7

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • 599f3dfa83: chore(deps-dev): bump @types/concat-stream from 1.6.1 to 2.0.0

  • c3868458d8: Removed unnecessary get-port dependency

  • 04398e946e: Bump selfsigned to 2.0.0

## @backstage/backend-tasks@0.1.6

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • Updated dependencies

    • @backstage/backend-common@0.10.7

## @backstage/backend-test-utils@0.1.17

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • Updated dependencies

    • @backstage/cli@0.13.2
    • @backstage/backend-common@0.10.7

## @backstage/cli@0.13.2

Patch Changes

  • bbbaa8ed61: The plugin:diff command no longer validates the existence of any of the files within dev/ or src/.

  • eaf67f0578: Introduced initial support for an experimental backstage.role field in package.json, as well as experimental and hidden migrate and script sub-commands. We do not recommend usage of any of these additions yet.

  • aeb5c69abb: Introduces a new --release parameter to the backstage-cli versions:bump command.
    The release can be either a specific version, for example 0.99.1, or the latest main or next release.
    The default behavior is to bump to the latest main release.

  • d59b90852a: The experimental types build enabled by --experimental-type-build now runs in a separate worker thread.

  • 50a19ff8dd: The file path printed by the default lint formatter is now relative to the repository root, rather than the individual package.

  • 63181dee79: Tweaked frontend bundling configuration to avoid leaking declarations into global scope.

  • fae2aee878: Removed the import/no-duplicates lint rule from the frontend and backend ESLint configurations. This rule is quite expensive to execute and only provides a purely cosmetic benefit, so we opted to remove it from the set of default rules. If you would like to keep this rule you can add it back in your local ESLint configuration:

    js 'import/no-duplicates': 'warn'

  • b906f98119: Rather than calling yarn pack, the build-workspace and backend-bundle commands now move files directly whenever possible. This cuts out several yarn invocations and speeds the packing process up by several orders of magnitude.

  • d0c71e2aa4: Switched the lint command to invoke ESLint directly through its Node.js API rather than spawning a new process.

  • d59b90852a: Introduced an experimental and hidden repo sub-command, that contains commands that operate on an entire monorepo rather than individual packages.

  • Updated dependencies

    • @backstage/release-manifests@0.0.1

## @backstage/codemods@0.1.33

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

## @backstage/core-components@0.8.8

Patch Changes

  • 8d785a0b1b: chore: bump ansi-regex from 5.0.1 to 6.0.1
  • f2dfbd3fb0: Adjust ErrorPage to accept optional supportUrl property to override app support config. Update type of additionalInfo property to be ReactNode to accept both string and component.
  • 19155e0939: Updated React component type declarations to avoid exporting exotic component types.
  • 89c84b9108: chore: fixing typescript errors for TabbedCard.tsx for React 17.x
  • d62bdb7a8e: The ErrorPage now falls back to using the default support configuration if the ConfigApi is not available.

## @backstage/create-app@0.4.19

Patch Changes

  • 22f4ecb0e6: Switched the file: dependency for a link: dependency in the backend package. This makes sure that the app package is linked in rather than copied.

    To apply this update to an existing app, make the following change to packages/backend/package.json:

    diff "dependencies": { - "app": "file:../app", + "app": "link:../app", "@backstage/backend-common": "^{{version '@backstage/backend-common'}}",

  • 1dd5a02e91: BREAKING: Updated knex to major version 1, which also implies changing out
    the underlying sqlite implementation.

    The old sqlite3 NPM library has been abandoned by its maintainers, which has
    led to unhandled security reports and other issues. Therefore, in the knex 1.x
    release line they have instead switched over to the @vscode/sqlite3
    library
    by default, which is
    actively maintained by Microsoft.

    This means that as you update to this version of Backstage, there are two
    breaking changes that you will have to address in your own repository:

    Bumping knex itself

    All package.json files of your repo that used to depend on a 0.x version of
    knex, should now be updated to depend on the 1.x release line. This applies in
    particular to packages/backend, but may also occur in backend plugins or
    libraries.

    diff - "knex": "^0.95.1", + "knex": "^1.0.2",

    Almost all existing database code will continue to function without modification
    after this bump. The only significant difference that we discovered in the main
    repo, is that the alter() function had a slightly different signature in
    migration files. It now accepts an object with alterType and alterNullable
    fields that clarify a previous grey area such that the intent of the alteration
    is made explicit. This is caught by tsc and your editor if you are using the
    @ts-check and @param syntax in your migration files
    (example),
    which we strongly recommend.

    See the knex documentation for more
    information about the alter syntax.

    Also see the knex changelog for information
    about breaking changes in the 1.x line; if you are using RETURNING you may
    want to make some additional modifications in your code.

    Switching out sqlite3

    All package.json files of your repo that used to depend on sqlite3, should
    now be updated to depend on @vscode/sqlite3. This applies in particular to
    packages/backend, but may also occur in backend plugins or libraries.

    diff - "sqlite3": "^5.0.1", + "@vscode/sqlite3": "^5.0.7",

    These should be functionally equivalent, except that the new library will have
    addressed some long standing problems with old transitive dependencies etc.

## @backstage/dev-utils@0.2.21

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14
    • @backstage/app-defaults@0.1.7
    • @backstage/integration-react@0.1.21

## @backstage/integration-react@0.1.21

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

## @backstage/release-manifests@0.0.1

Patch Changes

  • aeb5c69abb: Introduces a new package with utilities for fetching release manifests.
    This package will primarily be used by the @backstage/cli package.

## @techdocs/cli@0.8.13

Patch Changes

  • b70c186194: Updated the HTTP server to allow for simplification of the development of the CLI itself.
  • Updated dependencies
    • @backstage/backend-common@0.10.7
    • @backstage/techdocs-common@0.11.7

## @backstage/techdocs-common@0.11.7

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7

## @backstage/plugin-airbrake@0.1.3

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

## @backstage/plugin-allure@0.1.14

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14
    • @backstage/plugin-catalog@0.7.12

## @backstage/plugin-app-backend@0.3.24

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • Updated dependencies

    • @backstage/backend-common@0.10.7

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-azure-devops-backend@0.3.3

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7

## @backstage/plugin-badges@0.2.22

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

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

Patch Changes

  • Updated dependencies
    • @backstage/catalog-client@0.6.0
    • @backstage/backend-common@0.10.7

## @backstage/plugin-bazaar@0.1.13

Patch Changes

  • d674971d3a: Rolling back the @date-io/luxon bump as this broke both packages, and we need it for @material-ui/pickers
  • Updated dependencies
    • @backstage/catalog-client@0.6.0
    • @backstage/cli@0.13.2
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14
    • @backstage/plugin-catalog@0.7.12

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

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • Updated dependencies

    • @backstage/backend-common@0.10.7
    • @backstage/backend-test-utils@0.1.17

## @backstage/plugin-bitrise@0.1.25

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-catalog@0.7.12

Patch Changes

  • f8633307c4: Added an "inspect" entry in the entity three-dots menu, for lower level catalog
    insights and debugging.
  • 9033775d39: Deprecated the EntityPageLayout; please use the new extension based CatalogEntityPage instead
  • Updated dependencies
    • @backstage/catalog-client@0.6.0
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14
    • @backstage/integration-react@0.1.21

## @backstage/plugin-catalog-backend@0.21.3

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • Updated dependencies

    • @backstage/catalog-client@0.6.0
    • @backstage/backend-common@0.10.7
    • @backstage/plugin-permission-node@0.4.3

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@0.21.3

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

Patch Changes

  • 9b122a780c: Add userExpand option to allow users to expand fields retrieved from the Graph API - for use in custom transformers
  • 7bb1bde7f6: Minor API cleanups
  • Updated dependencies
    • @backstage/plugin-catalog-backend@0.21.3

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

Patch Changes

  • 7bb1bde7f6: Minor API cleanups
  • Updated dependencies
    • @backstage/catalog-client@0.6.0
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

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

Patch Changes

  • 7bb1bde7f6: Minor API cleanups
  • Updated dependencies
    • @backstage/catalog-client@0.6.0
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14
    • @backstage/integration-react@0.1.21

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

Patch Changes

  • 680e7c7452: Updated useEntityListProvider and catalog pickers to respond to external changes to query parameters in the URL, such as two sidebar links that apply different catalog filters.
  • f8633307c4: Added an "inspect" entry in the entity three-dots menu, for lower level catalog
    insights and debugging.
  • 19155e0939: Updated React component type declarations to avoid exporting exotic component types.
  • 7bb1bde7f6: Minor API cleanups
  • Updated dependencies
    • @backstage/catalog-client@0.6.0
    • @backstage/core-components@0.8.8

## @backstage/plugin-circleci@0.2.37

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-cloudbuild@0.2.35

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

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

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • Updated dependencies

    • @backstage/catalog-client@0.6.0
    • @backstage/backend-common@0.10.7

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

## @backstage/plugin-explore@0.3.29

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-firehydrant@0.1.15

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-fossa@0.2.30

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14
    • @backstage/integration-react@0.1.21

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

## @backstage/plugin-gocd@0.1.4

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-graphiql@0.2.30

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7

## @backstage/plugin-home@0.4.14

Patch Changes

  • a4a777441d: Adds new StarredEntities component responsible for rendering a list of starred entities on the home page
  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-search@0.6.2
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-ilert@0.1.24

Patch Changes

  • d674971d3a: Rolling back the @date-io/luxon bump as this broke both packages, and we need it for @material-ui/pickers
  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-jenkins@0.5.20

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-jenkins-backend@0.1.13

Patch Changes

  • Updated dependencies
    • @backstage/catalog-client@0.6.0
    • @backstage/backend-common@0.10.7

## @backstage/plugin-kafka@0.2.28

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7

## @backstage/plugin-kubernetes@0.5.7

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7

## @backstage/plugin-lighthouse@0.2.37

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-newrelic@0.3.16

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

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

Patch Changes

  • 5ca42462b7: Export DashboardSnapshotComponent from new-relic-dashboard-plugin
  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-pagerduty@0.3.25

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

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

Patch Changes

  • b3f3e42036: Use getBearerTokenFromAuthorizationHeader from @backstage/plugin-auth-node instead of the deprecated IdentityClient method.
  • Updated dependencies
    • @backstage/backend-common@0.10.7
    • @backstage/plugin-auth-node@0.1.0
    • @backstage/plugin-permission-node@0.4.3

## @backstage/plugin-permission-node@0.4.3

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7
    • @backstage/plugin-auth-node@0.1.0

## @backstage/plugin-proxy-backend@0.2.18

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7

## @backstage/plugin-rollbar@0.3.26

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-rollbar-backend@0.1.21

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7

## @backstage/plugin-scaffolder@0.12.2

Patch Changes

  • 33e139e652: Adds a loading bar to the scaffolder task page if the task is still loading. This can happen if it takes a while for a task worker to pick up a task.
  • 6458be3307: Encode the formData in the queryString using JSON.stringify to keep the types in the decoded value
  • 319f4b79a2: The ScaffolderPage can be passed an optional TaskPageComponent with a loadingText string. It will replace the Loading text in the scaffolder task page.
  • Updated dependencies
    • @backstage/catalog-client@0.6.0
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14
    • @backstage/integration-react@0.1.21

## @backstage/plugin-scaffolder-backend@0.15.24

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • 2bd5f24043: fix for the gitlab:publish action to use the oauthToken key when creating a
    Gitlab client. This only happens if ctx.input.token is provided else the key token will be used.

  • 898a56578c: Bump vm2 to version 3.9.6

  • Updated dependencies

    • @backstage/catalog-client@0.6.0
    • @backstage/backend-common@0.10.7
    • @backstage/plugin-catalog-backend@0.21.3
    • @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.11

## @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.11

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7
    • @backstage/plugin-scaffolder-backend@0.15.24

## @backstage/plugin-scaffolder-backend-module-rails@0.2.6

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7
    • @backstage/plugin-scaffolder-backend@0.15.24

## @backstage/plugin-scaffolder-backend-module-yeoman@0.1.5

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-backend@0.15.24

## @backstage/plugin-search@0.6.2

Patch Changes

  • faf49ba82f: Modify modal search to clamp result length to 5 rows.
  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-search-backend@0.4.2

Patch Changes

  • b3f3e42036: Use getBearerTokenFromAuthorizationHeader from @backstage/plugin-auth-node instead of the deprecated IdentityClient method.
  • Updated dependencies
    • @backstage/backend-common@0.10.7
    • @backstage/plugin-auth-node@0.1.0
    • @backstage/plugin-permission-node@0.4.3

## @backstage/plugin-search-backend-module-pg@0.2.6

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • Updated dependencies

    • @backstage/backend-common@0.10.7

## @backstage/plugin-sentry@0.3.36

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-shortcuts@0.1.22

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

## @backstage/plugin-sonarqube@0.2.16

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-splunk-on-call@0.3.22

Patch Changes

  • c17be55ffb: Add Splunk On-Call plugin support for a splunk.com/on-call-routing-key annotation. If the splunk.com/on-call-routing-key is provided, the plugin displays a Splunk On-Call card for each of the teams associated with the routing key.
  • 6c6d1c6439: Correct spelling of 'Acknowledge' in tooltip.
  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-tech-insights@0.1.8

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog-react@0.6.14

## @backstage/plugin-tech-insights-backend@0.2.4

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • Updated dependencies

    • @backstage/catalog-client@0.6.0
    • @backstage/backend-common@0.10.7
    • @backstage/plugin-tech-insights-node@0.2.2

## @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.8

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7
    • @backstage/plugin-tech-insights-node@0.2.2

## @backstage/plugin-tech-insights-node@0.2.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7

## @backstage/plugin-tech-radar@0.5.5

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

## @backstage/plugin-techdocs@0.13.3

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8
    • @backstage/plugin-search@0.6.2
    • @backstage/plugin-catalog-react@0.6.14
    • @backstage/plugin-catalog@0.7.12
    • @backstage/integration-react@0.1.21

## @backstage/plugin-techdocs-backend@0.13.3

Patch Changes

  • 2441d1cf59: chore(deps): bump knex from 0.95.6 to 1.0.2

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • Updated dependencies

    • @backstage/catalog-client@0.6.0
    • @backstage/backend-common@0.10.7
    • @backstage/techdocs-common@0.11.7

## @backstage/plugin-todo-backend@0.1.21

Patch Changes

  • Updated dependencies
    • @backstage/catalog-client@0.6.0
    • @backstage/backend-common@0.10.7

## @backstage/plugin-user-settings@0.3.19

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

## @backstage/plugin-xcmetrics@0.2.18

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8

## example-app@0.2.64

Patch Changes

  • Updated dependencies
    • @backstage/cli@0.13.2
    • @backstage/plugin-todo@0.2.0
    • @backstage/plugin-newrelic-dashboard@0.1.6
    • @backstage/core-components@0.8.8
    • @backstage/plugin-scaffolder@0.12.2
    • @backstage/plugin-search@0.6.2
    • @backstage/plugin-catalog-react@0.6.14
    • @backstage/plugin-catalog@0.7.12
    • @backstage/plugin-catalog-graph@0.2.10
    • @backstage/plugin-catalog-import@0.8.1
    • @backstage/plugin-home@0.4.14
    • @backstage/app-defaults@0.1.7
    • @backstage/integration-react@0.1.21
    • @backstage/plugin-airbrake@0.1.3
    • @backstage/plugin-apache-airflow@0.1.6
    • @backstage/plugin-api-docs@0.7.2
    • @backstage/plugin-azure-devops@0.1.14
    • @backstage/plugin-badges@0.2.22
    • @backstage/plugin-circleci@0.2.37
    • @backstage/plugin-cloudbuild@0.2.35
    • @backstage/plugin-code-coverage@0.1.25
    • @backstage/plugin-cost-insights@0.11.20
    • @backstage/plugin-explore@0.3.29
    • @backstage/plugin-gcp-projects@0.3.17
    • @backstage/plugin-github-actions@0.4.35
    • @backstage/plugin-gocd@0.1.4
    • @backstage/plugin-graphiql@0.2.30
    • @backstage/plugin-jenkins@0.5.20
    • @backstage/plugin-kafka@0.2.28
    • @backstage/plugin-kubernetes@0.5.7
    • @backstage/plugin-lighthouse@0.2.37
    • @backstage/plugin-newrelic@0.3.16
    • @backstage/plugin-pagerduty@0.3.25
    • @backstage/plugin-rollbar@0.3.26
    • @backstage/plugin-sentry@0.3.36
    • @backstage/plugin-shortcuts@0.1.22
    • @backstage/plugin-tech-insights@0.1.8
    • @backstage/plugin-tech-radar@0.5.5
    • @backstage/plugin-techdocs@0.13.3
    • @backstage/plugin-user-settings@0.3.19

## example-backend@0.2.64

Patch Changes

  • Updated dependencies
    • @backstage/catalog-client@0.6.0
    • @backstage/plugin-auth-backend@0.10.0
    • @backstage/backend-common@0.10.7
    • @backstage/backend-tasks@0.1.6
    • @backstage/plugin-app-backend@0.3.24
    • @backstage/plugin-catalog-backend@0.21.3
    • @backstage/plugin-code-coverage-backend@0.1.22
    • @backstage/plugin-scaffolder-backend@0.15.24
    • @backstage/plugin-search-backend-module-pg@0.2.6
    • @backstage/plugin-tech-insights-backend@0.2.4
    • @backstage/plugin-techdocs-backend@0.13.3
    • @backstage/plugin-auth-node@0.1.0
    • @backstage/plugin-permission-backend@0.4.3
    • @backstage/plugin-search-backend@0.4.2
    • @backstage/plugin-badges-backend@0.1.18
    • @backstage/plugin-jenkins-backend@0.1.13
    • @backstage/plugin-todo-backend@0.1.21
    • @backstage/plugin-permission-node@0.4.3
    • example-app@0.2.64
    • @backstage/plugin-azure-devops-backend@0.3.3
    • @backstage/plugin-graphql-backend@0.1.14
    • @backstage/plugin-kafka-backend@0.2.17
    • @backstage/plugin-kubernetes-backend@0.4.7
    • @backstage/plugin-proxy-backend@0.2.18
    • @backstage/plugin-rollbar-backend@0.1.21
    • @backstage/plugin-scaffolder-backend-module-rails@0.2.6
    • @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.8
    • @backstage/plugin-tech-insights-node@0.2.2

## techdocs-cli-embedded-app@0.2.63

Patch Changes

  • Updated dependencies
    • @backstage/cli@0.13.2
    • @backstage/core-components@0.8.8
    • @backstage/plugin-catalog@0.7.12
    • @backstage/app-defaults@0.1.7
    • @backstage/integration-react@0.1.21
    • @backstage/plugin-techdocs@0.13.3

Details

date
Feb. 10, 2022, 12:55 p.m.
name
v0.67.0
type
Minor
👇
Register or login to:
  • 🔍View and search all Backstage releases.
  • 🛠️Create and share lists to track your tools.
  • 🚨Setup notifications for major, security, feature or patch updates.
  • 🚀Much more coming soon!
Continue with GitHub
Continue with Google
or