Backstage - v0.68.0


@backstage/catalog-client@0.7.0

Minor Changes

  • 8eda0e7a9c: BREAKING: Removed the explicit DiscoveryApi and FetchApi export symbols,
    which were unnecessary duplicates from the well known core ones.

    The CATALOG_FILTER_EXISTS symbol's value has changed. However, this should not
    affect any code in practice.

  • deaf6065db: Removed CatalogApi.geLocationByEntity and CatalogApi.getOriginLocationByEntity, and replaced them with CatalogApi.getLocationByRef.

    If you were using one of the two old methods, you can update your code as follows:

    diff -const originLocation = catalogApi.getOriginLocationByEntity(entity); +const originLocation = catalogApi.getLocationByRef(entity.metadata.annotations[ANNOTATION_ORIGIN_LOCATION]!); -const location = catalogApi.getLocationByEntity(entity); +const location = catalogApi.getLocationByRef(entity.metadata.annotations[ANNOTATION_LOCATION]!);

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5

  • c77c5c7eb6: Added backstage.role to package.json

  • 216725b434: Updated to use new names for parseLocationRef and stringifyLocationRef

  • 244d24ebc4: Export the Location type that was previously exported by the @backstage/catalog-model package.

  • 538ca90790: Deprecated the following types used by the catalog client, and created new
    corresponding types to make them more consistent:

    • CatalogEntitiesRequest -> GetEntitiesRequest
    • CatalogListResponse was removed and generally replaced with GetEntitiesResponse (which does not use a type parameter argument)
    • CatalogEntityAncestorsRequest-> GetEntityAncestorsRequest
    • CatalogEntityAncestorsResponse -> GetEntityAncestorsResponse
  • 27eccab216: Replaces use of deprecated catalog-model constants.

  • Updated dependencies

    • @backstage/errors@0.2.1
    • @backstage/catalog-model@0.10.0

## @backstage/catalog-model@0.10.0

Minor Changes

  • e483dd6c72: BREAKING: Remove deprecated validation methods analyzeLocationSchema, locationSchema and locationSpecSchema.
    This functionality was primarily used internally by the catalog-backend.
  • edbc03814a: BREAKING: Remove deprecated serializeEntityRef which is replaced by stringifyEntityRef.
  • e72d371296: BREAKING: Removed TemplateEntityV1beta2 from the model and moved it to
    @backstage/plugin-scaffolder-common where TemplateEntityV1beta3 already
    lived. It has also been marked as deprecated in the process - please consider
    migrating to v1beta3 templates.

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • 216725b434: Deprecated parseLocationReference and stringifyLocationReference,
    introducing parseLocationRef and stringifyLocationRef in their place.
  • 244d24ebc4: Deprecates the Location type export from this package. Imports of the Location type should now be done from the @backstage/catalog-client package instead.
  • 7aeb491394: Deprecated ENTITY_DEFAULT_NAMESPACE constant in favour of DEFAULT_NAMESPACE.
  • 0d03e42a89: Deprecated compareEntityToRef due to low usage and provided value.
  • e8c6f9d282: Deprecated the EntityRefContext type which had limited use.
  • 7f21538c9e: Deprecated JSONSchema export type.
  • 20f3244102: Deprecates the following exports which all have very limited and internal use. ENTITY_META_GENERATED_FIELDS, entityHasChanges, generateEntityEtag, generateEntityUid, generateUpdatedEntity, ENTITY_META_GENERATED_FIELDS.
  • 27eccab216: Deprecates EDIT_URL_ANNOTATION, LOCATION_ANNOTATION, ORIGIN_LOCATION_ANNOTATION, SOURCE_LOCATION_ANNOTATION, VIEW_URL_ANNOTATION
    and replaces these constants all prefixed with ANNOTATION_ ANNOTATION_EDIT_URL, ANNOTATION_LOCATION, ANNOTATION_ORIGIN_LOCATION, ANNOTATION_SOURCE_LOCATION, ANNOTATION_VIEW_URL
  • Updated dependencies
    • @backstage/errors@0.2.1
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

## @backstage/cli@0.14.0

Minor Changes

  • 1fc0cd3896: Bumped Webpack and Rollup svgr dependencies and updated the AST template for .icon.svg modules. This means that SVG icon imports are now using SVGO v2.

