github backstage/backstage v0.50.0

latest releases: v1.27.0-next.1, v1.26.4, v1.27.0-next.0...
2 years ago

@backstage/catalog-client@0.5.0

Minor Changes

  • bb0f6b8: Updates the <EntitySwitch if={asyncMethod}/> to accept asynchronous if functions.

    Adds the new getEntityAncestors method to CatalogClient.

    Updates the <EntityProcessingErrorsPanel /> to make use of the ancestry endpoint to display errors for entities further up the ancestry tree. This makes it easier to discover issues where for example the origin location has been removed or malformed.

    hasCatalogProcessingErrors() is now changed to be asynchronous so any calls outside the already established entitySwitch need to be awaited.

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@0.9.4

@backstage/plugin-catalog@0.7.0

Minor Changes

  • bb0f6b8: Updates the <EntitySwitch if={asyncMethod}/> to accept asynchronous if functions.

    Adds the new getEntityAncestors method to CatalogClient.

    Updates the <EntityProcessingErrorsPanel /> to make use of the ancestry endpoint to display errors for entities further up the ancestry tree. This makes it easier to discover issues where for example the origin location has been removed or malformed.

    hasCatalogProcessingErrors() is now changed to be asynchronous so any calls outside the already established entitySwitch need to be awaited.

Patch Changes

  • 5aae9bb: Name column will now render entity metadata.title if its present
  • 1c5c5b2: Replace deprecated material UI components used by LinksCard to remove errors from console log
  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4
    • @backstage/catalog-client@0.5.0

@backstage/plugin-catalog-backend@0.16.0

Minor Changes

  • 2c5bab2: Errors emitted from processors are now considered a failure during entity processing and will prevent entities from being updated. The impact of this change is that when errors are emitted while for example reading a location, then ingestion effectively stops there. If you emit a number of entities along with just one error, then the error will be persisted on the current entity but the emitted entities will not be stored. This fixes a bug where entities would get marked as orphaned rather than put in an error state when the catalog failed to read a location.

    In previous versions of the catalog, an emitted error was treated as a less severe problem than an exception thrown by the processor. We are now ensuring that the behavior is consistent for these two cases. Even though both thrown and emitted errors are treated the same, emitted errors stay around as they allow you to highlight multiple errors related to an entity at once. An emitted error will also only prevent the writing of the processing result, while a thrown error will skip the rest of the processing steps.

Patch Changes

  • 957e4b3: Updated dependencies

  • f66c381: Avoid duplicate logging of entity processing errors.

  • 426d503: A number of classes and types, that were part of the old catalog engine implementation, are now formally marked as deprecated. They will be removed entirely from the code base in a future release.

    After upgrading to this version, it is recommended that you take a look inside your packages/backend/src/plugins/catalog.ts file (using a code editor), to see if you are using any functionality that it marks as deprecated. If you do, please migrate away from it at your earliest convenience.

    Migrating to using the new engine implementation is typically a matter of calling CatalogBuilder.create({ ... }) instead of new CatalogBuilder({ ... }).

    If you are seeing deprecation warnings for createRouter, you can either use the router field from the return value from updated catalog builder, or temporarily call createNextRouter. The latter will however also be deprecated at a later time.

  • 7b78dd1: Replace slash stripping regexp with trimEnd to remove CodeQL warning

  • Updated dependencies

    • @backstage/catalog-model@0.9.4
    • @backstage/backend-common@0.9.6
    • @backstage/catalog-client@0.5.0
    • @backstage/integration@0.6.7

@backstage/plugin-git-release-manager@0.3.0

Minor Changes

  • 6c31833: Errors caused while patching can leave the release branch in a broken state. Most commonly caused due to merge errors.

    This has been solved by introducing a dry run prior to patching the release branch. The dry run will attempt to cherry pick the selected patch commit onto a temporary branch created off of the release branch. If it succeeds, the temporary branch is deleted and the patch is applied on the release branch

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/integration@0.6.7

@backstage/backend-common@0.9.6

