Backstage - v0.66.0


@backstage/plugin-auth-backend@0.9.0

Minor Changes

  • cef64b1561: BREAKING Added tokenManager as a required property for the auth-backend createRouter function. This dependency is used to issue server tokens that are used by the CatalogIdentityClient when looking up users and their group membership during authentication.

    These changes are required to packages/backend/src/plugins/auth.ts:

    diff export default async function createPlugin({ logger, database, config, discovery, + tokenManager, }: PluginEnvironment): Promise<Router> { return await createRouter({ logger, config, database, discovery, + tokenManager, }); }

    BREAKING The CatalogIdentityClient constructor now expects a TokenManager instead of a TokenIssuer. The TokenManager interface is used to generate a server token when resolving a user's identity and membership through the catalog. Using server tokens for these requests allows the auth-backend to bypass authorization checks when permissions are enabled for Backstage. This change will break apps that rely on the user tokens that were previously used by the client. Refer to the "Backend-to-backend Authentication" tutorial for more information on server token usage.

Patch Changes

  • 9d75a939b6: Fixed a bug where providers that tracked the granted scopes through a cookie would not take failed authentication attempts into account.
  • 28a5f9d0b1: chore(deps): bump passport from 0.4.1 to 0.5.2
  • 5d09bdd1de: Added custom callbackUrl support for multiple providers. v0.8.0 introduced this change for github, and now we're adding the same capability to the following providers: atlassian, auth0, bitbucket, gitlab, google, microsoft, oauth2, oidc, okta, onelogin.
  • 648606b3ac: Added support for storing static GitHub access tokens in cookies and using them to refresh the Backstage session.
  • Updated dependencies
    • @backstage/backend-common@0.10.6

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

Minor Changes

  • 2e8764b95f: Make filename, branch name and examples URLs used in catalog import customizable.

    Catalog backend ingestion loop can be already configured to fetch targets with custom catalog filename (other than catalog-info.yaml). It's now possible to customize said filename and branch name used in pull requests created by catalog import flow too. This allows organizations to further customize Backstage experience and to better reflect their branding.

    Filename (default: catalog-info.yaml) and branch name (default: backstage-integration) used in pull requests can be configured in app-config.yaml as follows:

    ```yaml
    // app-config.yaml

    catalog:
    import:
    entityFilename: anvil.yaml
    pullRequestBranchName: anvil-integration
    ```

    Following React components have also been updated to accept optional props for providing example entity and repository paths:

    tsx <StepInitAnalyzeUrl ... exampleLocationUrl="https://github.com/acme-corp/our-awesome-api/blob/main/anvil.yaml" />

    tsx <ImportInfoCard exampleLocationUrl="https://github.com/acme-corp/our-awesome-api/blob/main/anvil.yaml" exampleRepositoryUrl="https://github.com/acme-corp/our-awesome-api" />

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13
    • @backstage/integration-react@0.1.20

## @backstage/app-defaults@0.1.6

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/core-app-api@0.5.2

## @backstage/backend-common@0.10.6

Patch Changes

  • 50d039577a: Added a Context type for the backend, that can propagate an abort signal, a
    deadline, and contextual values through the call stack. The main entrypoint is
    the Contexts utility class that provides a root context creator and commonly
    used decorators.

    These are marked as @alpha for now, and are therefore only accessible via
    @backstage/backend-common/alpha.

## @backstage/backend-tasks@0.1.5

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/cli@0.13.1
    • @backstage/backend-common@0.10.6

## @backstage/cli@0.13.1

Patch Changes

  • 5bd0ce9e62: chore(deps): bump inquirer from 7.3.3 to 8.2.0
  • 80f510caee: Log warning if unable to parse yarn.lock

## @backstage/codemods@0.1.32

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/core-app-api@0.5.2

## @backstage/core-app-api@0.5.2