Patch Changes

  • 0b74c72987: Added a new experimental and hidden backstage-cli repo lint command that can be used to lint all packages in the project, similar to lerna run lint.

  • 532dae9c4c: The versions:bump --release next command is updated to compare the main and next release manifests and prefer the latest.

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5

  • c77c5c7eb6: Added backstage.role to package.json

  • 22862486de: The versions:bump command now filters out npm_ environment configuration when running yarn install. This has the effect of allowing it to consider local configuration files within the repository, which is the behavior that one would expect.

  • 22862486de: The versions:bump command now also considers the root package.json when searching for updates. It has also received updates to its output, including a link the Backstage upgrade helper and silenced yarn install output.

  • 7410e12268: Several changes were made to the new experimental package roles system. Unless you have been experimenting with using this new system, these changes have no affect on your project.

    Renamed the backstage-cli migrate package-role command to backstage-cli migrate package-roles.

    Updated the package role definitions by renaming app to frontend, plugin-frontend to frontend-plugin, plugin-frontend-module to frontend-plugin-module, plugin-backend to backend-plugin, and plugin-backend-module to backend-plugin-module

    The backstage-cli migrate package-scripts received several tweaks to make it more accurate. It now tries to maintain existing script arguments, like --config parameters for build and start scripts.

    The script command category has been renamed to package.

    The backstage-cli package build command set an incorrect target directory for app and backend packages, which has been fixed.

    The backend:bundle and repo build command for the backend role was previously ignoring building of bundled packages that had migrated to use package roles and the standard build script, this has now been fixed.

  • c6bbafb516: Updated the default sucrase-based Jest transform to include source maps if the environment variable ENABLE_SOURCE_MAPS is non-empty. This can be used to better support editor test debugging integrations.

  • 7410e12268: The test command now automatically adds --passWithNoTests to the Jest invocation. To revert this behavior, pass --passWithNoTests=false or --no-passWithNoTests.

  • Updated dependencies

    • @backstage/config-loader@0.9.4
    • @backstage/errors@0.2.1
    • @backstage/release-manifests@0.0.2
    • @backstage/cli-common@0.1.7
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

## @backstage/plugin-airbrake@0.2.0

Minor Changes

  • 9e505d20a3: API connectivity has added, but currently will only work by running it standalone on a browser with CORS disabled.

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/test-utils@0.2.5
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/dev-utils@0.2.22
    • @backstage/theme@0.2.15

## @backstage/plugin-airbrake-backend@0.1.0

Minor Changes

  • a5aebe3e30: Created the Airbrake backend plugin that proxies requests to the Airbrake API

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/config@0.1.14

## @backstage/plugin-catalog@0.8.0

Minor Changes

  • ae7edbea45: Removed CatalogClientWrapper as usage have been replaced by the fetchApiRef.
  • 37092662cb: BREAKING Completely removed the EntitySystemDiagramCard component which was deprecated in a previous release. Any remaining references to this component are now broken and should be replaced with EntityCatalogGraphCard, which can be imported from package @backstage/plugin-catalog-graph.
  • 7657eeae22: Removed deprecated Router and EntityPageLayout exports.
    Router is replaced by plugin extensions and EntityPageLayout is replaced by CatalogEntityPage.
  • 0a033351be: BREAKING:

    • The CatalogResultListItem result prop is now of the more narrow and correct type IndexableDocument, rather than any.
    • The individual table column factories (e.g. createNameColumn) are now no longer available directly, but only through CatalogTable.columns.

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 538ca90790: Use updated type names from @backstage/catalog-client
  • 0d03e42a89: Replaced use of deprecated compareEntityToRef utility.
  • 244d24ebc4: Import Location from the @backstage/catalog-client package.
  • deaf6065db: Adapt to the new CatalogApi.getLocationByRef
  • 27eccab216: Replaces use of deprecated catalog-model constants.
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/catalog-client@0.7.0
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/integration-react@0.1.22
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/search-common@0.2.3
    • @backstage/theme@0.2.15
    • @backstage/plugin-catalog-common@0.1.3

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

Minor Changes

  • e2cf0662eb: Add a warning if the permission backend is used without setting permission.enabled=true.

    BREAKING Permission backend's createRouter now requires a config option.

    ```diff
    // packages/backend/src/plugins/permission.ts

    ...
    export default async function createPlugin({
    ...
    + config,
    }: PluginEnvironment) {
    return createRouter({
    ...
    + config,
    });
    }
    ```

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/errors@0.2.1
    • @backstage/plugin-auth-node@0.1.1
    • @backstage/plugin-permission-common@0.5.0
    • @backstage/config@0.1.14
    • @backstage/plugin-permission-node@0.5.0

