github backstage/backstage v0.67.0-next.0

latest releases: v1.25.0, v1.24.2, v1.24.1...
pre-release2 years ago

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

Minor Changes

  • 08fcda1: The callbackUrl option of OAuthAdapter is now required.

Patch Changes

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

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • 3396bc5: Enabled refresh for the Atlassian provider.

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

  • Updated dependencies

    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-todo@0.2.0-next.0

Minor Changes

  • 323f487: 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-next.0
    • @backstage/plugin-catalog-react@0.6.14-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/backend-common@0.10.7-next.0

Patch Changes

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

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

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

  • c386845: Removed unnecessary get-port dependency

@backstage/backend-tasks@0.1.6-next.0

Patch Changes

  • 2441d1c: 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-next.0

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

Patch Changes

  • 2441d1c: 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-next.0
    • @backstage/backend-common@0.10.7-next.0

@backstage/cli@0.13.2-next.0

Patch Changes

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

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

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

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

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

  • fae2aee: 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:

      'import/no-duplicates': 'warn'
  • b906f98: 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.

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

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

@backstage/codemods@0.1.33-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

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

Patch Changes

  • 8d785a0: chore: bump ansi-regex from 5.0.1 to 6.0.1
  • f2dfbd3: 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.
  • d62bdb7: The ErrorPage now falls back to using the default support configuration if the ConfigApi is not available.

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