Patch Changes

  • 40775bd263: Switched out the GithubAuth implementation to use the common OAuth2 implementation. This relies on the simultaneous change in @backstage/plugin-auth-backend that enabled access token storage in cookies rather than the current solution that's based on LocalStorage.

    NOTE: Make sure you upgrade the auth-backend deployment before or at the same time as you deploy this change.

## @backstage/core-components@0.8.7

Patch Changes

  • f7257dff6f: The <Link /> component now accepts a noTrack prop, which prevents the click event from being captured by the Analytics API. This can be used if tracking is explicitly not warranted, or in order to use custom link tracking in specific situations.
  • 4c773ed25c: Change subtitle of Header style to use palette.bursts.fontColor
  • f465b63b7f: Fix an issue where changes related to the MobileSidebar prevented scrolling pages. Additionally improve the menu of the MobileSidebar to not overlay the BottomNavigation.
  • 064e750a50: Adding hover message to the Gauge and an info icon to the GaugeCard.
  • a681cb9c2f: Make linkTarget configurable for MarkdownContent component

## @backstage/create-app@0.4.18

Patch Changes

  • 5bd0ce9e62: chore(deps): bump inquirer from 7.3.3 to 8.2.0

  • f27f5197e2: Apply the fix from 0.4.16, which is part of the v0.65.1 release of Backstage.

  • 2687029a67: Update backend-to-backend auth link in configuration file comment

  • 24ef62048c: Adds missing /catalog-graph route to <CatalogGraphPage/>.

    To fix this problem for a recently created app please update your app/src/App.tsx

    ```diff
    + import { CatalogGraphPage } from '@backstage/plugin-catalog-graph';

    ... omitted ...


    } />
    + } />

    ```

  • ba59832aed: Permission the catalog-import route

    The following changes are required if you intend to add permissions to your existing app.

    Use the PermissionedRoute for CatalogImportPage instead of the normal Route:

    ```diff
    // packages/app/src/App.tsx
    ...
    + import { PermissionedRoute } from '@backstage/plugin-permission-react';
    + import { catalogEntityCreatePermission } from '@backstage/plugin-catalog-common';

    ...

    • } />
    • <PermissionedRoute
    • path="/catalog-import"
    • permission={catalogEntityCreatePermission}
    • element={}
    • />
      ```
  • cef64b1561: Added tokenManager as a required property for the auth-backend createRouter function. This dependency is used to issue server tokens that are used by the CatalogIdentityClient when looking up users and their group membership during authentication.

    These changes are required to packages/backend/src/plugins/auth.ts:

    diff export default async function createPlugin({ logger, database, config, discovery, + tokenManager, }: PluginEnvironment): Promise<Router> { return await createRouter({ logger, config, database, discovery, + tokenManager, }); }

  • e39d88bd84: Switched the app dependency in the backend to use a file target rather than version.

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

    diff "dependencies": { - "app": "0.0.0", + "app": "file:../app",

## @backstage/dev-utils@0.2.20

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13
    • @backstage/integration-react@0.1.20
    • @backstage/core-app-api@0.5.2
    • @backstage/app-defaults@0.1.6
    • @backstage/test-utils@0.2.4

## @backstage/integration-react@0.1.20

Patch Changes

  • cee44ad289: Added the ability to collect users oauth token from the RepoUrlPicker for use in the template manifest
  • Updated dependencies
    • @backstage/core-components@0.8.7

## @techdocs/cli@0.8.12

Patch Changes

  • 14472509a3: Use a local file dependency for embedded-techdocs-app, to ensure that it's always pulled out of the workspace
  • Updated dependencies
    • @backstage/backend-common@0.10.6
    • @backstage/techdocs-common@0.11.6

## @backstage/techdocs-common@0.11.6

Patch Changes

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

## @backstage/test-utils@0.2.4

Patch Changes

  • Updated dependencies
    • @backstage/core-app-api@0.5.2

## @backstage/plugin-airbrake@0.1.2

Patch Changes

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

## @backstage/plugin-allure@0.1.13

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

  • b40a0ccc4d: Added the ability to capture and set user IDs from Backstage's identityApi. For full instructions on how to
    set this up, see the User ID section of its README
  • Updated dependencies
    • @backstage/core-components@0.8.7

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

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13
    • @backstage/plugin-catalog@0.7.11

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

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

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

## @backstage/plugin-badges@0.2.21

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

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

## @backstage/plugin-bazaar@0.1.12

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13
    • @backstage/cli@0.13.1
    • @backstage/plugin-catalog@0.7.11

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.6
    • @backstage/backend-test-utils@0.1.16

## @backstage/plugin-bitrise@0.1.24

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

## @backstage/plugin-catalog@0.7.11

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13
    • @backstage/plugin-catalog-common@0.1.2
    • @backstage/integration-react@0.1.20

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

Patch Changes

  • fac5f112b4: chore(deps): bump prom-client from 13.2.0 to 14.0.1
  • 5bbffa60be: Pass authorization token to location service inside location api routes
  • Updated dependencies
    • @backstage/plugin-catalog-common@0.1.2
    • @backstage/backend-common@0.10.6
    • @backstage/plugin-permission-node@0.4.2

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

Patch Changes

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

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

Patch Changes

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

## @backstage/plugin-catalog-common@0.1.2

Patch Changes

  • ba59832aed: Adds new catalogEntityCreatePermission which can be imported and used when authoring a permission policy to restrict/grant a user's access to the catalog import plugin. (And the "Register Existing Component" button which navigates there).

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

  • f7257dff6f: The <Link /> component now accepts a noTrack prop, which prevents the click event from being captured by the Analytics API. This can be used if tracking is explicitly not warranted, or in order to use custom link tracking in specific situations.

  • 300f8cdaee: Fix bug: previously the filter would be set to "all" on page load, even if the
    initiallySelectedFilter on the DefaultCatalogPage was set to something else,
    or a different query parameter was supplied. Now, the prop and query parameters
    control the filter as expected. Additionally, after this change any filters
    which match 0 items will be disabled, and the filter will be reverted to 'all'
    if they're set on page load.

  • 6acc8f7db7: Add caching to the useEntityPermission hook

    The hook now caches the authorization decision based on the permission + the entity, and returns the cache match value as the default allowed value while loading. This helps avoid flicker in UI elements that would be conditionally rendered based on the allowed result of this hook.

  • Updated dependencies

    • @backstage/core-components@0.8.7

## @backstage/plugin-circleci@0.2.36

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

## @backstage/plugin-cloudbuild@0.2.34

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

  • 2ce5e4e0a7: Fixed a bug in the FileExplorer component which made it impossible to navigate upwards to a containing folder by clicking on the folder breadcrumb.
  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

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

## @backstage/plugin-explore@0.3.28

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

## @backstage/plugin-firehydrant@0.1.14

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

## @backstage/plugin-fossa@0.2.29

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13
    • @backstage/integration-react@0.1.20

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

Patch Changes

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

## @backstage/plugin-gocd@0.1.3

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

## @backstage/plugin-graphiql@0.2.29

Patch Changes

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

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

Patch Changes

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

## @backstage/plugin-home@0.4.13

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-search@0.6.1

## @backstage/plugin-ilert@0.1.23

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

## @backstage/plugin-jenkins@0.5.19

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

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

## @backstage/plugin-kafka@0.2.27

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

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

## @backstage/plugin-kubernetes@0.5.6

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

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

## @backstage/plugin-lighthouse@0.2.36

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

## @backstage/plugin-newrelic@0.3.15

Patch Changes

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

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

## @backstage/plugin-org@0.4.1

Patch Changes

  • ef86143c16: Added relations.memberof filter to the catalog api call in MemberListCard to avoid fetching all the User entity kinds from catalog-backend.
  • 64cbca7839: The description from metadata.description will now show as the subheader on the UserProfileCard in the same way as the GroupProfileCard
  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

## @backstage/plugin-pagerduty@0.3.24

Patch Changes

  • 5a459626bc: Fix change events tab error when change events exist
  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.9.0
    • @backstage/backend-common@0.10.6
    • @backstage/plugin-permission-node@0.4.2

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.9.0
    • @backstage/backend-common@0.10.6

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

Patch Changes

  • 332d3decb2: Adds a new option skipInvalidTargets for the proxy createRouter which allows the proxy backend to be started with an invalid proxy configuration. If configured, it will simply skip the failed proxy and mount the other valid proxies.

    To configure it to pass by failing proxies:

    const router = await createRouter({
      config,
      logger,
      discovery,
      skipInvalidProxies: true,
    });
    

    If you would like it to fail if a proxy is configured badly:

    const router = await createRouter({
      config,
      logger,
      discovery,
    });
    
  • Updated dependencies

    • @backstage/backend-common@0.10.6

## @backstage/plugin-rollbar@0.3.25

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

  • 91faf87aaf: chore(deps): bump camelcase-keys from 6.2.2 to 7.0.1
  • Updated dependencies
    • @backstage/backend-common@0.10.6

## @backstage/plugin-scaffolder@0.12.1

Patch Changes

  • ba59832aed: Permission the Register Existing Component button
  • cee44ad289: Added the ability to collect users oauth token from the RepoUrlPicker for use in the template manifest
  • a681cb9c2f: Make linkTarget configurable for MarkdownContent component
  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13
    • @backstage/plugin-catalog-common@0.1.2
    • @backstage/integration-react@0.1.20

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

Patch Changes

  • 2e0dbb0e50: Migrate from deprecated package @octokit/rest to octokit
  • c95df1631e: Added support for templating secrets into actions input, and also added an extra token input argument to all publishers to provide a token that would override the integrations.config.
    You can find more information over at Writing Templates
  • Updated dependencies
    • @backstage/plugin-catalog-backend@0.21.2
    • @backstage/backend-common@0.10.6
    • @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.10

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-backend@0.15.23
    • @backstage/backend-common@0.10.6

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-backend@0.15.23
    • @backstage/backend-common@0.10.6

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

Patch Changes

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

## @backstage/plugin-search@0.6.1

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.9.0
    • @backstage/backend-common@0.10.6
    • @backstage/plugin-permission-node@0.4.2

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

Patch Changes

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

## @backstage/plugin-sentry@0.3.35

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

## @backstage/plugin-shortcuts@0.1.21

Patch Changes

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

## @backstage/plugin-sonarqube@0.2.15

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.6
    • @backstage/plugin-tech-insights-node@0.2.1

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

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.6
    • @backstage/plugin-tech-insights-node@0.2.1

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

Patch Changes

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

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

Patch Changes

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

## @backstage/plugin-techdocs@0.13.2

Patch Changes

  • 742434a6ba: Fixed a bug where links to files within a TechDocs site that use the download attribute would result in a 404 in cases where the TechDocs backend and Backstage frontend application are on the same host.
  • 359c31e31d: Added support for documentation using the raw <source> tag to point to relative resources like audio or video files.
  • 18317a08db: Fixed a bug where copy-to-clipboard buttons were appended to unintended elements.
  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13
    • @backstage/integration-react@0.1.20
    • @backstage/plugin-catalog@0.7.11
    • @backstage/plugin-search@0.6.1

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-common@0.1.2
    • @backstage/backend-common@0.10.6
    • @backstage/techdocs-common@0.11.6

## @backstage/plugin-todo@0.1.21

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13

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

Patch Changes

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

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

Patch Changes

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

## @backstage/plugin-xcmetrics@0.2.17

Patch Changes

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

## example-app@0.2.63

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/plugin-catalog-react@0.6.13
    • @backstage/plugin-code-coverage@0.1.24
    • @backstage/plugin-catalog-common@0.1.2
    • @backstage/cli@0.13.1
    • @backstage/plugin-scaffolder@0.12.1
    • @backstage/integration-react@0.1.20
    • @backstage/plugin-org@0.4.1
    • @backstage/plugin-pagerduty@0.3.24
    • @backstage/plugin-catalog-import@0.8.0
    • @backstage/core-app-api@0.5.2
    • @backstage/plugin-techdocs@0.13.2
    • @backstage/app-defaults@0.1.6
    • @backstage/plugin-airbrake@0.1.2
    • @backstage/plugin-apache-airflow@0.1.5
    • @backstage/plugin-api-docs@0.7.1
    • @backstage/plugin-azure-devops@0.1.13
    • @backstage/plugin-badges@0.2.21
    • @backstage/plugin-catalog@0.7.11
    • @backstage/plugin-catalog-graph@0.2.9
    • @backstage/plugin-circleci@0.2.36
    • @backstage/plugin-cloudbuild@0.2.34
    • @backstage/plugin-cost-insights@0.11.19
    • @backstage/plugin-explore@0.3.28
    • @backstage/plugin-gcp-projects@0.3.16
    • @backstage/plugin-github-actions@0.4.34
    • @backstage/plugin-gocd@0.1.3
    • @backstage/plugin-graphiql@0.2.29
    • @backstage/plugin-home@0.4.13
    • @backstage/plugin-jenkins@0.5.19
    • @backstage/plugin-kafka@0.2.27
    • @backstage/plugin-kubernetes@0.5.6
    • @backstage/plugin-lighthouse@0.2.36
    • @backstage/plugin-newrelic@0.3.15
    • @backstage/plugin-newrelic-dashboard@0.1.5
    • @backstage/plugin-rollbar@0.3.25
    • @backstage/plugin-search@0.6.1
    • @backstage/plugin-sentry@0.3.35
    • @backstage/plugin-shortcuts@0.1.21
    • @backstage/plugin-tech-insights@0.1.7
    • @backstage/plugin-tech-radar@0.5.4
    • @backstage/plugin-todo@0.1.21
    • @backstage/plugin-user-settings@0.3.18

## example-backend@0.2.63

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.9.0
    • @backstage/plugin-rollbar-backend@0.1.20
    • @backstage/plugin-catalog-backend@0.21.2
    • @backstage/plugin-scaffolder-backend@0.15.23
    • @backstage/plugin-proxy-backend@0.2.17
    • @backstage/backend-common@0.10.6
    • example-app@0.2.63
    • @backstage/backend-tasks@0.1.5
    • @backstage/plugin-app-backend@0.3.23
    • @backstage/plugin-azure-devops-backend@0.3.2
    • @backstage/plugin-badges-backend@0.1.17
    • @backstage/plugin-code-coverage-backend@0.1.21
    • @backstage/plugin-graphql-backend@0.1.13
    • @backstage/plugin-jenkins-backend@0.1.12
    • @backstage/plugin-kafka-backend@0.2.16
    • @backstage/plugin-kubernetes-backend@0.4.6
    • @backstage/plugin-permission-backend@0.4.2
    • @backstage/plugin-permission-node@0.4.2
    • @backstage/plugin-scaffolder-backend-module-rails@0.2.5
    • @backstage/plugin-search-backend@0.4.1
    • @backstage/plugin-search-backend-module-pg@0.2.5
    • @backstage/plugin-tech-insights-backend@0.2.3
    • @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.7
    • @backstage/plugin-tech-insights-node@0.2.1
    • @backstage/plugin-techdocs-backend@0.13.2
    • @backstage/plugin-todo-backend@0.1.20

## embedded-techdocs-app@0.2.62

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.7
    • @backstage/cli@0.13.1
    • @backstage/integration-react@0.1.20
    • @backstage/core-app-api@0.5.2
    • @backstage/plugin-techdocs@0.13.2
    • @backstage/app-defaults@0.1.6
    • @backstage/test-utils@0.2.4
    • @backstage/plugin-catalog@0.7.11

Details

date
Feb. 3, 2022, 12:01 p.m.
name
v0.66.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