## @backstage/plugin-permission-common@0.5.0

Minor Changes

  • 8c646beb24: BREAKING PermissionCriteria now requires at least one condition in anyOf and allOf arrays. This addresses some ambiguous behavior outlined in #9280.

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/errors@0.2.1
    • @backstage/config@0.1.14

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

Minor Changes

  • 8c646beb24: BREAKING PermissionCriteria now requires at least one condition in anyOf and allOf arrays. This addresses some ambiguous behavior outlined in #9280.

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/errors@0.2.1
    • @backstage/plugin-auth-node@0.1.1
    • @backstage/plugin-permission-common@0.5.0
    • @backstage/config@0.1.14

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

Minor Changes

  • 661594bf43: BREAKING: Updated TemplateAction and related types to have its type parameter extend JsonObject instead of InputBase. The createTemplateAction has also been updated to pass through the TInput type parameter to the return type, meaning the TemplateAction retains its type. This can lead to breakages during type checking especially within tests.
  • 8db2b671c6: BREAKING: ctx.token is now ctx.secrets.backstageToken in Actions. Please update any of your Actions that might call out to Backstage API's with this token.
  • 5a1594330e: BREAKING - Removed the CatalogEntityClient export. This is no longer provider by this package,
    but you can implement one pretty simply yourself using the CatalogApi and applying filters to fetch templates.
  • 7d3471db94: Remove the previously deprecated scaffolder.provider config for all providers.
    This config is no longer used anywhere, and adopters should use integrations config instead.

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • 3e59f90b51: Fix error handling of the runCommand helper to return Error
    instance.
  • c77c5c7eb6: Added backstage.role to package.json
  • 216725b434: Updated to use new names for parseLocationRef and stringifyLocationRef
  • e72d371296: Use TemplateEntityV1beta2 from @backstage/plugin-scaffolder-common instead
    of @backstage/catalog-model.
  • 1433045c08: Removed unused helmet dependency.
  • 27eccab216: Replaces use of deprecated catalog-model constants.
  • Updated dependencies
    • @backstage/plugin-scaffolder-common@0.2.0
    • @backstage/plugin-catalog-backend@0.21.4
    • @backstage/backend-common@0.10.8
    • @backstage/catalog-client@0.7.0
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2
    • @backstage/plugin-scaffolder-backend-module-cookiecutter@0.2.0

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

Minor Changes

  • 661594bf43: Updated to the latest version of @backstage/plugin-scaffolder-backend, meaning the TemplateAction now exposes the precise input type rather than any.

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/plugin-scaffolder-backend@0.16.0
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

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

Minor Changes

  • 661594bf43: Updated to the latest version of @backstage/plugin-scaffolder-backend, meaning the TemplateAction now exposes the precise input type rather than any.

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/plugin-scaffolder-backend@0.16.0
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

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

Minor Changes

  • 661594bf43: Updated to the latest version of @backstage/plugin-scaffolder-backend, meaning the TemplateAction now exposes the precise input type rather than any.

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • c82cd1b137: Bump yeoman-environment dependency from ^3.6.0 to ^3.9.1.
  • Updated dependencies
    • @backstage/plugin-scaffolder-backend@0.16.0
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

## @backstage/plugin-scaffolder-common@0.2.0

Minor Changes

  • 5e585bbc7f: BREAKING: Removed the templateEntityV1beta3Schema export

Patch Changes

  • e72d371296: Added TemplateEntityV1beta2 which was moved here from
    @backstage/plugin-scaffolder-common. It has also been marked as deprecated in
    the process - please consider migrating to v1beta3
    templates
    .
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/catalog-model@0.10.0
    • @backstage/types@0.1.2

## @backstage/plugin-search@0.7.0

Minor Changes

  • f986369b2a: BREAKING: useSearch doesn't return anymore open and toggleModal.
    The two properties have been moved to the useSearchModal hook.
    import { SearchModal, useSearchModal } from '@backstage/plugin-search';
    
    const Foo = () => {
      const { state, setOpen, toggleModal } = useSearchModal();
    
      return (
        <SearchModal {...state} toggleModal={toggleModal} />
      );
    };
    

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/search-common@0.2.3
    • @backstage/theme@0.2.15
    • @backstage/types@0.1.2