Patch Changes

  • 8f969d5: Correct error message typo

  • a31afc5: Replace slash stripping regexp with trimEnd to remove CodeQL warning

  • d705528: Add glob patterns support to config CORS options. It's possible to send patterns like:

    backend:
      cors:
        origin:
          - https://*.my-domain.com
          - http://localhost:700[0-9]
          - https://sub-domain-+([0-9]).my-domain.com
  • Updated dependencies

    • @backstage/config-loader@0.6.10
    • @backstage/integration@0.6.7
    • @backstage/cli-common@0.1.4

@backstage/catalog-model@0.9.4

Patch Changes

  • 957e4b3: Updated dependencies
  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.

@backstage/cli@0.7.15

Patch Changes

  • ae4680b: The create-plugin command now passes the extension name via the name key
    in createRoutableExtension() calls in newly created plugins.
  • df1242f: Adding --inspect-brk as an option when debugging backend for development
  • c7f2a23: When creating a backend plugin with --backend flag, don't add -backend if it's already suffixed
  • 185fec5: The default jest configuration used by the test command now supports yarn workspaces. By running backstage-cli test in the root of a monorepo, all packages will now automatically be included in the test suite and it will run just like it does within a package. Each package in the monorepo will still use its own local jest configuration, and only packages that have backstage-cli test in the test script within package.json will be included.
  • Updated dependencies
    • @backstage/config-loader@0.6.10
    • @backstage/cli-common@0.1.4

@backstage/cli-common@0.1.4

Patch Changes

  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.

@backstage/codemods@0.1.17

Patch Changes

  • 7dee4db: build(deps): bump jscodeshift from 0.12.0 to 0.13.0

  • 903dbde: Added an extension-names codemod, which adds a name key to all extensions
    provided by plugins. Extension names are used to provide richer context to
    events captured by the new Analytics API, and may also appear in debug output
    and other situations.

    To apply this codemod, run npx @backstage/codemods apply extension-names in
    the root of your Backstage monorepo.

  • Updated dependencies

    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/core-app-api@0.1.16
    • @backstage/cli-common@0.1.4

@backstage/config-loader@0.6.10

Patch Changes

  • 957e4b3: Updated dependencies
  • Updated dependencies
    • @backstage/cli-common@0.1.4

@backstage/core-app-api@0.1.16

Patch Changes

  • d9fd798: The Core App API now automatically instruments all route location changes using
    the new Analytics API. Each location change triggers a navigate event, which
    is an analogue of a "pageview" event in traditional web analytics systems. In
    addition to the path, these events provide plugin-level metadata via the
    analytics context, which can be useful for analyzing plugin usage:

    {
      "action": "navigate",
      "subject": "/the-path/navigated/to?with=params#and-hashes",
      "context": {
        "extension": "App",
        "pluginId": "id-of-plugin-that-exported-the-route",
        "routeRef": "associated-route-ref-id"
      }
    }

    These events can be identified and handled by checking for the action
    navigate and the extension App.

  • 4c3eea7: Bitbucket Cloud authentication - based on the existing GitHub authentication + changes around BB apis and updated scope.

    • BitbucketAuth added to core-app-api.
    • Bitbucket provider added to plugin-auth-backend.
    • Cosmetic entry for Bitbucket connection in user-settings Authentication Providers tab.
  • d6ad46e: Stop calling connector.removeSession in StaticAuthSessionManager, instead just discarding the
    session locally.

  • Updated dependencies

    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/core-components@0.6.1

Patch Changes

  • f139fed: The <Link /> component now automatically instruments all link clicks using
    the new Analytics API. Each click triggers a click event, containing the
    text of the link the user clicked on, as well as the location to which the user
    clicked. In addition, these events inherit plugin/extension-level metadata,
    allowing clicks to be attributed to the plugin/extension/route containing the
    link:

    {
      "action": "click",
      "subject": "Text content of the link that was clicked",
      "attributes": {
        "to": "/value/of-the/to-prop/passed-to-the-link"
      },
      "context": {
        "extension": "ExtensionInWhichTheLinkWasClicked",
        "pluginId": "plugin-in-which-link-was-clicked",
        "routeRef": "route-ref-in-which-the-link-was-clicked"
      }
    }
  • 666e1f4: Provide a clearer error message when a authentication provider used by the SignInPage has not been configured to support sign-in.

  • 63d426b: Wrap up the Link component in a component to reset the color so that we can actually see the button text

  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.

  • 162e1ee: SignInPage: move the initial invocation of login away from the render method

  • Updated dependencies

    • @backstage/core-plugin-api@0.1.10

