github backstage/backstage release-2021-05-12.1

latest releases: v1.27.2, v1.27.1, v1.27.0...
3 years ago

@backstage/backend-common@0.8.0

Minor Changes

  • 22fd8ce2a: Introducing: a standard API for App Integrators to configure cache stores and Plugin Developers to interact with them.

    Two cache stores are currently supported.

    • memory, which is a very simple in-memory key/value store, intended for local development.
    • memcache, which can be used to connect to a memcache host.

    Configuring and working with cache stores is very similar to the process for database connections.

    backend:
      cache:
        store: memcache
        connection: user:pass@cache.example.com:11211
    
    import { CacheManager } from '@backstage/backend-common';
    // Instantiating a cache client for a plugin.
    const cacheManager = CacheManager.fromConfig(config);
    const somePluginCache = cacheManager.forPlugin('somePlugin');
    const cacheClient = somePluginCache.getClient();
    // Using the cache client:
    const cachedValue = await cacheClient.get('someKey');
    if (cachedValue) {
      return cachedValue;
    } else {
      const someValue = await someExpensiveProcess();
      await cacheClient.set('someKey', someValue);
    }
    await cacheClient.delete('someKey');
    

    Cache clients deal with TTLs in milliseconds. A TTL can be provided as a defaultTtl when getting a client, or may be passed when setting specific objects. If no TTL is provided, data will be persisted indefinitely.

    // Getting a client with a default TTL
    const cacheClient = somePluginCache.getClient({
      defaultTtl: 3600000,
    });
    
    
    // Setting a TTL on a per-object basis.
    cacheClient.set('someKey', data, { ttl: 3600000 });
    

    Configuring a cache store is optional. Even when no cache store is configured, the cache manager will dutifully pass plugins a manager that resolves a cache client that does not actually write or read any data.

    Patch Changes

    • f9fb4a205: Prep work for mysql support in backend-common

      @backstage/plugin-catalog-backend@0.9.0

      Minor Changes

    • 9a207f052: Port GithubOrgReaderProcessor to support configuration via
      integrations in
      addition to catalog.processors.githubOrg.providers.
      The integrations package supports authentication with both personal access
      tokens and GitHub apps.
      This deprecates the catalog.processors.githubOrg.providers configuration.
      A integrations configuration
      for the same host takes precedence over the provider configuration.
      You might need to add additional scopes for the credentials.

      Patch Changes

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [16be1d093]

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

      @backstage/catalog-model@0.7.9

      Patch Changes

    • 10c008a3a: Renamed parameters to input in template schema

    • 16be1d093: Improve error messages when schema validation fails

      @backstage/cli@0.6.11

      Patch Changes

    • 2cd70e164: Add context for versions:bump on what version it was bumped to. Updated tests for the same.

    • 3be844496: chore: bump ts-node versions to 9.1.1

    • e3fc89df6: update plugins created to use react-use 17.2.4

      @backstage/core@0.7.9

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 889d89b6e: Fix state persisted in the URL make search input in the table toolbar lose their
      focus.

    • 3f988cb63: Add count of older messages when multiple messages exist in AlertDisplay

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [675a569a9]

    • @backstage/core-api@0.2.18

      @backstage/core-api@0.2.18

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

      @backstage/create-app@0.3.22

      Patch Changes

    • 3be844496: chore: bump ts-node versions to 9.1.1

    • Updated dependencies [062bbf90f]

    • Updated dependencies [2cd70e164]

    • Updated dependencies [0b033d07b]

    • Updated dependencies [3be844496]

    • Updated dependencies [5542de095]

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [82ca1ac22]

    • Updated dependencies [81ef1d57b]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [e3fc89df6]

    • Updated dependencies [9a207f052]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [fd39d4662]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/integration-react@0.1.2

    • @backstage/test-utils@0.1.11

    • @backstage/plugin-api-docs@0.4.13

    • @backstage/plugin-catalog@0.5.7

    • @backstage/plugin-catalog-import@0.5.6

    • @backstage/plugin-explore@0.3.5

    • @backstage/plugin-github-actions@0.4.6

    • @backstage/plugin-lighthouse@0.2.16

    • @backstage/plugin-scaffolder@0.9.4

    • @backstage/plugin-scaffolder-backend@0.11.1

    • @backstage/plugin-search@0.3.6

    • @backstage/plugin-tech-radar@0.3.11

    • @backstage/plugin-techdocs@0.9.2

    • @backstage/plugin-user-settings@0.2.10

    • @backstage/cli@0.6.11

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

    • @backstage/plugin-catalog-backend@0.9.0

    • @backstage/plugin-app-backend@0.3.13

    • @backstage/plugin-auth-backend@0.3.10

    • @backstage/plugin-proxy-backend@0.2.8

    • @backstage/plugin-rollbar-backend@0.1.11

    • @backstage/plugin-techdocs-backend@0.8.1

      @backstage/dev-utils@0.1.14

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/integration-react@0.1.2

    • @backstage/test-utils@0.1.11

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/integration-react@0.1.2

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      @backstage/techdocs-common@0.6.1

      Patch Changes

    • e04f1ccfb: Fixed a bug that prevented loading static assets from GCS, S3, Azure, and OpenStackSwift whose keys contain spaces or other special characters.

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [16be1d093]

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

      @backstage/test-utils@0.1.11

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • Updated dependencies [062bbf90f]

    • Updated dependencies [675a569a9]

    • @backstage/core-api@0.2.18

      @backstage/plugin-api-docs@0.4.13

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 889d89b6e: Fix state persisted in the URL make search input in the table toolbar lose their
      focus.

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-app-backend@0.3.13

      Patch Changes

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [f9fb4a205]

    • @backstage/backend-common@0.8.0

      @backstage/plugin-auth-backend@0.3.10

      Patch Changes

    • Updated dependencies [062bbf90f]

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [16be1d093]

    • @backstage/test-utils@0.1.11

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-badges@0.2.1

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-badges-backend@0.1.4

      Patch Changes

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [16be1d093]

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-bitrise@0.1.3

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-catalog@0.5.7

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 5542de095: This makes the CatalogTable configurable with custom columns, passed through the CatalogPage component rendered on the home page.

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/integration-react@0.1.2

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-catalog-graphql@0.2.9

      Patch Changes

    • 3be844496: chore: bump ts-node versions to 9.1.1

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [16be1d093]

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-catalog-import@0.5.6

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/integration-react@0.1.2

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-catalog-react@0.1.6

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-circleci@0.2.14

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-cloudbuild@0.2.14

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-code-coverage@0.1.3

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

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

      Patch Changes

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [16be1d093]

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-config-schema@0.1.2

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      @backstage/plugin-cost-insights@0.9.1

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      @backstage/plugin-explore@0.3.5

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 0b033d07b: Add "Organization" tab with a diagram

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/plugin-explore-react@0.0.5

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-explore-react@0.0.5

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      @backstage/plugin-fossa@0.2.7

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-gcp-projects@0.2.6

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      @backstage/plugin-github-actions@0.4.6

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-github-deployments@0.1.5

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • f5a916c49: Support for GitHub Enterprise with GithubDeploymentsPlugin

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/integration-react@0.1.2

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-gitops-profiles@0.2.7

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      @backstage/plugin-graphiql@0.2.11

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      @backstage/plugin-graphql-backend@0.1.8

      Patch Changes

    • Updated dependencies [3be844496]

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [f9fb4a205]

    • @backstage/plugin-catalog-graphql@0.2.9

    • @backstage/backend-common@0.8.0

      @backstage/plugin-jenkins@0.4.3

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-kafka@0.2.7

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-kafka-backend@0.2.5

      Patch Changes

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [16be1d093]

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-kubernetes@0.4.4

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • ea21d46f0: Export types

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-kubernetes-backend@0.3.7

      Patch Changes

    • f9f9d633d: Add possibility to configure TLS verification for gke type clusters

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [16be1d093]

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-lighthouse@0.2.16

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-newrelic@0.2.7

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      @backstage/plugin-org@0.3.13

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • f59a945b7: Paginate group members to only display 50 members maximum.

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/core-api@0.2.18

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-pagerduty@0.3.4

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-proxy-backend@0.2.8

      Patch Changes

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [f9fb4a205]

    • @backstage/backend-common@0.8.0

      @backstage/plugin-register-component@0.2.15

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-rollbar@0.3.5

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-rollbar-backend@0.1.11

      Patch Changes

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [f9fb4a205]

    • @backstage/backend-common@0.8.0

      @backstage/plugin-scaffolder@0.9.4

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 81ef1d57b: Show error on task page if task does not exist.

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/integration-react@0.1.2

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-scaffolder-backend@0.11.1

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 82ca1ac22: The apiBaseUrl setting for Bitbucket Server integrations will now be used when it is set. Otherwise, it will default back to the host setting.

    • fd39d4662: Move jest-when to the dev dependencies

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [16be1d093]

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-search@0.3.6

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-search-backend@0.1.5

      Patch Changes

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [f9fb4a205]

    • @backstage/backend-common@0.8.0

      @backstage/plugin-sentry@0.3.10

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-shortcuts@0.1.2

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      @backstage/plugin-sonarqube@0.1.18

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

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

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-tech-radar@0.3.11

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      @backstage/plugin-techdocs@0.9.2

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/integration-react@0.1.2

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-techdocs-backend@0.8.1

      Patch Changes

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [16be1d093]

    • Updated dependencies [e04f1ccfb]

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

    • @backstage/techdocs-common@0.6.1

      @backstage/plugin-todo@0.1.1

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-todo-backend@0.1.5

      Patch Changes

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [16be1d093]

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

      @backstage/plugin-user-settings@0.2.10

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      @backstage/plugin-welcome@0.2.8

      Patch Changes

    • 062bbf90f: chore: bump @testing-library/user-event from 12.8.3 to 13.1.8

    • 675a569a9: chore: bump react-use dependency in all packages

    • Updated dependencies [062bbf90f]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

      example-app@0.2.28

      Patch Changes

    • Updated dependencies [062bbf90f]

    • Updated dependencies [2cd70e164]

    • Updated dependencies [0b033d07b]

    • Updated dependencies [3be844496]

    • Updated dependencies [5542de095]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [81ef1d57b]

    • Updated dependencies [ea21d46f0]

    • Updated dependencies [e3fc89df6]

    • Updated dependencies [f59a945b7]

    • Updated dependencies [889d89b6e]

    • Updated dependencies [16be1d093]

    • Updated dependencies [3f988cb63]

    • Updated dependencies [675a569a9]

    • @backstage/core@0.7.9

    • @backstage/integration-react@0.1.2

    • @backstage/plugin-api-docs@0.4.13

    • @backstage/plugin-badges@0.2.1

    • @backstage/plugin-catalog@0.5.7

    • @backstage/plugin-catalog-import@0.5.6

    • @backstage/plugin-catalog-react@0.1.6

    • @backstage/plugin-circleci@0.2.14

    • @backstage/plugin-cloudbuild@0.2.14

    • @backstage/plugin-code-coverage@0.1.3

    • @backstage/plugin-cost-insights@0.9.1

    • @backstage/plugin-explore@0.3.5

    • @backstage/plugin-gcp-projects@0.2.6

    • @backstage/plugin-github-actions@0.4.6

    • @backstage/plugin-graphiql@0.2.11

    • @backstage/plugin-jenkins@0.4.3

    • @backstage/plugin-kafka@0.2.7

    • @backstage/plugin-kubernetes@0.4.4

    • @backstage/plugin-lighthouse@0.2.16

    • @backstage/plugin-newrelic@0.2.7

    • @backstage/plugin-org@0.3.13

    • @backstage/plugin-pagerduty@0.3.4

    • @backstage/plugin-rollbar@0.3.5

    • @backstage/plugin-scaffolder@0.9.4

    • @backstage/plugin-search@0.3.6

    • @backstage/plugin-sentry@0.3.10

    • @backstage/plugin-shortcuts@0.1.2

    • @backstage/plugin-tech-radar@0.3.11

    • @backstage/plugin-techdocs@0.9.2

    • @backstage/plugin-todo@0.1.1

    • @backstage/plugin-user-settings@0.2.10

    • @backstage/cli@0.6.11

    • @backstage/catalog-model@0.7.9

      example-backend@0.2.28

      Patch Changes

    • Updated dependencies [062bbf90f]

    • Updated dependencies [22fd8ce2a]

    • Updated dependencies [10c008a3a]

    • Updated dependencies [82ca1ac22]

    • Updated dependencies [f9fb4a205]

    • Updated dependencies [9a207f052]

    • Updated dependencies [16be1d093]

    • Updated dependencies [fd39d4662]

    • Updated dependencies [f9f9d633d]

    • @backstage/plugin-scaffolder-backend@0.11.1

    • @backstage/backend-common@0.8.0

    • @backstage/catalog-model@0.7.9

    • @backstage/plugin-catalog-backend@0.9.0

    • @backstage/plugin-kubernetes-backend@0.3.7

    • example-app@0.2.28

    • @backstage/plugin-app-backend@0.3.13

    • @backstage/plugin-auth-backend@0.3.10

    • @backstage/plugin-badges-backend@0.1.4

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

    • @backstage/plugin-graphql-backend@0.1.8

    • @backstage/plugin-kafka-backend@0.2.5

    • @backstage/plugin-proxy-backend@0.2.8

    • @backstage/plugin-rollbar-backend@0.1.11

    • @backstage/plugin-search-backend@0.1.5

    • @backstage/plugin-techdocs-backend@0.8.1

    • @backstage/plugin-todo-backend@0.1.5

Don't miss a new backstage release

NewReleases is sending notifications on new releases.