## @backstage/plugin-shortcuts@0.2.0

Minor Changes

  • dc9fd0acf9: Use Avatar instead of custom icon for ShortcutIcon

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/theme@0.2.15
    • @backstage/types@0.1.2

## @backstage/app-defaults@0.1.8

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-app-api@0.5.3
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-permission-react@0.3.1
    • @backstage/theme@0.2.15

## @backstage/backend-common@0.10.8

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 0107c9aa08: chore(deps): bump helmet from 4.4.1 to 5.0.2
  • b590e9b58d: Updated isDatabaseConflictError to handle modern sqlite conflict errors
  • Updated dependencies
    • @backstage/config-loader@0.9.4
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/cli-common@0.1.7
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

## @backstage/backend-tasks@0.1.7

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/errors@0.2.1
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/cli@0.14.0
    • @backstage/backend-common@0.10.8
    • @backstage/config@0.1.14

## @backstage/cli-common@0.1.7

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json

## @backstage/codemods@0.1.34

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-app-api@0.5.3
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/cli-common@0.1.7

## @backstage/config@0.1.14

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/types@0.1.2

## @backstage/config-loader@0.9.4

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/errors@0.2.1
    • @backstage/cli-common@0.1.7
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-plugin-api@0.6.1
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2
    • @backstage/version-bridge@0.1.2

## @backstage/core-components@0.8.9

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 126074a04b: Port supported react-use functions to react-hookz.
  • Updated dependencies
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15

## @backstage/core-plugin-api@0.6.1

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 2714145cf5: Removes unused react-use dependency.
  • Updated dependencies
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2
    • @backstage/version-bridge@0.1.2

## @backstage/create-app@0.4.20

Patch Changes

  • e725bb812f: Remove SearchContextProvider from <Root />

    The SidebarSearchModal exported from plugin-search internally renders SearchContextProvider, so it can be removed from Root.tsx:

    ```diff
    -import {
    - SidebarSearchModal,
    - SearchContextProvider,
    -} from '@backstage/plugin-search';
    +import { SidebarSearchModal } from '@backstage/plugin-search';

    ... omitted ...

       <SidebarGroup label="Search" icon={<SearchIcon />} to="/search">
    


    • ```
  • c77c5c7eb6: Added backstage.role to package.json

  • Updated dependencies

    • @backstage/cli-common@0.1.7

## @backstage/dev-utils@0.2.22

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-app-api@0.5.3
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/integration-react@0.1.22
    • @backstage/test-utils@0.2.5
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/app-defaults@0.1.8
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

## @backstage/errors@0.2.1

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/types@0.1.2

## @backstage/integration@0.7.3

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/config@0.1.14

## @backstage/integration-react@0.1.22

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • f0e2f7a56a: Updated the ScmAuth error message for missing provider configurations to link to ScmAuthApi setup documentation.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/integration@0.7.3
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15

## @backstage/release-manifests@0.0.2

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json

## @backstage/search-common@0.2.3

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/plugin-permission-common@0.5.0
    • @backstage/types@0.1.2

## @techdocs/cli@0.8.14

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/catalog-model@0.10.0
    • @backstage/cli-common@0.1.7
    • @backstage/config@0.1.14
    • @backstage/techdocs-common@0.11.8

## @backstage/techdocs-common@0.11.8

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • 216725b434: Updated to use new names for parseLocationRef and stringifyLocationRef
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/search-common@0.2.3

## @backstage/test-utils@0.2.5

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-app-api@0.5.3
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-permission-common@0.5.0
    • @backstage/plugin-permission-react@0.3.1
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15
    • @backstage/types@0.1.2

## @backstage/theme@0.2.15

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json

## @backstage/types@0.1.2

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json

## @backstage/version-bridge@0.1.2

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json

## @backstage/plugin-allure@0.1.15

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • deaf6065db: Adapt to the new CatalogApi.getLocationByRef
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog@0.8.0
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • 0107c9aa08: chore(deps): bump helmet from 4.4.1 to 5.0.2
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/config-loader@0.9.4
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • a31559d1f5: Bump passport-oauth2 to version 1.6.1
  • deaf6065db: Adapt to the new CatalogApi.getLocationByRef
  • 1433045c08: Removed unused helmet dependency.
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/catalog-client@0.7.0
    • @backstage/errors@0.2.1
    • @backstage/plugin-auth-node@0.1.1
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/errors@0.2.1
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15
    • @backstage/plugin-azure-devops-common@0.2.1

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/config@0.1.14
    • @backstage/plugin-azure-devops-common@0.2.1