@backstage/core-plugin-api@0.1.10

Patch Changes

  • 829bc69: Introducing the Analytics API: a lightweight way for plugins to instrument key
    events that could help inform a Backstage Integrator how their instance of
    Backstage is being used. The API consists of the following:

    • useAnalytics(), a hook to be used inside plugin components which retrieves
      an Analytics Tracker.
    • tracker.captureEvent(), a method on the tracker used to instrument key
      events. The method expects an action (the event name) and a subject (a unique
      identifier of the object the action is being taken on).
    • <AnalyticsContext />, a way to declaratively attach additional information
      to any/all events captured in the underlying React tree. There is also a
      withAnalyticsContext() HOC utility.
    • The tracker.captureEvent() method also accepts an attributes option for
      providing additional run-time information about an event, as well as a
      value option for capturing a numeric/metric value.

    By default, captured events are not sent anywhere. In order to collect and
    redirect events to an analytics system, the analyticsApi will need to be
    implemented and instantiated by an App Integrator.

  • 4c3eea7: Bitbucket Cloud authentication - based on the existing GitHub authentication + changes around BB apis and updated scope.

    • BitbucketAuth added to core-app-api.
    • Bitbucket provider added to plugin-auth-backend.
    • Cosmetic entry for Bitbucket connection in user-settings Authentication Providers tab.

@backstage/create-app@0.3.44

Patch Changes

  • e254368: Switched the default test script in the package root to use backstage-cli test rather than lerna run test. This is thanks to the @backstage/cli now supporting running the test command from the project root.

    To apply this change to an existing project, apply the following change to your root package.json:

    -    "test": "lerna run test --since origin/master -- --coverage",
    +    "test": "backstage-cli test",
  • Updated dependencies

    • @backstage/cli-common@0.1.4

@backstage/integration@0.6.7

Patch Changes

  • a31afc5: Replace slash stripping regexp with trimEnd to remove CodeQL warning
  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.

@backstage/techdocs-common@0.10.3

Patch Changes

  • 156421c: Sets the default techdocs docker image to the latest released version - v0.3.3.
  • Updated dependencies
    • @backstage/catalog-model@0.9.4
    • @backstage/backend-common@0.9.6
    • @backstage/integration@0.6.7

@backstage/test-utils@0.1.18

Patch Changes

  • e749a38: Added a mock implementation of the AnalyticsApi, which can be used to make
    assertions about captured analytics events.
  • Updated dependencies
    • @backstage/core-plugin-api@0.1.10
    • @backstage/core-app-api@0.1.16
    • @backstage/test-utils-core@0.1.3

@backstage/test-utils-core@0.1.3

Patch Changes

  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.

@backstage/plugin-allure@0.1.5

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-api-docs@0.6.11

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog@0.7.0
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-auth-backend@0.4.3

Patch Changes

  • 4c3eea7: Bitbucket Cloud authentication - based on the existing GitHub authentication + changes around BB apis and updated scope.

    • BitbucketAuth added to core-app-api.
    • Bitbucket provider added to plugin-auth-backend.
    • Cosmetic entry for Bitbucket connection in user-settings Authentication Providers tab.
  • Updated dependencies

    • @backstage/test-utils@0.1.18
    • @backstage/catalog-model@0.9.4
    • @backstage/backend-common@0.9.6
    • @backstage/catalog-client@0.5.0

@backstage/plugin-badges@0.2.12

Patch Changes

  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-badges-backend@0.1.11

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@0.9.4
    • @backstage/backend-common@0.9.6
    • @backstage/catalog-client@0.5.0

@backstage/plugin-bitrise@0.1.15

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-catalog-backend-module-ldap@0.3.3

Patch Changes

  • a31afc5: Replace slash stripping regexp with trimEnd to remove CodeQL warning
  • Updated dependencies
    • @backstage/plugin-catalog-backend@0.16.0
    • @backstage/catalog-model@0.9.4