Patch Changes

  • 22f4ecb: 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:

       "dependencies": {
    -    "app": "file:../app",
    +    "app": "link:../app",
         "@backstage/backend-common": "^{{version '@backstage/backend-common'}}",
  • 1dd5a02: 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.

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

    -    "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-next.0

Patch Changes

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

@backstage/integration-react@0.1.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@techdocs/cli@0.8.13-next.0

Patch Changes

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

@backstage/techdocs-common@0.11.7-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-airbrake@0.1.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-allure@0.1.14-next.0

Patch Changes

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

@backstage/plugin-analytics-module-ga@0.1.9-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-apache-airflow@0.1.6-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

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

Patch Changes

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

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

Patch Changes

  • 2441d1c: 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-next.0

@backstage/plugin-azure-devops@0.1.14-next.0

Patch Changes

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

@backstage/plugin-azure-devops-backend@0.3.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-badges@0.2.22-next.0

Patch Changes

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

@backstage/plugin-badges-backend@0.1.18-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-bazaar@0.1.13-next.0

Patch Changes

  • Updated dependencies
    • @backstage/cli@0.13.2-next.0
    • @backstage/core-components@0.8.8-next.0
    • @backstage/plugin-catalog-react@0.6.14-next.0
    • @backstage/plugin-catalog@0.7.12-next.0

@backstage/plugin-bazaar-backend@0.1.9-next.0

Patch Changes

  • 2441d1c: 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-next.0
    • @backstage/backend-test-utils@0.1.17-next.0

@backstage/plugin-bitrise@0.1.25-next.0

Patch Changes

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

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

Patch Changes

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

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

Patch Changes

  • 2441d1c: 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-next.0
    • @backstage/plugin-permission-node@0.4.3-next.0

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

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@0.21.3-next.0

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

Patch Changes

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

@backstage/plugin-catalog-graph@0.2.10-next.0

Patch Changes

  • 7bb1bde: Minor API cleanups
  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0
    • @backstage/plugin-catalog-react@0.6.14-next.0

@backstage/plugin-catalog-import@0.8.1-next.0

Patch Changes

  • 7bb1bde: Minor API cleanups
  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0
    • @backstage/plugin-catalog-react@0.6.14-next.0
    • @backstage/integration-react@0.1.21-next.0

@backstage/plugin-catalog-react@0.6.14-next.0

Patch Changes

  • 680e7c7: 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.
  • 7bb1bde: Minor API cleanups
  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-circleci@0.2.37-next.0

Patch Changes

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

@backstage/plugin-cloudbuild@0.2.35-next.0

Patch Changes

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

@backstage/plugin-code-coverage@0.1.25-next.0

Patch Changes

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

@backstage/plugin-code-coverage-backend@0.1.22-next.0

Patch Changes

  • 2441d1c: 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-next.0

@backstage/plugin-config-schema@0.1.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-cost-insights@0.11.20-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-explore@0.3.29-next.0

Patch Changes

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

@backstage/plugin-firehydrant@0.1.15-next.0

Patch Changes

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

@backstage/plugin-fossa@0.2.30-next.0

Patch Changes

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

@backstage/plugin-gcp-projects@0.3.17-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-git-release-manager@0.3.11-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-github-actions@0.4.35-next.0

Patch Changes

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

@backstage/plugin-github-deployments@0.1.29-next.0

Patch Changes

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

@backstage/plugin-gitops-profiles@0.3.16-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-gocd@0.1.4-next.0

Patch Changes

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

@backstage/plugin-graphiql@0.2.30-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-graphql-backend@0.1.14-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-home@0.4.14-next.0

Patch Changes

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

@backstage/plugin-ilert@0.1.24-next.0

Patch Changes

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

@backstage/plugin-jenkins@0.5.20-next.0

Patch Changes

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

@backstage/plugin-jenkins-backend@0.1.13-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-kafka@0.2.28-next.0

Patch Changes

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

@backstage/plugin-kafka-backend@0.2.17-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-kubernetes@0.5.7-next.0

Patch Changes

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

@backstage/plugin-kubernetes-backend@0.4.7-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-lighthouse@0.2.37-next.0

Patch Changes

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

@backstage/plugin-newrelic@0.3.16-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-newrelic-dashboard@0.1.6-next.0

Patch Changes

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

@backstage/plugin-org@0.4.2-next.0

Patch Changes

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

@backstage/plugin-pagerduty@0.3.25-next.0

Patch Changes

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

@backstage/plugin-permission-backend@0.4.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.10.0-next.0
    • @backstage/backend-common@0.10.7-next.0
    • @backstage/plugin-permission-node@0.4.3-next.0

@backstage/plugin-permission-node@0.4.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.10.0-next.0
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-proxy-backend@0.2.18-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-rollbar@0.3.26-next.0

Patch Changes

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

@backstage/plugin-rollbar-backend@0.1.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-scaffolder@0.12.2-next.0

Patch Changes

  • 33e139e: 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.
  • 6458be3: Encode the formData in the queryString using JSON.stringify to keep the types in the decoded value
  • 319f4b7: 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/core-components@0.8.8-next.0
    • @backstage/plugin-catalog-react@0.6.14-next.0
    • @backstage/integration-react@0.1.21-next.0

@backstage/plugin-scaffolder-backend@0.15.24-next.0

Patch Changes

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

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • 2bd5f24: 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.

  • Updated dependencies

    • @backstage/backend-common@0.10.7-next.0
    • @backstage/plugin-catalog-backend@0.21.3-next.0
    • @backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.11-next.0

@backstage/plugin-scaffolder-backend-module-cookiecutter@0.1.11-next.0

Patch Changes

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

@backstage/plugin-scaffolder-backend-module-rails@0.2.6-next.0

Patch Changes

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

@backstage/plugin-scaffolder-backend-module-yeoman@0.1.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-scaffolder-backend@0.15.24-next.0

@backstage/plugin-search@0.6.2-next.0

Patch Changes

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

@backstage/plugin-search-backend@0.4.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend@0.10.0-next.0
    • @backstage/backend-common@0.10.7-next.0
    • @backstage/plugin-permission-node@0.4.3-next.0

@backstage/plugin-search-backend-module-pg@0.2.6-next.0

Patch Changes

  • 2441d1c: 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-next.0

@backstage/plugin-sentry@0.3.36-next.0

Patch Changes

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

@backstage/plugin-shortcuts@0.1.22-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-sonarqube@0.2.16-next.0

Patch Changes

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

@backstage/plugin-splunk-on-call@0.3.22-next.0

Patch Changes

  • 6c6d1c6: Correct spelling of 'Acknowledge' in tooltip.
  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0
    • @backstage/plugin-catalog-react@0.6.14-next.0

@backstage/plugin-tech-insights@0.1.8-next.0

Patch Changes

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

@backstage/plugin-tech-insights-backend@0.2.4-next.0

Patch Changes

  • 2441d1c: 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-next.0
    • @backstage/plugin-tech-insights-node@0.2.2-next.0

@backstage/plugin-tech-insights-backend-module-jsonfc@0.1.8-next.0

Patch Changes

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

@backstage/plugin-tech-insights-node@0.2.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-tech-radar@0.5.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-techdocs@0.13.3-next.0

Patch Changes

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

@backstage/plugin-techdocs-backend@0.13.3-next.0

Patch Changes

  • 2441d1c: 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-next.0
    • @backstage/techdocs-common@0.11.7-next.0

@backstage/plugin-todo-backend@0.1.21-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

@backstage/plugin-user-settings@0.3.19-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

@backstage/plugin-xcmetrics@0.2.18-next.0

Patch Changes

  • Updated dependencies
    • @backstage/core-components@0.8.8-next.0

example-app@0.2.64-next.0

Patch Changes

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

example-backend@0.2.64-next.0

Patch Changes

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

techdocs-cli-embedded-app@0.2.63-next.0

Patch Changes

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

Don't miss a new backstage release

NewReleases is sending notifications on new releases.