## @backstage/plugin-azure-devops-common@0.2.1

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json

## @backstage/plugin-badges@0.2.23

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • deaf6065db: Adapt to the new CatalogApi.getLocationByRef
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/catalog-client@0.7.0
    • @backstage/errors@0.2.1
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14

## @backstage/plugin-bazaar@0.1.14

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/cli@0.14.0
    • @backstage/catalog-client@0.7.0
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog@0.8.0
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/backend-test-utils@0.1.18
    • @backstage/config@0.1.14

## @backstage/plugin-bitrise@0.1.26

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • 379da9fb1d: The following processors now properly accept an ScmIntegrationRegistry (an
    interface) instead of an ScmIntegrations (which is a concrete class).

    • AzureDevOpsDiscoveryProcessor
    • CodeOwnersProcessor
    • GitLabDiscoveryProcessor
    • GithubDiscoveryProcessor
    • GithubMultiOrgReaderProcessor
    • GithubOrgReaderProcessor
  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5

  • c77c5c7eb6: Added backstage.role to package.json

  • 538ca90790: Use updated type names from @backstage/catalog-client

  • ca1d6c1788: Support "dependencyOf" relation in Resource entities

  • 244d24ebc4: Import Location from the @backstage/catalog-client package.

  • e483dd6c72: Update internal Location validation.

  • 216725b434: Updated to use new names for parseLocationRef and stringifyLocationRef

  • e72d371296: Use TemplateEntityV1beta2 from @backstage/plugin-scaffolder-common instead
    of @backstage/catalog-model.

  • 27eccab216: Replaces use of deprecated catalog-model constants.

  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.

  • b590e9b58d: Optimized entity provider mutations with large numbers of new additions, such as big initial startup commits

  • Updated dependencies

    • @backstage/plugin-scaffolder-common@0.2.0
    • @backstage/backend-common@0.10.8
    • @backstage/catalog-client@0.7.0
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/plugin-permission-common@0.5.0
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/search-common@0.2.3
    • @backstage/types@0.1.2
    • @backstage/plugin-catalog-common@0.1.3
    • @backstage/plugin-permission-node@0.5.0

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • 244d24ebc4: Import Location from the @backstage/catalog-client package.
  • 27eccab216: Replaces use of deprecated catalog-model constants.
  • Updated dependencies
    • @backstage/plugin-catalog-backend@0.21.4
    • @backstage/errors@0.2.1
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 27eccab216: Replaces use of deprecated catalog-model constants.
  • Updated dependencies
    • @backstage/plugin-catalog-backend@0.21.4
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/plugin-permission-common@0.5.0

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • 538ca90790: Use updated type names from @backstage/catalog-client
  • deaf6065db: Adapt to the new CatalogApi.getLocationByRef
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/catalog-client@0.7.0
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

## @backstage/plugin-catalog-graphql@0.3.2

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/types@0.1.2

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • deaf6065db: Adapt to the new CatalogApi.getLocationByRef
  • Updated dependencies
    • @backstage/catalog-client@0.7.0
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/integration-react@0.1.22
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 538ca90790: Use updated type names from @backstage/catalog-client
  • edbc03814a: Replace usage of serializeEntityRef with stringifyEntityRef
  • 244d24ebc4: Import Location from the @backstage/catalog-client package.
  • deaf6065db: Adapt to the new CatalogApi.getLocationByRef
  • 216725b434: Updated to use new names for parseLocationRef and stringifyLocationRef
  • e72d371296: Use TemplateEntityV1beta2 from @backstage/plugin-scaffolder-common instead
    of @backstage/catalog-model.
  • 98d1aa1ea1: Fix CatalogPage showing all components when owned filter was pre-selected
  • 27eccab216: Replaces use of deprecated catalog-model constants.
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/catalog-client@0.7.0
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/plugin-permission-common@0.5.0
    • @backstage/plugin-permission-react@0.3.1
    • @backstage/catalog-model@0.10.0
    • @backstage/types@0.1.2
    • @backstage/version-bridge@0.1.2

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • 0b9bce831b: Updated @backstage/core-plugin-api dependency.
  • Updated dependencies
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0

## @backstage/plugin-circleci@0.2.38

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

## @backstage/plugin-cloudbuild@0.2.36

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/catalog-client@0.7.0
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15
    • @backstage/types@0.1.2

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15