@backstage/plugin-catalog-backend-module-msgraph@0.2.6

Patch Changes

  • ff7c6ce: Allow loading users using group membership
  • 9586926: Adding some documentation for the msgraph client
  • a31afc5: Replace slash stripping regexp with trimEnd to remove CodeQL warning
  • Updated dependencies
    • @backstage/plugin-catalog-backend@0.16.0
    • @backstage/catalog-model@0.9.4

@backstage/plugin-catalog-graph@0.1.3

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4
    • @backstage/catalog-client@0.5.0

@backstage/plugin-catalog-import@0.7.1

Patch Changes

  • a31afc5: Replace slash stripping regexp with trimEnd to remove CodeQL warning
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4
    • @backstage/catalog-client@0.5.0
    • @backstage/integration@0.6.7

@backstage/plugin-catalog-react@0.5.2

Patch Changes

  • 5aae9bb: Name column will now render entity metadata.title if its present
  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/core-app-api@0.1.16
    • @backstage/catalog-model@0.9.4
    • @backstage/catalog-client@0.5.0
    • @backstage/integration@0.6.7

@backstage/plugin-circleci@0.2.26

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-cloudbuild@0.2.26

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-code-coverage@0.1.14

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-code-coverage-backend@0.1.12

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@0.9.4
    • @backstage/backend-common@0.9.6
    • @backstage/catalog-client@0.5.0
    • @backstage/integration@0.6.7

@backstage/plugin-config-schema@0.1.10

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/plugin-cost-insights@0.11.9

Patch Changes

  • 957e4b3: Updated dependencies
  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/plugin-explore@0.3.19

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-firehydrant@0.1.6

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2

@backstage/plugin-fossa@0.2.19

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-gcp-projects@0.3.7

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/plugin-github-actions@0.4.21

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4
    • @backstage/integration@0.6.7

@backstage/plugin-github-deployments@0.1.19

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4
    • @backstage/integration@0.6.7

@backstage/plugin-gitops-profiles@0.3.7

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/plugin-graphiql@0.2.19

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/plugin-home@0.4.3

Patch Changes

  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/plugin-ilert@0.1.14

Patch Changes

  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-jenkins@0.5.9

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-jenkins-backend@0.1.6

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@0.9.4
    • @backstage/backend-common@0.9.6
    • @backstage/catalog-client@0.5.0

@backstage/plugin-kafka@0.2.18

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-kubernetes@0.4.16

Patch Changes

  • c148c88: Support Rancher URL's with an existing path component
  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4
    • @backstage/plugin-kubernetes-common@0.1.5

@backstage/plugin-kubernetes-common@0.1.5

Patch Changes

  • 193a999: Fixed incorrect keyword, repository directory path and entrypoints in package.json.
  • Updated dependencies
    • @backstage/catalog-model@0.9.4

@backstage/plugin-lighthouse@0.2.28

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-newrelic@0.3.7

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/plugin-org@0.3.26

Patch Changes

  • 614da39: Change the OwnershipCard link on an user profile, including the user's groups on the filters.
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-pagerduty@0.3.16

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-proxy-backend@0.2.13

Patch Changes

  • 957e4b3: Updated dependencies
  • Updated dependencies
    • @backstage/backend-common@0.9.6

@backstage/plugin-rollbar@0.3.17

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-scaffolder@0.11.7

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4
    • @backstage/catalog-client@0.5.0
    • @backstage/integration@0.6.7

@backstage/plugin-scaffolder-backend@0.15.7

Patch Changes

  • ca3086a: Fixed a bug where the catalog:register action would not return any entity when running towards recent versions of the catalog.
  • Updated dependencies
    • @backstage/catalog-model@0.9.4
    • @backstage/backend-common@0.9.6
    • @backstage/catalog-client@0.5.0
    • @backstage/integration@0.6.7

@backstage/plugin-search@0.4.14

Patch Changes

  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-sentry@0.3.24

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-shortcuts@0.1.11

Patch Changes

  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/plugin-sonarqube@0.2.5

Patch Changes

  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

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

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-tech-radar@0.4.10

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/plugin-techdocs@0.12.1

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog@0.7.0
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4
    • @backstage/integration@0.6.7
    • @backstage/plugin-search@0.4.14