## @backstage/plugin-explore@0.3.30

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • deaf6065db: Adapt to the new CatalogApi.getLocationByRef
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/plugin-explore-react@0.0.12
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

## @backstage/plugin-explore-react@0.0.12

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-plugin-api@0.6.1

## @backstage/plugin-firehydrant@0.1.16

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 3a2a893df6: chore(deps): bump luxon from 2.0.2 to 2.3.0
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/theme@0.2.15

## @backstage/plugin-fossa@0.2.31

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • deaf6065db: Adapt to the new CatalogApi.getLocationByRef
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • e242726f78: Switches to use react-hookz in place of react-use.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/integration@0.7.3
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 7efee0f94c: Fixed an issue where an error message was being displayed on the initial component render. This was due to values owner/repo not yet being set.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/integration@0.7.3
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 216725b434: Updated to use new names for parseLocationRef and stringifyLocationRef
  • 27eccab216: Replaces use of deprecated catalog-model constants.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/integration-react@0.1.22
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/theme@0.2.15

## @backstage/plugin-gocd@0.1.5

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

## @backstage/plugin-graphiql@0.2.31

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/theme@0.2.15

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • 0107c9aa08: chore(deps): bump helmet from 4.4.1 to 5.0.2
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/plugin-catalog-graphql@0.3.2
    • @backstage/config@0.1.14

## @backstage/plugin-home@0.4.15

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5

  • c77c5c7eb6: Added backstage.role to package.json

  • 651b919dbb: Add Renderer support for the HomePageToolkit component.

    Previously <HomePageToolkit Renderer={ComponentAccordion} Tools={[]} /> would
    result in the error can't access property "map", props.tools is undefined.
    This change adds a context that can pass props down to the HomePageToolkit.
    Also introduced is an expanded prop on the ComponentAccordion to setting
    the default expanded state. See In Accordian story for details.

  • Updated dependencies

    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/plugin-search@0.7.0
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

## @backstage/plugin-ilert@0.1.25

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

## @backstage/plugin-jenkins@0.5.21

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • 377fce4677: The DefaultJenkinsInfoProvider.fromConfig now requires an implementation of the CatalogApi rather than a CatalogClient instance.
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/catalog-client@0.7.0
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14

## @backstage/plugin-kafka@0.2.29

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/errors@0.2.1
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14

## @backstage/plugin-kubernetes@0.5.8

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15
    • @backstage/plugin-kubernetes-common@0.2.3

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • 0107c9aa08: chore(deps): bump helmet from 4.4.1 to 5.0.2
  • fb09a59a3f: Fixed a potential issue in AWS token encoding, where they might not always be properly converted to URL-safe base64.
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/errors@0.2.1
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/plugin-kubernetes-common@0.2.3

## @backstage/plugin-kubernetes-common@0.2.3

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/catalog-model@0.10.0

## @backstage/plugin-lighthouse@0.2.38

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15

## @backstage/plugin-newrelic@0.3.17

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0

## @backstage/plugin-org@0.4.3

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 538ca90790: Use updated type names from @backstage/catalog-client
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

## @backstage/plugin-pagerduty@0.3.26

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • edeeac7e9d: Switch luxon dependency range to be ^2.0.2 rather than 2.0.2.
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

## @backstage/plugin-permission-react@0.3.1

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-permission-common@0.5.0
    • @backstage/config@0.1.14

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/config@0.1.14

## @backstage/plugin-rollbar@0.3.27

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 1433045c08: Removed unused helmet dependency.
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/config@0.1.14

## @backstage/plugin-scaffolder@0.12.3

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 538ca90790: Use updated type names from @backstage/catalog-client
  • deaf6065db: Adapt to the new CatalogApi.getLocationByRef
  • e72d371296: Use TemplateEntityV1beta2 from @backstage/plugin-scaffolder-common instead
    of @backstage/catalog-model.
  • Updated dependencies
    • @backstage/plugin-scaffolder-common@0.2.0
    • @backstage/catalog-client@0.7.0
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/integration-react@0.1.22
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/plugin-permission-react@0.3.1
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15
    • @backstage/types@0.1.2
    • @backstage/plugin-catalog-common@0.1.3

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/errors@0.2.1
    • @backstage/plugin-auth-node@0.1.1
    • @backstage/plugin-permission-common@0.5.0
    • @backstage/config@0.1.14
    • @backstage/search-common@0.2.3
    • @backstage/types@0.1.2
    • @backstage/plugin-permission-node@0.5.0
    • @backstage/plugin-search-backend-node@0.4.6