@backstage/plugin-techdocs-backend@0.10.4

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@0.9.4
    • @backstage/backend-common@0.9.6
    • @backstage/catalog-client@0.5.0
    • @backstage/integration@0.6.7
    • @backstage/techdocs-common@0.10.3

@backstage/plugin-todo@0.1.13

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4

@backstage/plugin-todo-backend@0.1.13

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@0.9.4
    • @backstage/backend-common@0.9.6
    • @backstage/catalog-client@0.5.0
    • @backstage/integration@0.6.7

@backstage/plugin-user-settings@0.3.8

Patch Changes

  • 4c3eea7: Bitbucket Cloud authentication - based on the existing GitHub authentication + changes around BB apis and updated scope.

    • BitbucketAuth added to core-app-api.
    • Bitbucket provider added to plugin-auth-backend.
    • Cosmetic entry for Bitbucket connection in user-settings Authentication Providers tab.
  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.

  • Updated dependencies

    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/plugin-welcome@0.3.7

Patch Changes

  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

@backstage/plugin-xcmetrics@0.2.8

Patch Changes

  • ca05594: Avoid usage of .to*Case(), preferring .toLocale*Case('en-US') instead.
  • 81a41ec: Added a name key to all extensions in order to improve Analytics API metadata.
  • Updated dependencies
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10

example-app@0.2.49

Patch Changes

  • Updated dependencies
    • @backstage/cli@0.7.15
    • @backstage/core-components@0.6.1
    • @backstage/core-plugin-api@0.1.10
    • @backstage/core-app-api@0.1.16
    • @backstage/plugin-org@0.3.26
    • @backstage/plugin-catalog@0.7.0
    • @backstage/plugin-catalog-react@0.5.2
    • @backstage/catalog-model@0.9.4
    • @backstage/plugin-cost-insights@0.11.9
    • @backstage/plugin-user-settings@0.3.8
    • @backstage/plugin-kubernetes@0.4.16
    • @backstage/plugin-catalog-import@0.7.1
    • @backstage/plugin-badges@0.2.12
    • @backstage/plugin-home@0.4.3
    • @backstage/plugin-search@0.4.14
    • @backstage/plugin-shortcuts@0.1.11
    • @backstage/plugin-api-docs@0.6.11
    • @backstage/plugin-catalog-graph@0.1.3
    • @backstage/plugin-circleci@0.2.26
    • @backstage/plugin-cloudbuild@0.2.26
    • @backstage/plugin-code-coverage@0.1.14
    • @backstage/plugin-explore@0.3.19
    • @backstage/plugin-gcp-projects@0.3.7
    • @backstage/plugin-github-actions@0.4.21
    • @backstage/plugin-graphiql@0.2.19
    • @backstage/plugin-jenkins@0.5.9
    • @backstage/plugin-kafka@0.2.18
    • @backstage/plugin-lighthouse@0.2.28
    • @backstage/plugin-newrelic@0.3.7
    • @backstage/plugin-pagerduty@0.3.16
    • @backstage/plugin-rollbar@0.3.17
    • @backstage/plugin-scaffolder@0.11.7
    • @backstage/plugin-sentry@0.3.24
    • @backstage/plugin-tech-radar@0.4.10
    • @backstage/plugin-techdocs@0.12.1
    • @backstage/plugin-todo@0.1.13

example-backend@0.2.49

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-backend@0.16.0
    • @backstage/catalog-model@0.9.4
    • @backstage/plugin-proxy-backend@0.2.13
    • @backstage/plugin-auth-backend@0.4.3
    • @backstage/backend-common@0.9.6
    • @backstage/catalog-client@0.5.0
    • @backstage/integration@0.6.7
    • @backstage/plugin-scaffolder-backend@0.15.7
    • example-app@0.2.49
    • @backstage/plugin-badges-backend@0.1.11
    • @backstage/plugin-code-coverage-backend@0.1.12
    • @backstage/plugin-jenkins-backend@0.1.6
    • @backstage/plugin-techdocs-backend@0.10.4
    • @backstage/plugin-todo-backend@0.1.13

Don't miss a new backstage release

NewReleases is sending notifications on new releases.