## @backstage/plugin-search-backend-module-elasticsearch@0.0.9

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • 4c0332e55c: chore(deps-dev): bump @elastic/elasticsearch-mock from 0.3.0 to 1.0.0
  • Updated dependencies
    • @backstage/config@0.1.14
    • @backstage/search-common@0.2.3

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/search-common@0.2.3
    • @backstage/plugin-search-backend-node@0.4.6

## @backstage/plugin-search-backend-node@0.4.6

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/search-common@0.2.3

## @backstage/plugin-sentry@0.3.37

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

## @backstage/plugin-sonarqube@0.2.17

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15
    • @backstage/types@0.1.2
    • @backstage/plugin-tech-insights-common@0.2.2

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • 538ca90790: Use updated type names from @backstage/catalog-client
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/catalog-client@0.7.0
    • @backstage/errors@0.2.1
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/plugin-tech-insights-common@0.2.2
    • @backstage/plugin-tech-insights-node@0.2.3

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/errors@0.2.1
    • @backstage/config@0.1.14
    • @backstage/plugin-tech-insights-common@0.2.2
    • @backstage/plugin-tech-insights-node@0.2.3

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/types@0.1.2

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/config@0.1.14
    • @backstage/plugin-tech-insights-common@0.2.2

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/theme@0.2.15

## @backstage/plugin-techdocs@0.13.4

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 6553985cd4: Match text size of admonitions to main content text size.
  • 9df7b43e1a: Improve overall appearance of highlighted code in docs.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/integration-react@0.1.22
    • @backstage/plugin-catalog@0.8.0
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/plugin-search@0.7.0
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15

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

Patch Changes

  • 453145abba: Do not use cross-fetch in the backend
  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 811c710a21: Fix bug where tech docs collator stores search indices with wrong entity ref casing. Make the collator to conform legacyPathCasing configuration option.
  • 7aeb491394: Replace use of deprecated ENTITY_DEFAULT_NAMESPACE constant with DEFAULT_NAMESPACE.
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/catalog-client@0.7.0
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/search-common@0.2.3
    • @backstage/techdocs-common@0.11.8
    • @backstage/plugin-catalog-common@0.1.3

## @backstage/plugin-todo@0.2.1

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 27eccab216: Replaces use of deprecated catalog-model constants.
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/catalog-model@0.10.0
    • @backstage/theme@0.2.15

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

Patch Changes

  • c77c5c7eb6: Added backstage.role to package.json
  • edbc03814a: Replace usage of serializeEntityRef with stringifyEntityRef
  • deaf6065db: Adapt to the new CatalogApi.getLocationByRef
  • 216725b434: Updated to use new names for parseLocationRef and stringifyLocationRef
  • 27eccab216: Replaces use of deprecated catalog-model constants.
  • Updated dependencies
    • @backstage/backend-common@0.10.8
    • @backstage/catalog-client@0.7.0
    • @backstage/errors@0.2.1
    • @backstage/integration@0.7.3
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14

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

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • 12dd25c2a1: Updated example code for registering feature flags in the EmptyFlags component
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/theme@0.2.15

## @backstage/plugin-xcmetrics@0.2.19

Patch Changes

  • 1ed305728b: Bump node-fetch to version 2.6.7 and cross-fetch to version 3.1.5
  • c77c5c7eb6: Added backstage.role to package.json
  • Updated dependencies
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/errors@0.2.1
    • @backstage/theme@0.2.15

## example-app@0.2.65

Patch Changes

  • Updated dependencies
    • @backstage/cli@0.14.0
    • @backstage/core-app-api@0.5.3
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/integration-react@0.1.22
    • @backstage/plugin-airbrake@0.2.0
    • @backstage/plugin-apache-airflow@0.1.7
    • @backstage/plugin-api-docs@0.7.3
    • @backstage/plugin-azure-devops@0.1.15
    • @backstage/plugin-badges@0.2.23
    • @backstage/plugin-catalog@0.8.0
    • @backstage/plugin-catalog-import@0.8.2
    • @backstage/plugin-catalog-react@0.6.15
    • @backstage/plugin-circleci@0.2.38
    • @backstage/plugin-cloudbuild@0.2.36
    • @backstage/plugin-code-coverage@0.1.26
    • @backstage/plugin-cost-insights@0.11.21
    • @backstage/plugin-explore@0.3.30
    • @backstage/plugin-gcp-projects@0.3.18
    • @backstage/plugin-github-actions@0.4.36
    • @backstage/plugin-gocd@0.1.5
    • @backstage/plugin-graphiql@0.2.31
    • @backstage/plugin-home@0.4.15
    • @backstage/plugin-jenkins@0.5.21
    • @backstage/plugin-kafka@0.2.29
    • @backstage/plugin-kubernetes@0.5.8
    • @backstage/plugin-lighthouse@0.2.38
    • @backstage/plugin-newrelic@0.3.17
    • @backstage/plugin-newrelic-dashboard@0.1.7
    • @backstage/plugin-org@0.4.3
    • @backstage/plugin-pagerduty@0.3.26
    • @backstage/plugin-permission-react@0.3.1
    • @backstage/plugin-rollbar@0.3.27
    • @backstage/plugin-scaffolder@0.12.3
    • @backstage/plugin-search@0.7.0
    • @backstage/plugin-sentry@0.3.37
    • @backstage/plugin-shortcuts@0.2.0
    • @backstage/plugin-tech-insights@0.1.9
    • @backstage/plugin-tech-radar@0.5.6
    • @backstage/plugin-techdocs@0.13.4
    • @backstage/plugin-todo@0.2.1
    • @backstage/plugin-user-settings@0.3.20
    • @backstage/app-defaults@0.1.8
    • @backstage/catalog-model@0.10.0
    • @backstage/search-common@0.2.3
    • @backstage/theme@0.2.15
    • @backstage/plugin-catalog-common@0.1.3
    • @backstage/plugin-catalog-graph@0.2.11

## example-backend@0.2.65

Patch Changes

  • Updated dependencies
    • @backstage/plugin-techdocs-backend@0.13.4
    • @backstage/plugin-catalog-backend@0.21.4
    • @backstage/backend-common@0.10.8
    • @backstage/catalog-client@0.7.0
    • @backstage/integration@0.7.3
    • @backstage/plugin-auth-backend@0.10.1
    • @backstage/plugin-auth-node@0.1.1
    • @backstage/plugin-permission-backend@0.5.0
    • @backstage/plugin-permission-common@0.5.0
    • @backstage/plugin-rollbar-backend@0.1.22
    • @backstage/plugin-scaffolder-backend@0.16.0
    • @backstage/backend-tasks@0.1.7
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/plugin-app-backend@0.3.25
    • @backstage/plugin-azure-devops-backend@0.3.4
    • @backstage/plugin-badges-backend@0.1.19
    • @backstage/plugin-code-coverage-backend@0.1.23
    • @backstage/plugin-graphql-backend@0.1.15
    • @backstage/plugin-jenkins-backend@0.1.14
    • @backstage/plugin-kafka-backend@0.2.18
    • @backstage/plugin-kubernetes-backend@0.4.8
    • @backstage/plugin-permission-node@0.5.0
    • @backstage/plugin-proxy-backend@0.2.19
    • @backstage/plugin-scaffolder-backend-module-rails@0.3.0
    • @backstage/plugin-search-backend@0.4.3
    • @backstage/plugin-search-backend-module-elasticsearch@0.0.9
    • @backstage/plugin-search-backend-module-pg@0.2.7
    • @backstage/plugin-search-backend-node@0.4.6
    • @backstage/plugin-tech-insights-backend@0.2.5
    • @backstage/plugin-tech-insights-backend-module-jsonfc@0.1.9
    • @backstage/plugin-tech-insights-node@0.2.3
    • @backstage/plugin-todo-backend@0.1.22
    • example-app@0.2.65

## techdocs-cli-embedded-app@0.2.64

Patch Changes

  • Updated dependencies
    • @backstage/cli@0.14.0
    • @backstage/core-app-api@0.5.3
    • @backstage/core-components@0.8.9
    • @backstage/core-plugin-api@0.6.1
    • @backstage/integration-react@0.1.22
    • @backstage/test-utils@0.2.5
    • @backstage/plugin-catalog@0.8.0
    • @backstage/plugin-techdocs@0.13.4
    • @backstage/app-defaults@0.1.8
    • @backstage/catalog-model@0.10.0
    • @backstage/config@0.1.14
    • @backstage/theme@0.2.15

Details

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