包详细信息

@backstage/plugin-auth-backend

backstage275.9kApache-2.00.25.1

A Backstage backend plugin that handles authentication

backstage

自述文件

headline

Backstage

English | 한국어 | 中文版 | Français

License CNCF Status Discord Code style Codecov OpenSSF Best Practices OpenSSF Scorecard

What is Backstage?

Backstage is an open source framework for building developer portals. Powered by a centralized software catalog, Backstage restores order to your microservices and infrastructure and enables your product teams to ship high-quality code quickly without compromising autonomy.

Backstage unifies all your infrastructure tooling, services, and documentation to create a streamlined development environment from end to end.

software-catalog

Out of the box, Backstage includes:

  • Backstage Software Catalog for managing all your software such as microservices, libraries, data pipelines, websites, and ML models
  • Backstage Software Templates for quickly spinning up new projects and standardizing your tooling with your organization’s best practices
  • Backstage TechDocs for making it easy to create, maintain, find, and use technical documentation, using a "docs like code" approach
  • Plus, a growing ecosystem of open source plugins that further expand Backstage’s customizability and functionality

Backstage was created by Spotify but is now hosted by the Cloud Native Computing Foundation (CNCF) as an Incubation level project. For more information, see the announcement.

Project roadmap

For information about the detailed project roadmap including delivered milestones, see the Roadmap.

Getting Started

To start using Backstage, see the Getting Started documentation.

Documentation

The documentation of Backstage includes:

Community

To engage with our community, you can use the following resources:

Governance

See the GOVERNANCE.md document in the backstage/community repository.

License

Copyright 2020-2025 © The Backstage Authors. All rights reserved. The Linux Foundation has registered trademarks and uses trademarks. For a list of trademarks of The Linux Foundation, please see our Trademark Usage page: https://www.linuxfoundation.org/trademark-usage

Licensed under the Apache License, Version 2.0: http://www.apache.org/licenses/LICENSE-2.0

Security

Please report sensitive security issues using Spotify's bug-bounty program rather than GitHub.

For further details, see our complete security release process.

更新日志

@backstage/plugin-auth-backend

0.25.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.17.1
    • @backstage/plugin-auth-node@0.6.4
    • @backstage/backend-plugin-api@1.4.0
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1

0.25.1-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.6.4-next.1
    • @backstage/plugin-catalog-node@1.17.1-next.1
    • @backstage/backend-plugin-api@1.4.0-next.1
    • @backstage/catalog-model@1.7.4
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1

0.25.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.4.0-next.0
    • @backstage/plugin-auth-node@0.6.4-next.0
    • @backstage/plugin-catalog-node@1.17.1-next.0

0.25.0

Minor Changes

  • 57221d9: BREAKING: Removed support for the old backend system, and removed all deprecated exports.

    If you were using one of the deprecated imports from this package, you will have to follow the instructions in their respective deprecation notices before upgrading. Most of the general utilities are available from @backstage/plugin-auth-node, and the specific auth providers are available from dedicated packages such as for example @backstage/plugin-auth-backend-module-github-provider. See the auth docs for specific instructions.

Patch Changes

  • 0d606ac: Added the configuration flag auth.omitIdentityTokenOwnershipClaim that causes issued user tokens to no longer contain the ent claim that represents the ownership references of the user.

    The benefit of this new flag is that issued user tokens will be much smaller in size, but they will no longer be self-contained. This means that any consumers of the token that require access to the ownership claims now need to call the /api/auth/v1/userinfo endpoint instead. Within the Backstage ecosystem this is done automatically, as clients will still receive the full set of claims during authentication, while plugin backends will need to use the UserInfoService which already calls the user info endpoint if necessary.

    When enabling this flag, it is important that any custom sign-in resolvers directly return the result of the sign-in method. For example, the following would not work:

    const { token } = await ctx.issueToken({
      claims: { sub: entityRef, ent: [entityRef] },
    });
    return { token }; // WARNING: This will not work with the flag enabled
    

    Instead, the sign-in resolver should directly return the result:

    return ctx.issueToken({
      claims: { sub: entityRef, ent: [entityRef] },
    });
    
  • 72d019d: Removed various typos

  • ab53e6f: Added support for the new dangerousEntityRefFallback option for signInWithCatalogUser in AuthResolverContext.
  • b128ed9: The static key store now issues tokens with the same structure as other key stores. Tokens now include the typ field in the header and the uip (user identity proof) in the payload.
  • Updated dependencies
    • @backstage/catalog-model@1.7.4
    • @backstage/plugin-catalog-node@1.17.0
    • @backstage/plugin-auth-node@0.6.3
    • @backstage/backend-plugin-api@1.3.1
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1

0.25.0-next.2

Patch Changes

  • ab53e6f: Added support for the new dangerousEntityRefFallback option for signInWithCatalogUser in AuthResolverContext.
  • Updated dependencies
    • @backstage/plugin-auth-node@0.6.3-next.2
    • @backstage/backend-plugin-api@1.3.1-next.2
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-catalog-node@1.17.0-next.2

0.25.0-next.1

Patch Changes

  • 0d606ac: Added the configuration flag auth.omitIdentityTokenOwnershipClaim that causes issued user tokens to no longer contain the ent claim that represents the ownership references of the user.

    The benefit of this new flag is that issued user tokens will be much smaller in size, but they will no longer be self-contained. This means that any consumers of the token that require access to the ownership claims now need to call the /api/auth/v1/userinfo endpoint instead. Within the Backstage ecosystem this is done automatically, as clients will still receive the full set of claims during authentication, while plugin backends will need to use the UserInfoService which already calls the user info endpoint if necessary.

    When enabling this flag, it is important that any custom sign-in resolvers directly return the result of the sign-in method. For example, the following would not work:

    const { token } = await ctx.issueToken({
      claims: { sub: entityRef, ent: [entityRef] },
    });
    return { token }; // WARNING: This will not work with the flag enabled
    

    Instead, the sign-in resolver should directly return the result:

    return ctx.issueToken({
      claims: { sub: entityRef, ent: [entityRef] },
    });
    
  • 72d019d: Removed various typos

  • b128ed9: The static key store now issues tokens with the same structure as other key stores. Tokens now include the typ field in the header and the uip (user identity proof) in the payload.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.17.0-next.1
    • @backstage/plugin-auth-node@0.6.3-next.1
    • @backstage/backend-plugin-api@1.3.1-next.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1

0.25.0-next.0

Minor Changes

  • 57221d9: BREAKING: Removed support for the old backend system, and removed all deprecated exports.

    If you were using one of the deprecated imports from this package, you will have to follow the instructions in their respective deprecation notices before upgrading. Most of the general utilities are available from @backstage/plugin-auth-node, and the specific auth providers are available from dedicated packages such as for example @backstage/plugin-auth-backend-module-github-provider. See the auth docs for specific instructions.

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.17.0-next.0
    • @backstage/backend-plugin-api@1.3.1-next.0
    • @backstage/plugin-auth-node@0.6.3-next.0
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1

0.24.5

Patch Changes

  • 25d05f9: Slight update to the config schema
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.2
    • @backstage/plugin-catalog-node@1.16.3
    • @backstage/plugin-auth-backend-module-oidc-provider@0.4.2
    • @backstage/backend-plugin-api@1.3.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.4.2
    • @backstage/plugin-auth-backend-module-auth0-provider@0.2.2
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.2
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.2
    • @backstage/plugin-auth-backend-module-github-provider@0.3.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.3.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.3.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.4.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.2.2
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.3.2
    • @backstage/plugin-auth-node@0.6.2
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.7
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.2
    • @backstage/plugin-auth-backend-module-google-provider@0.3.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.7

0.24.5-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.16.3-next.0
    • @backstage/backend-plugin-api@1.2.1
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.2.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.2-next.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1
    • @backstage/plugin-auth-backend-module-github-provider@0.3.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1
    • @backstage/plugin-auth-backend-module-google-provider@0.3.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6
    • @backstage/plugin-auth-backend-module-oidc-provider@0.4.2-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.2.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1
    • @backstage/plugin-auth-node@0.6.1

0.24.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.2.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.2-next.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1
    • @backstage/plugin-auth-backend-module-github-provider@0.3.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1
    • @backstage/plugin-auth-backend-module-google-provider@0.3.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.4.2-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.2.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1
    • @backstage/plugin-auth-node@0.6.1
    • @backstage/backend-plugin-api@1.2.1
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6
    • @backstage/plugin-catalog-node@1.16.1

0.24.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-oidc-provider@0.4.2-next.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.2.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.1
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1
    • @backstage/plugin-auth-backend-module-github-provider@0.3.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.2.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1
    • @backstage/plugin-auth-node@0.6.1
    • @backstage/backend-plugin-api@1.2.1
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.2-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1
    • @backstage/plugin-auth-backend-module-google-provider@0.3.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6
    • @backstage/plugin-catalog-node@1.16.1

0.24.4

Patch Changes

  • 7956beb: Marked the remaining exports related to createRouter and the old backend system as deprecated.

    For more information about migrating to the new backend system, see the migration guide.

    Support for the old backend system will be removed in the next release of this plugin.

  • b6702ea: Deprecated getDefaultOwnershipEntityRefs in favor of the new .resolveOwnershipEntityRefs(...) method in the AuthResolverContext.

    The following code in a custom sign-in resolver:

    import { getDefaultOwnershipEntityRefs } from '@backstage/plugin-auth-backend';
    
    // ...
    
    const ent = getDefaultOwnershipEntityRefs(entity);
    

    Can be replaced with the following:

    const { ownershipEntityRefs: ent } = await ctx.resolveOwnershipEntityRefs(
      entity,
    );
    
  • Updated dependencies

    • @backstage/plugin-auth-node@0.6.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.4.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.2.1
    • @backstage/backend-plugin-api@1.2.1
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.2.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.1
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1
    • @backstage/plugin-auth-backend-module-github-provider@0.3.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1
    • @backstage/plugin-auth-backend-module-google-provider@0.3.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1
    • @backstage/plugin-catalog-node@1.16.1

0.24.4-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1-next.2
    • @backstage/plugin-auth-backend-module-oidc-provider@0.4.1-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.2.1-next.2
    • @backstage/backend-plugin-api@1.2.1-next.1
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1-next.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.1-next.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6-next.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1-next.1
    • @backstage/plugin-auth-node@0.6.1-next.1
    • @backstage/plugin-catalog-node@1.16.1-next.1

0.24.4-next.1

Patch Changes

  • 7956beb: Marked the remaining exports related to createRouter and the old backend system as deprecated.

    For more information about migrating to the new backend system, see the migration guide.

    Support for the old backend system will be removed in the next release of this plugin.

  • b6702ea: Deprecated getDefaultOwnershipEntityRefs in favor of the new .resolveOwnershipEntityRefs(...) method in the AuthResolverContext.

    The following code in a custom sign-in resolver:

    import { getDefaultOwnershipEntityRefs } from '@backstage/plugin-auth-backend';
    
    // ...
    
    const ent = getDefaultOwnershipEntityRefs(entity);
    

    Can be replaced with the following:

    const { ownershipEntityRefs: ent } = await ctx.resolveOwnershipEntityRefs(
      entity,
    );
    
  • Updated dependencies

    • @backstage/plugin-auth-node@0.6.1-next.1
    • @backstage/backend-plugin-api@1.2.1-next.1
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1-next.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.1-next.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.4.1-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1-next.1
    • @backstage/plugin-catalog-node@1.16.1-next.1

0.24.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.3.1-next.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.4.1-next.0
    • @backstage/plugin-auth-backend-module-auth0-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.1-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.1-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.3.1-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.3.1-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.4.1-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.4.1-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.3.1-next.0
    • @backstage/plugin-auth-node@0.6.1-next.0
    • @backstage/backend-plugin-api@1.2.1-next.0
    • @backstage/plugin-catalog-node@1.16.1-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.1-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.6-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.1-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.3.1-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.6-next.0

0.24.3

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-github-provider@0.3.0
    • @backstage/backend-plugin-api@1.2.0
    • @backstage/plugin-catalog-node@1.16.0
    • @backstage/plugin-auth-node@0.6.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.4.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.0
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.4.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.3.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.3.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.3.0
    • @backstage/plugin-auth-backend-module-google-provider@0.3.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.4.0
    • @backstage/plugin-auth-backend-module-auth0-provider@0.2.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.2.0
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.5
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.5

0.24.3-next.3

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.16.0-next.3
    • @backstage/backend-plugin-api@1.2.0-next.2
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.4.0-next.2
    • @backstage/plugin-auth-backend-module-auth0-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.0-next.3
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.5-next.2
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.0-next.2
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.0-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.0-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.3.0-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.3.0-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.3.0-next.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.3.0-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.4.0-next.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.5-next.2
    • @backstage/plugin-auth-backend-module-oidc-provider@0.4.0-next.3
    • @backstage/plugin-auth-backend-module-okta-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.3.0-next.2
    • @backstage/plugin-auth-node@0.6.0-next.2
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1

0.24.3-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.2.0-next.1
    • @backstage/plugin-auth-node@0.6.0-next.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.4.0-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.2.0-next.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.4.0-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.4.0-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.4.0-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.4.0-next.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.2.0-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.4.0-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.2.0-next.1
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.5-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.5-next.1
    • @backstage/plugin-catalog-node@1.16.0-next.2

0.24.3-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.16.0-next.1
    • @backstage/backend-plugin-api@1.2.0-next.0
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.5-next.0
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.5-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.3-next.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.5-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.5-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.5-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.5-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.5-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.5-next.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.5-next.0
    • @backstage/plugin-auth-node@0.5.7-next.0

0.24.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.15.2-next.0
    • @backstage/backend-plugin-api@1.2.0-next.0
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.5-next.0
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.5-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.3-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.5-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.5-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.5-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.5-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.5-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.5-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.5-next.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.5-next.0
    • @backstage/plugin-auth-node@0.5.7-next.0

0.24.2

Patch Changes

  • 8379bf4: Remove usages of PluginDatabaseManager and PluginEndpointDiscovery and replace with their equivalent service types
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.4
    • @backstage/types@1.2.1
    • @backstage/plugin-auth-node@0.5.6
    • @backstage/backend-plugin-api@1.1.1
    • @backstage/catalog-client@1.9.1
    • @backstage/catalog-model@1.7.3
    • @backstage/config@1.3.2
    • @backstage/errors@1.2.7
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.4
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.4
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.4
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.4
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.4
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.4
    • @backstage/plugin-auth-backend-module-github-provider@0.2.4
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.4
    • @backstage/plugin-auth-backend-module-google-provider@0.2.4
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.4
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.4
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.4
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.4
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.4
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.4
    • @backstage/plugin-catalog-node@1.15.1

0.24.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/types@1.2.1-next.0
    • @backstage/backend-plugin-api@1.1.1-next.1
    • @backstage/catalog-model@1.7.3-next.0
    • @backstage/config@1.3.2-next.0
    • @backstage/errors@1.2.7-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.4-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.4-next.1
    • @backstage/plugin-auth-node@0.5.6-next.1
    • @backstage/plugin-catalog-node@1.15.1-next.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.4-next.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.4-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.4-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.4-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.4-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.4-next.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.2-next.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.4-next.1
    • @backstage/catalog-client@1.9.1-next.0

0.24.2-next.0

Patch Changes

  • 8379bf4: Remove usages of PluginDatabaseManager and PluginEndpointDiscovery and replace with their equivalent service types
  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.6-next.0
    • @backstage/backend-plugin-api@1.1.1-next.0
    • @backstage/catalog-client@1.9.0
    • @backstage/catalog-model@1.7.2
    • @backstage/config@1.3.1
    • @backstage/errors@1.2.6
    • @backstage/types@1.2.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.4-next.0
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.4-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.4-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.4-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.4-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.4-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.4-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.2.4-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.4-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.2.4-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.4-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.4-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.4-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.4-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.4-next.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.4-next.0
    • @backstage/plugin-catalog-node@1.15.1-next.0

0.24.1

Patch Changes

  • c907440: Improved error forwarding for OAuth refresh endpoints
  • 40518ab: Fix issue with jwks endpoint returning invalid data with firestore
  • 5c9cc05: Use native fetch instead of node-fetch
  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.5
    • @backstage/backend-plugin-api@1.1.0
    • @backstage/plugin-catalog-node@1.15.0
    • @backstage/catalog-client@1.9.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.3
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.3
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.3
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.1
    • @backstage/plugin-auth-backend-module-google-provider@0.2.3
    • @backstage/errors@1.2.6
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.3
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.3
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.3
    • @backstage/plugin-auth-backend-module-github-provider@0.2.3
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.3
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.3
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.3
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.3
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.3
    • @backstage/catalog-model@1.7.2
    • @backstage/config@1.3.1
    • @backstage/types@1.2.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.3
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.3
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.3

0.24.1-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.1.0-next.2
    • @backstage/errors@1.2.6-next.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.3-next.2
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.3-next.2
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.3-next.2
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.3-next.2
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.3-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.2.3-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.3-next.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.3-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.3-next.2
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.3-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.3-next.2
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.3-next.2
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.1-next.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.3-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.3-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.2.3-next.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.3-next.2
    • @backstage/plugin-auth-node@0.5.5-next.2
    • @backstage/plugin-catalog-node@1.15.0-next.2
    • @backstage/catalog-client@1.9.0-next.2
    • @backstage/catalog-model@1.7.2-next.0
    • @backstage/config@1.3.1-next.0
    • @backstage/types@1.2.0

0.24.1-next.1

Patch Changes

  • c907440: Improved error forwarding for OAuth refresh endpoints
  • 40518ab: Fix issue with jwks endpoint returning invalid data with firestore
  • 5c9cc05: Use native fetch instead of node-fetch
  • Updated dependencies
    • @backstage/plugin-auth-node@0.5.5-next.1
    • @backstage/plugin-catalog-node@1.15.0-next.1
    • @backstage/catalog-client@1.9.0-next.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.3-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.3-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.3-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.2.3-next.1
    • @backstage/backend-plugin-api@1.1.0-next.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.3-next.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.3-next.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.3-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.3-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.2.3-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.3-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.3-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.3-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.3-next.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.3-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.3-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.3-next.1
    • @backstage/catalog-model@1.7.1
    • @backstage/config@1.3.0
    • @backstage/errors@1.2.5
    • @backstage/types@1.2.0

0.24.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@1.0.3-next.0
    • @backstage/plugin-auth-node@0.5.5-next.0
    • @backstage/catalog-client@1.8.1-next.0
    • @backstage/catalog-model@1.7.1
    • @backstage/config@1.3.0
    • @backstage/errors@1.2.5
    • @backstage/types@1.2.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.3-next.0
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.3-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.1-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.3-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.3-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.3-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.3-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.3-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.2.3-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.3-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.2.3-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.3-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.3-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.3-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.3-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.3-next.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.3-next.0
    • @backstage/plugin-catalog-node@1.14.1-next.0

0.24.0

Minor Changes

  • 75168e3: BREAKING: The AWS ALB fullProfile will no longer have the its username or email converted to lowercase. This is to ensure unique handling of the users. You may need to update and configure a custom sign-in resolver or profile transform as a result.

Patch Changes

  • d52d7f9: Support ISO and ms string forms of durations in config too
  • 4e58bc7: Upgrade to uuid v11 internally
  • Updated dependencies
    • @backstage/catalog-client@1.8.0
    • @backstage/config@1.3.0
    • @backstage/plugin-auth-backend-module-google-provider@0.2.2
    • @backstage/types@1.2.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.0
    • @backstage/plugin-auth-node@0.5.4
    • @backstage/plugin-catalog-node@1.14.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.2
    • @backstage/backend-plugin-api@1.0.2
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.2
    • @backstage/catalog-model@1.7.1
    • @backstage/errors@1.2.5
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.2
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.2
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.2
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.2
    • @backstage/plugin-auth-backend-module-github-provider@0.2.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.2
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.2

0.24.0-next.2

Patch Changes

  • Updated dependencies
    • @backstage/catalog-client@1.8.0-next.1
    • @backstage/plugin-auth-node@0.5.4-next.2
    • @backstage/plugin-catalog-node@1.14.0-next.2
    • @backstage/backend-plugin-api@1.0.2-next.2
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.2-next.2
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.2-next.2
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.0-next.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.2-next.2
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.2-next.2
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.2-next.2
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.2-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.2-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.2.2-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.2-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.2.2-next.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.2-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.2-next.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.2-next.2
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.2-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.2-next.2
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.2-next.2

0.24.0-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-google-provider@0.2.2-next.1
    • @backstage/backend-plugin-api@1.0.2-next.1
    • @backstage/catalog-client@1.8.0-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.2-next.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.2-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.2-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.2-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.2-next.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.2-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.2-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.2.2-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.2-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.2-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.2-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.2-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.2-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.2-next.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.2-next.1
    • @backstage/plugin-auth-node@0.5.4-next.1
    • @backstage/plugin-catalog-node@1.14.0-next.1

0.24.0-next.0

Minor Changes

  • 75168e3: BREAKING: The AWS ALB fullProfile will no longer have the its username or email converted to lowercase. This is to ensure unique handling of the users. You may need to update and configure a custom sign-in resolver or profile transform as a result.

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.3.0-next.0
    • @backstage/plugin-auth-node@0.5.4-next.0
    • @backstage/plugin-catalog-node@1.14.0-next.0
    • @backstage/catalog-client@1.8.0-next.0
    • @backstage/backend-plugin-api@1.0.2-next.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.2-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.2-next.0

0.23.1

Patch Changes

  • 094eaa3: Remove references to in-repo backend-common
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.2.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.1
    • @backstage/plugin-auth-backend-module-github-provider@0.2.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.1
    • @backstage/plugin-auth-backend-module-google-provider@0.2.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.1
    • @backstage/plugin-auth-node@0.5.3
    • @backstage/plugin-catalog-node@1.13.1
    • @backstage/catalog-client@1.7.1
    • @backstage/backend-plugin-api@1.0.1
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.1
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.1

0.23.1-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.1-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.1-next.1
    • @backstage/plugin-auth-node@0.5.3-next.1
    • @backstage/plugin-catalog-node@1.13.1-next.1
    • @backstage/catalog-client@1.7.1-next.0
    • @backstage/backend-plugin-api@1.0.1-next.1
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.1-next.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.1-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.1-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.1-next.1

0.23.1-next.0

Patch Changes

  • 094eaa3: Remove references to in-repo backend-common
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.1-next.0
    • @backstage/plugin-auth-node@0.5.3-next.0
    • @backstage/backend-plugin-api@1.0.1-next.0
    • @backstage/catalog-client@1.7.0
    • @backstage/catalog-model@1.7.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.1-next.0
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.1-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.1-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.1-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.1-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.1-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.1-next.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.1-next.0
    • @backstage/plugin-catalog-node@1.13.1-next.0

0.23.0

Minor Changes

  • d425fc4: BREAKING: The return values from createBackendPlugin, createBackendModule, and createServiceFactory are now simply BackendFeature and ServiceFactory, instead of the previously deprecated form of a function that returns them. For this reason, createServiceFactory also no longer accepts the callback form where you provide direct options to the service. This also affects all coreServices.* service refs.

    This may in particular affect tests; if you were effectively doing createBackendModule({...})() (note the parentheses), you can now remove those extra parentheses at the end. You may encounter cases of this in your packages/backend/src/index.ts too, where you add plugins, modules, and services. If you were using createServiceFactory with a function as its argument for the purpose of passing in options, this pattern has been deprecated for a while and is no longer supported. You may want to explore the new multiton patterns to achieve your goals, or moving settings to app-config.

    As part of this change, the IdentityFactoryOptions type was removed, and can no longer be used to tweak that service. The identity service was also deprecated some time ago, and you will want to migrate to the new auth system if you still rely on it.

Patch Changes

  • 527d973: Migrated the Bitbucket Server auth provider to be implemented using the new @backstage/plugin-auth-backend-module-bitbucket-server-provider module.
  • d908d8c: Migrated the Auth0 auth provider to be implemented using the new @backstage/plugin-auth-backend-module-auth0-provider module.
  • 19ff127: Internal refactor to remove dependencies on the identity and token manager services, which have been removed. Public APIs no longer require the identity service or token manager to be provided.
  • 3c2d690: Allow users without defined email to be ingested by the msgraph catalog plugin and add userIdMatchingUserEntityAnnotation sign-in resolver for the Microsoft auth provider to support sign-in for users without defined email.
  • 92118cd: Updated dependency @node-saml/passport-saml to ^5.0.0.
  • c2b63ab: Updated dependency supertest to ^7.0.0.
  • Updated dependencies
    • @backstage/backend-common@0.25.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.2.0
    • @backstage/backend-plugin-api@1.0.0
    • @backstage/plugin-auth-node@0.5.2
    • @backstage/catalog-model@1.7.0
    • @backstage/catalog-client@1.7.0
    • @backstage/plugin-catalog-node@1.13.0
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.0
    • @backstage/plugin-auth-backend-module-github-provider@0.2.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.0
    • @backstage/plugin-auth-backend-module-google-provider@0.2.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.0
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

0.23.0-next.2

Patch Changes

  • 527d973: Migrated the Bitbucket Server auth provider to be implemented using the new @backstage/plugin-auth-backend-module-bitbucket-server-provider module.
  • d908d8c: Migrated the Auth0 auth provider to be implemented using the new @backstage/plugin-auth-backend-module-auth0-provider module.
  • 92118cd: Updated dependency @node-saml/passport-saml to ^5.0.0.
  • c2b63ab: Updated dependency supertest to ^7.0.0.
  • Updated dependencies
    • @backstage/backend-common@0.25.0-next.2
    • @backstage/plugin-auth-node@0.5.2-next.2
    • @backstage/backend-plugin-api@1.0.0-next.2
    • @backstage/catalog-client@1.7.0-next.1
    • @backstage/plugin-auth-backend-module-auth0-provider@0.1.0-next.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.0-next.2
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.0-next.2
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.0-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.0-next.2
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-bitbucket-server-provider@0.1.0-next.0
    • @backstage/catalog-model@1.6.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.0-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.0-next.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.0-next.2
    • @backstage/plugin-catalog-node@1.12.7-next.2

0.23.0-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.25.0-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.2.0-next.1
    • @backstage/plugin-auth-node@0.5.2-next.1
    • @backstage/catalog-client@1.6.7-next.0
    • @backstage/backend-plugin-api@0.9.0-next.1
    • @backstage/catalog-model@1.6.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.0-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.0-next.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.2.0-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.0-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.2.0-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.0-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.0-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.0-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.0-next.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.0-next.1
    • @backstage/plugin-catalog-node@1.12.7-next.1

0.23.0-next.0

Minor Changes

  • d425fc4: BREAKING: The return values from createBackendPlugin, createBackendModule, and createServiceFactory are now simply BackendFeature and ServiceFactory, instead of the previously deprecated form of a function that returns them. For this reason, createServiceFactory also no longer accepts the callback form where you provide direct options to the service. This also affects all coreServices.* service refs.

    This may in particular affect tests; if you were effectively doing createBackendModule({...})() (note the parentheses), you can now remove those extra parentheses at the end. You may encounter cases of this in your packages/backend/src/index.ts too, where you add plugins, modules, and services. If you were using createServiceFactory with a function as its argument for the purpose of passing in options, this pattern has been deprecated for a while and is no longer supported. You may want to explore the new multiton patterns to achieve your goals, or moving settings to app-config.

    As part of this change, the IdentityFactoryOptions type was removed, and can no longer be used to tweak that service. The identity service was also deprecated some time ago, and you will want to migrate to the new auth system if you still rely on it.

Patch Changes

  • 19ff127: Internal refactor to remove dependencies on the identity and token manager services, which have been removed. Public APIs no longer require the identity service or token manager to be provided.
  • 3c2d690: Allow users without defined email to be ingested by the msgraph catalog plugin and add userIdMatchingUserEntityAnnotation sign-in resolver for the Microsoft auth provider to support sign-in for users without defined email.
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.2.0-next.0
    • @backstage/backend-plugin-api@0.9.0-next.0
    • @backstage/backend-common@0.25.0-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.2.0-next.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.3.0-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.2.0-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.2.0-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.3.0-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.3.0-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.2.0-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.2.0-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.2.0-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.3.0-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.2.0-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.3.0-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.1.0-next.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.2.0-next.0
    • @backstage/plugin-auth-node@0.5.2-next.0
    • @backstage/plugin-catalog-node@1.12.7-next.0
    • @backstage/catalog-client@1.6.6
    • @backstage/catalog-model@1.6.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

0.22.10

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • cc9a7a5: Deprecated createRouter and its router options in favour of the new backend system.
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.2.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.4
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.6
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.18
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.4
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.15
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.18
    • @backstage/plugin-auth-backend-module-github-provider@0.1.20
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.20
    • @backstage/plugin-auth-backend-module-google-provider@0.1.20
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.4
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.4
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.16
    • @backstage/backend-plugin-api@0.8.0
    • @backstage/backend-common@0.24.0
    • @backstage/plugin-auth-node@0.5.0
    • @backstage/plugin-catalog-node@1.12.5
    • @backstage/catalog-model@1.6.0
    • @backstage/catalog-client@1.6.6
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.6
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.16

0.22.10-next.3

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.3
    • @backstage/backend-common@0.23.4-next.3
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.2.0-next.3
    • @backstage/catalog-model@1.6.0-next.0
    • @backstage/catalog-client@1.6.6-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.4-next.3
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.15-next.3
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.6-next.3
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.6-next.3
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.18-next.3
    • @backstage/plugin-auth-backend-module-github-provider@0.1.20-next.3
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.20-next.3
    • @backstage/plugin-auth-backend-module-google-provider@0.1.20-next.3
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.18-next.3
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.4-next.3
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.16-next.3
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.4-next.3
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.16-next.3
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.4-next.3
    • @backstage/plugin-auth-node@0.5.0-next.3
    • @backstage/plugin-catalog-node@1.12.5-next.3

0.22.10-next.2

Patch Changes

  • 93095ee: Make sure node-fetch is version 2.7.0 or greater
  • Updated dependencies
    • @backstage/backend-plugin-api@0.8.0-next.2
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.6-next.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.18-next.2
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.15-next.2
    • @backstage/backend-common@0.23.4-next.2
    • @backstage/plugin-auth-node@0.5.0-next.2
    • @backstage/plugin-catalog-node@1.12.5-next.2
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.4-next.2
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.6-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.1.20-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.20-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.4-next.2
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.4-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.16-next.2
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.4-next.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.6-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.18-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.1.20-next.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.16-next.2
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

0.22.10-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.6-next.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.6-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.18-next.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.4-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.15-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.18-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.20-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.20-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.20-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.16-next.1
    • @backstage/backend-plugin-api@0.7.1-next.1
    • @backstage/backend-common@0.23.4-next.1
    • @backstage/plugin-catalog-node@1.12.5-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.6-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.16-next.1
    • @backstage/plugin-auth-node@0.4.18-next.1

0.22.10-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.23.4-next.0
    • @backstage/plugin-catalog-node@1.12.5-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.18-next.0
    • @backstage/backend-plugin-api@0.7.1-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.4-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.15-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.6-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.6-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.6-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.18-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.20-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.20-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.20-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.4-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.16-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.4-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.16-next.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.4-next.0
    • @backstage/plugin-auth-node@0.4.18-next.0

0.22.9

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.7.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.3
    • @backstage/backend-common@0.23.3
    • @backstage/plugin-auth-node@0.4.17
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.14
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.5
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.5
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.5
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.17
    • @backstage/plugin-auth-backend-module-github-provider@0.1.19
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.19
    • @backstage/plugin-auth-backend-module-google-provider@0.1.19
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.17
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.3
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.15
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.3
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.15
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.3
    • @backstage/plugin-catalog-node@1.12.4
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

0.22.9-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.23.3-next.1
    • @backstage/backend-plugin-api@0.6.22-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.3-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.14-next.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.5-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.5-next.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.5-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.17-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.19-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.19-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.19-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.17-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.3-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.15-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.3-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.15-next.1
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.3-next.1
    • @backstage/plugin-auth-node@0.4.17-next.1
    • @backstage/plugin-catalog-node@1.12.4-next.1

0.22.8-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.6.21-next.0
    • @backstage/backend-common@0.23.2-next.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.13-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.4-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.4-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.4-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.16-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.18-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.18-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.18-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.16-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.14-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.2-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.14-next.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.2-next.0
    • @backstage/plugin-auth-node@0.4.16-next.0
    • @backstage/plugin-catalog-node@1.12.3-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

0.22.6

Patch Changes

  • 3e823d3: Limited user tokens will no longer include the ent field in its payload. Ownership claims will now be fetched from the user info service.

    NOTE: Limited tokens issued prior to this change will no longer be valid. Users may have to clear their browser cookies in order to refresh their auth tokens.

  • 8869b8e: Updated local development setup.

  • 78a0b08: Internal refactor to handle BackendFeature contract change.
  • d44a20a: Added additional plugin metadata to package.json.
  • 3e1bb15: Updated to use the new @backstage/plugin-auth-backend-module-onelogin-provider implementation
  • Updated dependencies
    • @backstage/backend-common@0.23.0
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.0
    • @backstage/backend-plugin-api@0.6.19
    • @backstage/plugin-auth-node@0.4.14
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.12
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.14
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.11
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.14
    • @backstage/plugin-auth-backend-module-github-provider@0.1.16
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.16
    • @backstage/plugin-auth-backend-module-google-provider@0.1.16
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.12
    • @backstage/plugin-catalog-node@1.12.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

0.22.6-next.3

Patch Changes

  • d44a20a: Added additional plugin metadata to package.json.
  • 3e1bb15: Updated to use the new @backstage/plugin-auth-backend-module-onelogin-provider implementation
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-onelogin-provider@0.1.0-next.0
    • @backstage/backend-plugin-api@0.6.19-next.3
    • @backstage/plugin-auth-node@0.4.14-next.3
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.2-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.1.16-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.16-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.1.16-next.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.14-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-oidc-provider@0.2.0-next.3
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.12-next.2
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.2-next.3
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.2-next.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.12-next.2
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.11-next.3
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.14-next.2
    • @backstage/plugin-catalog-node@1.12.1-next.2
    • @backstage/backend-common@0.23.0-next.3
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

0.22.6-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.6.19-next.2
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.10-next.2
    • @backstage/backend-common@0.23.0-next.2
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.11-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.11-next.2
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.2-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.2-next.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.2-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.14-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.16-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.16-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.16-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.14-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.16-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.12-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.12-next.1
    • @backstage/plugin-auth-node@0.4.14-next.2
    • @backstage/plugin-catalog-node@1.12.1-next.1
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

0.22.6-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.6.19-next.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.2-next.1
    • @backstage/backend-common@0.23.0-next.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.11-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.11-next.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.14-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.16-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.16-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.16-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.14-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.16-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.12-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.10-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.12-next.0
    • @backstage/plugin-auth-node@0.4.14-next.1
    • @backstage/plugin-catalog-node@1.12.1-next.0

0.22.6-next.0

Patch Changes

  • 8869b8e: Updated local development setup.
  • Updated dependencies
    • @backstage/backend-common@0.22.1-next.0
    • @backstage/backend-plugin-api@0.6.19-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.11-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.10-next.0
    • @backstage/plugin-auth-node@0.4.14-next.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.11-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.16-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.16-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.16-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.14-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.16-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.12-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.14-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.12-next.0
    • @backstage/plugin-catalog-node@1.12.1-next.0
    • @backstage/catalog-client@1.6.5
    • @backstage/catalog-model@1.5.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

0.22.5

Patch Changes

  • d229dc4: Move path utilities from backend-common to the backend-plugin-api package.
  • 4a0577e: fix: Move config declarations to appropriate auth backend modules
  • ea9262b: Allow overriding default ownership resolving with the new AuthOwnershipResolutionExtensionPoint
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.12.0
    • @backstage/catalog-model@1.5.0
    • @backstage/backend-common@0.22.0
    • @backstage/backend-plugin-api@0.6.18
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.10
    • @backstage/plugin-auth-backend-module-github-provider@0.1.15
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.9
    • @backstage/plugin-auth-node@0.4.13
    • @backstage/catalog-client@1.6.5
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.10
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.13
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.15
    • @backstage/plugin-auth-backend-module-google-provider@0.1.15
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.13
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.15
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.11
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.11

0.22.5-next.2

Patch Changes

  • 4a0577e: fix: Move config declarations to appropriate auth backend modules
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.12.0-next.2
    • @backstage/backend-common@0.22.0-next.2
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.10-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.1.15-next.2

0.22.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.22.0-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.10-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.9-next.1
    • @backstage/plugin-auth-node@0.4.13-next.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.10-next.1
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.1-next.1
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.1-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.15-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.15-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.13-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.15-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.11-next.1
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.1-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.13-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.15-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.11-next.1
    • @backstage/plugin-catalog-node@1.11.2-next.1
    • @backstage/backend-plugin-api@0.6.18-next.1

0.22.5-next.0

Patch Changes

  • ea9262b: Allow overriding default ownership resolving with the new AuthOwnershipResolutionExtensionPoint
  • Updated dependencies
    • @backstage/catalog-model@1.5.0-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.9-next.0
    • @backstage/plugin-auth-node@0.4.13-next.0
    • @backstage/backend-common@0.21.8-next.0
    • @backstage/backend-plugin-api@0.6.18-next.0
    • @backstage/catalog-client@1.6.5-next.0
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.1-next.0
    • @backstage/plugin-catalog-node@1.11.2-next.0
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.10-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.10-next.0
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.1-next.0
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.1-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.13-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.15-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.15-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.15-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.13-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.15-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.11-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.11-next.0

0.22.4

Patch Changes

  • f02fe79: Refactored the azure-easyauth provider to use the implementation from @backstage/plugin-auth-backend-module-azure-easyauth-provider.
  • d62bc51: Added token type header parameter and user identity proof to issued user tokens.
  • ba763b6: Migrate the Bitbucket auth provider to the new @backstage/plugin-auth-backend-module-bitbucket-provider module package.
  • bf4d71a: Initial implementation of the /v1/userinfo endpoint, which is now able to parse and return the sub and ent claims from a Backstage user token.
  • c26218d: Deprecated some of the Cloudflare Access types and used the implementation from @backstage/plugin-auth-backend-module-cloudflare-access-provider
  • Updated dependencies
    • @backstage/backend-common@0.21.7
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.9
    • @backstage/plugin-auth-backend-module-cloudflare-access-provider@0.1.0
    • @backstage/backend-plugin-api@0.6.17
    • @backstage/plugin-auth-backend-module-bitbucket-provider@0.1.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.9
    • @backstage/plugin-auth-node@0.4.12
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.8
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.12
    • @backstage/catalog-client@1.6.4
    • @backstage/plugin-auth-backend-module-azure-easyauth-provider@0.1.0
    • @backstage/plugin-catalog-node@1.11.1
    • @backstage/catalog-model@1.4.5
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.14
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.14
    • @backstage/plugin-auth-backend-module-google-provider@0.1.14
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.12
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.14
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.10
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.10

0.22.4-next.1

Patch Changes

  • d62bc51: Added token type header parameter and user identity proof to issued user tokens.
  • bf4d71a: Initial implementation of the /v1/userinfo endpoint, which is now able to parse and return the sub and ent claims from a Backstage user token.
  • Updated dependencies
    • @backstage/backend-common@0.21.7-next.1
    • @backstage/backend-plugin-api@0.6.17-next.1
    • @backstage/plugin-auth-node@0.4.12-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.9-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.8-next.1
    • @backstage/catalog-client@1.6.4-next.0
    • @backstage/catalog-model@1.4.5
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.9-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.12-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.14-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.14-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.14-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.12-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.14-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.10-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.10-next.1
    • @backstage/plugin-catalog-node@1.11.1-next.1

0.22.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.21.7-next.0
    • @backstage/backend-plugin-api@0.6.17-next.0
    • @backstage/catalog-client@1.6.3
    • @backstage/catalog-model@1.4.5
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.9-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.9-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.12-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.14-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.14-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.14-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.12-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.14-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.10-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.8-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.10-next.0
    • @backstage/plugin-auth-node@0.4.12-next.0
    • @backstage/plugin-catalog-node@1.11.1-next.0

0.22.3

Patch Changes

  • 038b2e6: Only consider entities of kind User when using findCatalogUser with a filter query, unless an explicit kind filter is provided.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.11.0
    • @backstage/catalog-client@1.6.3
    • @backstage/plugin-auth-node@0.4.11
    • @backstage/backend-common@0.21.6
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.8
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.8
    • @backstage/plugin-auth-backend-module-github-provider@0.1.13
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.13
    • @backstage/plugin-auth-backend-module-google-provider@0.1.13
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.11
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.13
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.7
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.9
    • @backstage/backend-plugin-api@0.6.16
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.11
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.9
    • @backstage/catalog-model@1.4.5
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1

0.22.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.10.0
    • @backstage/catalog-client@1.6.2
    • @backstage/backend-common@0.21.5
    • @backstage/plugin-auth-node@0.4.10
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.7
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.6
    • @backstage/backend-plugin-api@0.6.15
    • @backstage/catalog-model@1.4.5
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.7
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.10
    • @backstage/plugin-auth-backend-module-github-provider@0.1.12
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.12
    • @backstage/plugin-auth-backend-module-google-provider@0.1.12
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.10
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.12
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.8
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.8

0.22.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.9.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.6
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.6
    • @backstage/plugin-auth-backend-module-github-provider@0.1.11
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.11
    • @backstage/plugin-auth-backend-module-google-provider@0.1.11
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.9
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.11
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.5
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.7

0.22.0

Minor Changes

  • 293c835: Add support for Service Tokens to Cloudflare Access auth provider
  • 492fe83: BREAKING: The CatalogIdentityClient constructor now also requires the discovery service to be forwarded from the plugin environment. This is part of the migration to support the new auth services, which has also been done for the createRouter function.

Patch Changes

  • 999224f: Bump dependency minimatch to v9
  • 7c29e7f: Fixed refresh scope to match start method in OneLogin provider.
  • 2af5354: Bump dependency jose to v5
  • 38af71a: Updated dependency google-auth-library to ^9.0.0.
  • 0fb419b: Updated dependency uuid to ^9.0.0. Updated dependency @types/uuid to ^9.0.0.
  • fa7ea3f: Internal refactor to break out how the router is constructed
  • Updated dependencies
    • @backstage/backend-common@0.21.4
    • @backstage/plugin-auth-node@0.4.9
    • @backstage/config@1.2.0
    • @backstage/errors@1.2.4
    • @backstage/backend-plugin-api@0.6.14
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.4
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.7
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.9
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.5
    • @backstage/plugin-catalog-node@1.8.0
    • @backstage/catalog-client@1.6.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.9
    • @backstage/plugin-auth-backend-module-google-provider@0.1.11
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.6
    • @backstage/plugin-auth-backend-module-github-provider@0.1.11
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.11
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.11
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.7
    • @backstage/catalog-model@1.4.5
    • @backstage/types@1.1.1

0.22.0-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.4-next.2
    • @backstage/catalog-client@1.6.1-next.1
    • @backstage/backend-common@0.21.4-next.2
    • @backstage/plugin-auth-node@0.4.9-next.2
    • @backstage/plugin-catalog-node@1.8.0-next.2
    • @backstage/backend-plugin-api@0.6.14-next.2
    • @backstage/catalog-model@1.4.5-next.0
    • @backstage/config@1.2.0-next.1
    • @backstage/errors@1.2.4-next.0
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.6-next.2
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.5-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.9-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.1.11-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.11-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.1.11-next.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.9-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.11-next.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.7-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.7-next.2

0.22.0-next.1

Patch Changes

  • Updated dependencies
    • @backstage/config@1.2.0-next.1
    • @backstage/backend-common@0.21.4-next.1
    • @backstage/backend-plugin-api@0.6.14-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.5-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.9-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.4-next.1
    • @backstage/plugin-auth-node@0.4.9-next.1
    • @backstage/catalog-client@1.6.1-next.0
    • @backstage/catalog-model@1.4.5-next.0
    • @backstage/errors@1.2.4-next.0
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.6-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.9-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.11-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.11-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.11-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.11-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.7-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.7-next.1
    • @backstage/plugin-catalog-node@1.8.0-next.1

0.22.0-next.0

Minor Changes

  • 293c835: Add support for Service Tokens to Cloudflare Access auth provider
  • 492fe83: BREAKING: The CatalogIdentityClient constructor now also requires the discovery service to be forwarded from the plugin environment. This is part of the migration to support the new auth services, which has also been done for the createRouter function.

Patch Changes

  • 999224f: Bump dependency minimatch to v9
  • 2af5354: Bump dependency jose to v5
  • 38af71a: Updated dependency google-auth-library to ^9.0.0.
  • 0fb419b: Updated dependency uuid to ^9.0.0. Updated dependency @types/uuid to ^9.0.0.
  • fa7ea3f: Internal refactor to break out how the router is constructed
  • Updated dependencies
    • @backstage/backend-common@0.21.3-next.0
    • @backstage/plugin-auth-node@0.4.8-next.0
    • @backstage/errors@1.2.4-next.0
    • @backstage/backend-plugin-api@0.6.13-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.6-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.8-next.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.4-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.3-next.0
    • @backstage/plugin-catalog-node@1.8.0-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.8-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.10-next.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.5-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.10-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.10-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.10-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.6-next.0
    • @backstage/catalog-client@1.6.1-next.0
    • @backstage/catalog-model@1.4.5-next.0
    • @backstage/config@1.1.2-next.0
    • @backstage/types@1.1.1

0.21.0

Minor Changes

  • 7dd8463: BREAKING: The saml provider has been migrated from passport-saml to @node-saml/passport-saml.

    This comes with breaking changes to config options:

    • audience is now mandatory
    • wantAuthnResponseSigned is now exposed and defaults to true
    • wantAssertionsSigned is now exposed and defaults to true

Patch Changes

  • 97f8724: Support additional algorithms in the /.well-known/openid-configuration endpoint.
  • a3f1fa3: Use the externalized auth-backend-module-microsoft-provider again.
  • a9e0107: The auth backend will now refuse to issue user tokens are excessively large.
  • 5d2fcba: Migrated oidc auth provider to new @backstage/plugin-auth-backend-module-oidc-provider module package.
  • d4cc552: The helper function makeProfileInfo and PassportHelpers.transformProfile were refactored to use the jose library.
  • 6bb6f3e: Updated dependency fs-extra to ^11.2.0. Updated dependency @types/fs-extra to ^11.0.0.
  • 23a98f8: Migrated the AWS ALB auth provider to new @backstage/plugin-auth-backend-module-aws-alb-provider module package.
  • f5e04e3: Internal refactor to no longer use deprecated types
  • 8321c97: Added experimentalExtraAllowedOrigins to config
  • 8e8a25d: Ability for user to configure backstage token expiration
  • Updated dependencies
    • @backstage/backend-common@0.21.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.3
    • @backstage/plugin-auth-node@0.4.4
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.0
    • @backstage/backend-plugin-api@0.6.10
    • @backstage/catalog-model@1.4.4
    • @backstage/catalog-client@1.6.0
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5
    • @backstage/plugin-auth-backend-module-github-provider@0.1.7
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7
    • @backstage/plugin-catalog-node@1.7.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.7
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/types@1.1.1

0.21.0-next.3

Patch Changes

  • 8321c97: Added experimentalExtraAllowedOrigins to config
  • Updated dependencies
    • @backstage/backend-common@0.21.0-next.3
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.3
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.3
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.3
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.3
    • @backstage/plugin-auth-backend-module-github-provider@0.1.7-next.3
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.3
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.3
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.3
    • @backstage/plugin-catalog-node@1.6.2-next.3
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.0-next.2
    • @backstage/plugin-auth-node@0.4.4-next.3
    • @backstage/backend-plugin-api@0.6.10-next.3
    • @backstage/catalog-client@1.6.0-next.1
    • @backstage/catalog-model@1.4.4-next.0
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.3
    • @backstage/plugin-auth-backend-module-google-provider@0.1.7-next.3

0.21.0-next.2

Minor Changes

  • 7dd8463: BREAKING: The saml provider has been migrated from passport-saml to @node-saml/passport-saml.

    This comes with breaking changes to config options:

    • audience is now mandatory
    • wantAuthnResponseSigned is now exposed and defaults to true
    • wantAssertionsSigned is now exposed and defaults to true

Patch Changes

  • 97f8724: Support additional algorithms in the /.well-known/openid-configuration endpoint.
  • a9e0107: The auth backend will now refuse to issue user tokens are excessively large.
  • d4cc552: The helper function makeProfileInfo and PassportHelpers.transformProfile were refactored to use the jose library.
  • 8e8a25d: Ability for user to configure backstage token expiration
  • Updated dependencies
    • @backstage/backend-common@0.21.0-next.2
    • @backstage/backend-plugin-api@0.6.10-next.2
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.0-next.1
    • @backstage/plugin-auth-node@0.4.4-next.2
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.1.7-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.1.7-next.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.2
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.2
    • @backstage/plugin-catalog-node@1.6.2-next.2
    • @backstage/config@1.1.1
    • @backstage/catalog-client@1.6.0-next.1
    • @backstage/catalog-model@1.4.4-next.0
    • @backstage/errors@1.2.3
    • @backstage/types@1.1.1

0.20.4-next.1

Patch Changes

  • 23a98f8: Migrated the AWS ALB auth provider to new @backstage/plugin-auth-backend-module-aws-alb-provider module package.
  • Updated dependencies
    • @backstage/catalog-model@1.4.4-next.0
    • @backstage/catalog-client@1.6.0-next.1
    • @backstage/backend-plugin-api@0.6.10-next.1
    • @backstage/backend-common@0.21.0-next.1
    • @backstage/plugin-auth-backend-module-aws-alb-provider@0.1.0-next.0
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.7-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.7-next.1
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.1
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.1
    • @backstage/plugin-auth-node@0.4.4-next.1
    • @backstage/plugin-catalog-node@1.6.2-next.1

0.20.4-next.0

Patch Changes

  • a3f1fa3: Use the externalized auth-backend-module-microsoft-provider again.
  • 5d2fcba: Migrated oidc auth provider to new @backstage/plugin-auth-backend-module-oidc-provider module package.
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.3-next.0
    • @backstage/backend-common@0.21.0-next.0
    • @backstage/catalog-client@1.6.0-next.0
    • @backstage/plugin-auth-backend-module-oidc-provider@0.1.0-next.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.5-next.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.7-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.7-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.7-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.7-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.4-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.2-next.0
    • @backstage/plugin-auth-node@0.4.4-next.0
    • @backstage/plugin-catalog-node@1.6.2-next.0
    • @backstage/backend-plugin-api@0.6.10-next.0
    • @backstage/catalog-model@1.4.3
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3

0.20.3

Patch Changes

  • 004499c: Fixed an issue where some Okta's resolvers were missing
  • 4016f21: Remove some unused dependencies
  • Updated dependencies
    • @backstage/backend-common@0.20.1
    • @backstage/catalog-client@1.5.2
    • @backstage/backend-plugin-api@0.6.9
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.3
    • @backstage/plugin-auth-backend-module-github-provider@0.1.6
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.6
    • @backstage/plugin-auth-backend-module-google-provider@0.1.6
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.6
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.2
    • @backstage/plugin-catalog-node@1.6.1
    • @backstage/plugin-auth-node@0.4.3
    • @backstage/catalog-model@1.4.3
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3

0.20.3-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-plugin-api@0.6.9-next.2
    • @backstage/backend-common@0.20.1-next.2
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.1-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.3-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.1.6-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.6-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.1.6-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.6-next.2
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.1-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.2-next.2
    • @backstage/plugin-auth-node@0.4.3-next.2
    • @backstage/plugin-catalog-node@1.6.1-next.2

0.20.3-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.20.1-next.1
    • @backstage/config@1.1.1
    • @backstage/plugin-auth-node@0.4.3-next.1
    • @backstage/backend-plugin-api@0.6.9-next.1
    • @backstage/catalog-client@1.5.2-next.0
    • @backstage/catalog-model@1.4.3
    • @backstage/errors@1.2.3
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.1-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.3-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.6-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.6-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.6-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.6-next.1
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.1-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.2-next.1
    • @backstage/plugin-catalog-node@1.6.1-next.1

0.20.3-next.0

Patch Changes

  • 004499c: Fixed an issue where some Okta's resolvers were missing
  • 4016f21: Remove some unused dependencies
  • Updated dependencies
    • @backstage/backend-common@0.20.1-next.0
    • @backstage/catalog-client@1.5.2-next.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.1-next.0
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.1-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.3-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.6-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.6-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.6-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.6-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.2-next.0
    • @backstage/plugin-catalog-node@1.6.1-next.0
    • @backstage/backend-plugin-api@0.6.9-next.0
    • @backstage/catalog-model@1.4.3
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/plugin-auth-node@0.4.3-next.0

0.20.1

Patch Changes

  • 7ac2575: oauth2-proxy auth implementation has been moved to @backstage/plugin-auth-backend-module-oauth2-proxy-provider
  • 2a5891e: Migrate the atlassian auth provider to be implemented using the new @backstage/plugin-auth-backend-module-atlassian-provider module
  • 783797a: fix static token issuer not being able to initialize
  • e1c189b: The Okta provider implementation is moved to the new module
  • a62764b: Updated dependency passport to ^0.7.0.
  • bcbbf8e: Updated dependency @google-cloud/firestore to ^7.0.0.
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0
    • @backstage/backend-common@0.20.0
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.0
    • @backstage/plugin-catalog-node@1.6.0
    • @backstage/catalog-client@1.5.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5
    • @backstage/plugin-auth-node@0.4.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2
    • @backstage/plugin-auth-backend-module-google-provider@0.1.5
    • @backstage/plugin-auth-backend-module-github-provider@0.1.5
    • @backstage/backend-plugin-api@0.6.8
    • @backstage/catalog-model@1.4.3
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/types@1.1.1

0.20.1-next.3

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.20.0-next.3
    • @backstage/backend-plugin-api@0.6.8-next.3
    • @backstage/catalog-client@1.5.0-next.1
    • @backstage/catalog-model@1.4.3
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0-next.3
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2-next.3
    • @backstage/plugin-auth-backend-module-github-provider@0.1.5-next.3
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5-next.3
    • @backstage/plugin-auth-backend-module-google-provider@0.1.5-next.3
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5-next.3
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.0-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.1-next.3
    • @backstage/plugin-auth-node@0.4.2-next.3
    • @backstage/plugin-catalog-node@1.6.0-next.3

0.20.1-next.2

Patch Changes

  • 783797a: fix static token issuer not being able to initialize
  • a62764b: Updated dependency passport to ^0.7.0.
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.0-next.1
    • @backstage/plugin-catalog-node@1.6.0-next.2
    • @backstage/backend-common@0.20.0-next.2
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5-next.2
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.1-next.2
    • @backstage/plugin-auth-node@0.4.2-next.2
    • @backstage/catalog-client@1.5.0-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.1.5-next.2
    • @backstage/backend-plugin-api@0.6.8-next.2
    • @backstage/catalog-model@1.4.3
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.5-next.2

0.20.1-next.1

Patch Changes

  • 7ac25759a5: oauth2-proxy auth implementation has been moved to @backstage/plugin-auth-backend-module-oauth2-proxy-provider
  • bcbbf8e042: Updated dependency @google-cloud/firestore to ^7.0.0.
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-oauth2-proxy-provider@0.1.0-next.0
    • @backstage/catalog-client@1.5.0-next.0
    • @backstage/backend-common@0.20.0-next.1
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.5-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.5-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5-next.1
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.1-next.1
    • @backstage/backend-plugin-api@0.6.8-next.1
    • @backstage/catalog-model@1.4.3
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2-next.1
    • @backstage/plugin-auth-node@0.4.2-next.1
    • @backstage/plugin-catalog-node@1.5.1-next.1

0.20.1-next.0

Patch Changes

  • 2a5891e816: Migrate the atlassian auth provider to be implemented using the new @backstage/plugin-auth-backend-module-atlassian-provider module
  • e1c189b524: The Okta provider implementation is moved to the new module
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-atlassian-provider@0.1.0-next.0
    • @backstage/backend-common@0.20.0-next.0
    • @backstage/plugin-auth-backend-module-okta-provider@0.0.1-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.5-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.5-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.5-next.0
    • @backstage/plugin-auth-node@0.4.2-next.0
    • @backstage/plugin-catalog-node@1.5.1-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.5-next.0
    • @backstage/backend-plugin-api@0.6.8-next.0
    • @backstage/catalog-client@1.4.6
    • @backstage/catalog-model@1.4.3
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.2-next.0

0.20.0

Minor Changes

  • bdf08ad04a: Adds the StaticTokenIssuer and StaticKeyStore, an alternative token issuer that can be used to sign the Authorization header using a predefined public/private key pair.

Patch Changes

  • 243c655a68: JSDoc and Error message updates to handle Azure Active Directory re-brand to Entra ID
  • 013611b42e: knex has been bumped to major version 3 and better-sqlite3 to major version 9, which deprecate node 16 support.
  • f2fc5acca6: Added an optional additionalScopes configuration parameter to okta providers, that lets you add additional scopes on top of the default ones.
  • 96c4f54bf6: Reverted the Microsoft auth provider to the previous implementation.
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.5.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.4
    • @backstage/backend-common@0.19.9
    • @backstage/backend-plugin-api@0.6.7
    • @backstage/catalog-client@1.4.6
    • @backstage/catalog-model@1.4.3
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.4
    • @backstage/plugin-auth-backend-module-google-provider@0.1.4
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.4
    • @backstage/plugin-auth-node@0.4.1

0.20.0-next.2

Patch Changes

  • #20570 013611b42e Thanks @freben! - knex has been bumped to major version 3 and better-sqlite3 to major version 9, which deprecate node 16 support.

  • Updated dependencies

    • @backstage/backend-plugin-api@0.6.7-next.2
    • @backstage/backend-common@0.19.9-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.1-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.1.4-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.4-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.1.4-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.4-next.2
    • @backstage/plugin-auth-node@0.4.1-next.2
    • @backstage/plugin-catalog-node@1.5.0-next.2

0.20.0-next.1

Patch Changes

  • 243c655a68: JSDoc and Error message updates to handle Azure Active Directory re-brand to Entra ID
  • Updated dependencies
    • @backstage/plugin-catalog-node@1.5.0-next.1
    • @backstage/backend-common@0.19.9-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.4-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.4-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.4-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.4-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.1-next.1
    • @backstage/plugin-auth-node@0.4.1-next.1
    • @backstage/backend-plugin-api@0.6.7-next.1
    • @backstage/catalog-client@1.4.5
    • @backstage/catalog-model@1.4.3
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/types@1.1.1

0.20.0-next.0

Minor Changes

  • bdf08ad04a: Adds the StaticTokenIssuer and StaticKeyStore, an alternative token issuer that can be used to sign the Authorization header using a predefined public/private key pair.

Patch Changes

  • 96c4f54bf6: Reverted the Microsoft auth provider to the previous implementation.
  • Updated dependencies
    • @backstage/backend-common@0.19.9-next.0
    • @backstage/backend-plugin-api@0.6.7-next.0
    • @backstage/catalog-client@1.4.5
    • @backstage/catalog-model@1.4.3
    • @backstage/config@1.1.1
    • @backstage/errors@1.2.3
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.1-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.4-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.4-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.4-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.4-next.0
    • @backstage/plugin-auth-node@0.4.1-next.0
    • @backstage/plugin-catalog-node@1.4.8-next.0

0.19.3

Patch Changes

  • 9ff7935152: Fixed bug in oidc refresh handler, if token endpoints response on refresh request does not contain a scope, the requested scope is used.
  • 2d8f7e82c1: Migrated the Microsoft auth provider to new @backstage/plugin-auth-backend-module-microsoft-provider module package.
  • Updated dependencies
    • @backstage/backend-common@0.19.8
    • @backstage/plugin-catalog-node@1.4.7
    • @backstage/plugin-auth-node@0.4.0
    • @backstage/catalog-model@1.4.3
    • @backstage/errors@1.2.3
    • @backstage/plugin-auth-backend-module-github-provider@0.1.3
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.0
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.0
    • @backstage/backend-plugin-api@0.6.6
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.3
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.3
    • @backstage/catalog-client@1.4.5
    • @backstage/config@1.1.1
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.3

0.19.3-next.2

Patch Changes

  • 2d8f7e82c1: Migrated the Microsoft auth provider to new @backstage/plugin-auth-backend-module-microsoft-provider module package.
  • Updated dependencies
    • @backstage/backend-common@0.19.8-next.2
    • @backstage/plugin-auth-node@0.4.0-next.2
    • @backstage/catalog-model@1.4.3-next.0
    • @backstage/errors@1.2.3-next.0
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.2.0-next.2
    • @backstage/plugin-auth-backend-module-microsoft-provider@0.1.0-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.3-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.3-next.2
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.3-next.2
    • @backstage/plugin-catalog-node@1.4.7-next.2
    • @backstage/backend-plugin-api@0.6.6-next.2
    • @backstage/catalog-client@1.4.5-next.0
    • @backstage/config@1.1.1-next.0
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.3-next.2

0.19.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/plugin-catalog-node@1.4.6-next.1
    • @backstage/backend-common@0.19.7-next.1
    • @backstage/backend-plugin-api@0.6.5-next.1
    • @backstage/plugin-auth-backend-module-github-provider@0.1.2-next.1
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.2-next.1
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.2-next.1
    • @backstage/plugin-auth-node@0.3.2-next.1
    • @backstage/config@1.1.0
    • @backstage/catalog-client@1.4.4
    • @backstage/catalog-model@1.4.2
    • @backstage/errors@1.2.2
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.1.2-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.2-next.1

0.19.2-next.0

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-github-provider@0.1.2-next.0
    • @backstage/plugin-auth-node@0.3.2-next.0
    • @backstage/backend-common@0.19.7-next.0
    • @backstage/config@1.1.0
    • @backstage/backend-plugin-api@0.6.5-next.0
    • @backstage/catalog-client@1.4.4
    • @backstage/catalog-model@1.4.2
    • @backstage/errors@1.2.2
    • @backstage/types@1.1.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.2-next.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.2-next.0
    • @backstage/plugin-catalog-node@1.4.6-next.0

0.19.0

Minor Changes

  • 71114ac50e02: BREAKING: The export for the new backend system has been moved to be the default export.

    For example, if you are currently importing the plugin using the following pattern:

    import { examplePlugin } from '@backstage/plugin-example-backend';
    
    backend.add(examplePlugin);
    

    It should be migrated to this:

    backend.add(import('@backstage/plugin-example-backend'));
    

Patch Changes

  • 080cc7794700: Migrated the GitLab auth provider to be implemented using the new @backstage/plugin-auth-backend-module-gitlab-provider module.
  • 7944d43f4790: Added authPlugin export for the new backend system. The plugin does not include any built-in auth providers, they must instead be added by installing additional modules, for example authModuleGoogleProvider from @backstage/plugin-auth-backend-module-google-provider.
  • 8513cd7d00e3: Deprecated several exports that are now available from @backstage/plugin-auth-node instead.
  • 7944d43f4790: Added the ability to disable the built-in auth providers by passing disableDefaultProviderFactories to createRouter.
  • 7944d43f4790: The algorithm used when generating Backstage tokens can be configured via auth.identityTokenAlgorithm.
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.1.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.0
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.0
    • @backstage/backend-common@0.19.5
    • @backstage/plugin-auth-node@0.3.0
    • @backstage/config@1.1.0
    • @backstage/catalog-client@1.4.4
    • @backstage/catalog-model@1.4.2
    • @backstage/errors@1.2.2
    • @backstage/types@1.1.1
    • @backstage/backend-plugin-api@0.6.3
    • @backstage/plugin-catalog-node@1.4.4

0.19.0-next.3

Minor Changes

  • 71114ac50e02: BREAKING: The export for the new backend system has been moved to be the default export.

    For example, if you are currently importing the plugin using the following pattern:

    import { examplePlugin } from '@backstage/plugin-example-backend';
    
    backend.add(examplePlugin);
    

    It should be migrated to this:

    backend.add(import('@backstage/plugin-example-backend'));
    

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.1.0-next.3
    • @backstage/plugin-auth-backend-module-github-provider@0.1.0-next.3
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.0-next.2
    • @backstage/plugin-auth-backend-module-google-provider@0.1.0-next.3
    • @backstage/plugin-auth-backend-module-oauth2-provider@0.1.0-next.0
    • @backstage/catalog-client@1.4.4-next.2
    • @backstage/catalog-model@1.4.2-next.2
    • @backstage/config@1.1.0-next.2
    • @backstage/errors@1.2.2-next.0
    • @backstage/types@1.1.1-next.0
    • @backstage/backend-plugin-api@0.6.3-next.3
    • @backstage/backend-common@0.19.5-next.3
    • @backstage/plugin-auth-node@0.3.0-next.3
    • @backstage/plugin-catalog-node@1.4.4-next.3

0.18.9-next.2

Patch Changes

  • Updated dependencies
    • @backstage/config@1.1.0-next.1
    • @backstage/backend-common@0.19.5-next.2
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.1.0-next.2
    • @backstage/plugin-auth-backend-module-github-provider@0.1.0-next.2
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.0-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.0-next.2
    • @backstage/plugin-auth-node@0.3.0-next.2
    • @backstage/plugin-catalog-node@1.4.4-next.2
    • @backstage/backend-plugin-api@0.6.3-next.2
    • @backstage/catalog-model@1.4.2-next.1
    • @backstage/catalog-client@1.4.4-next.1
    • @backstage/errors@1.2.1
    • @backstage/types@1.1.0

0.18.9-next.1

Patch Changes

  • 080cc7794700: Migrated the GitLab auth provider to be implemented using the new @backstage/plugin-auth-backend-module-gitlab-provider module.
  • Updated dependencies
    • @backstage/config@1.1.0-next.0
    • @backstage/plugin-auth-backend-module-gitlab-provider@0.1.0-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.0-next.1
    • @backstage/plugin-auth-backend-module-google-provider@0.1.0-next.1
    • @backstage/backend-common@0.19.5-next.1
    • @backstage/backend-plugin-api@0.6.3-next.1
    • @backstage/catalog-model@1.4.2-next.0
    • @backstage/plugin-auth-node@0.3.0-next.1
    • @backstage/plugin-catalog-node@1.4.4-next.1
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.1.0-next.1
    • @backstage/catalog-client@1.4.4-next.0
    • @backstage/errors@1.2.1
    • @backstage/types@1.1.0

0.18.8-next.0

Patch Changes

  • 7944d43f4790: Added authPlugin export for the new backend system. The plugin does not include any built-in auth providers, they must instead be added by installing additional modules, for example authModuleGoogleProvider from @backstage/plugin-auth-backend-module-google-provider.
  • 8513cd7d00e3: Deprecated several exports that are now available from @backstage/plugin-auth-node instead.
  • 7944d43f4790: Added the ability to disable the built-in auth providers by passing disableDefaultProviderFactories to createRouter.
  • 7944d43f4790: The algorithm used when generating Backstage tokens can be configured via auth.identityTokenAlgorithm.
  • Updated dependencies
    • @backstage/plugin-auth-backend-module-gcp-iap-provider@0.1.0-next.0
    • @backstage/plugin-auth-node@0.3.0-next.0
    • @backstage/backend-common@0.19.4-next.0
    • @backstage/plugin-auth-backend-module-google-provider@0.1.0-next.0
    • @backstage/plugin-auth-backend-module-github-provider@0.1.0-next.0
    • @backstage/backend-plugin-api@0.6.2-next.0
    • @backstage/catalog-client@1.4.3
    • @backstage/catalog-model@1.4.1
    • @backstage/config@1.0.8
    • @backstage/errors@1.2.1
    • @backstage/types@1.1.0
    • @backstage/plugin-catalog-node@1.4.3-next.0

0.18.6

Patch Changes

  • 16452cd007ae: Updated frameHandler to return undefined when using the redirect flow instead of returning postMessageReponse which was causing errors
  • 9dad4b0e61bd: Updated config schema to match what was being used in code
  • bb70a9c3886a: Add frontend visibility to provider objects in auth config.
  • Updated dependencies
    • @backstage/backend-common@0.19.2
    • @backstage/plugin-auth-node@0.2.17
    • @backstage/catalog-client@1.4.3
    • @backstage/catalog-model@1.4.1
    • @backstage/config@1.0.8
    • @backstage/errors@1.2.1
    • @backstage/types@1.1.0

0.18.6-next.2

Patch Changes

  • 16452cd007ae: Updated frameHandler to return undefined when using the redirect flow instead of returning postMessageReponse which was causing errors
  • bb70a9c3886a: Add frontend visibility to provider objects in auth config.
  • Updated dependencies
    • @backstage/backend-common@0.19.2-next.2
    • @backstage/plugin-auth-node@0.2.17-next.2

0.18.6-next.1

Patch Changes

  • 9dad4b0e61bd: Updated config schema to match what was being used in code
  • Updated dependencies
    • @backstage/backend-common@0.19.2-next.1
    • @backstage/plugin-auth-node@0.2.17-next.1
    • @backstage/catalog-client@1.4.3
    • @backstage/catalog-model@1.4.1
    • @backstage/config@1.0.8
    • @backstage/errors@1.2.1
    • @backstage/types@1.1.0

0.18.6-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.19.2-next.0
    • @backstage/catalog-client@1.4.3
    • @backstage/catalog-model@1.4.1
    • @backstage/config@1.0.8
    • @backstage/errors@1.2.1
    • @backstage/types@1.1.0
    • @backstage/plugin-auth-node@0.2.17-next.0

0.18.5

Patch Changes

  • c27ae5004fc2: Support for Token Endpoint Auth Method for OIDC Provider
  • Updated dependencies
    • @backstage/errors@1.2.1
    • @backstage/backend-common@0.19.1
    • @backstage/catalog-client@1.4.3
    • @backstage/catalog-model@1.4.1
    • @backstage/config@1.0.8
    • @backstage/types@1.1.0
    • @backstage/plugin-auth-node@0.2.16

0.18.5-next.1

Patch Changes

  • c27ae5004fc2: Support for Token Endpoint Auth Method for OIDC Provider
  • Updated dependencies
    • @backstage/config@1.0.8

0.18.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/errors@1.2.1-next.0
    • @backstage/backend-common@0.19.1-next.0
    • @backstage/catalog-client@1.4.3-next.0
    • @backstage/catalog-model@1.4.1-next.0
    • @backstage/config@1.0.8
    • @backstage/types@1.1.0
    • @backstage/plugin-auth-node@0.2.16-next.0

0.18.4

Patch Changes

  • d0f5b0c886c2: Set the expiration time of oidc idToken to be less than backstage session expiration time.
  • Updated dependencies
    • @backstage/backend-common@0.19.0
    • @backstage/catalog-client@1.4.2
    • @backstage/types@1.1.0
    • @backstage/catalog-model@1.4.0
    • @backstage/errors@1.2.0
    • @backstage/plugin-auth-node@0.2.15
    • @backstage/config@1.0.8

0.18.4-next.3

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.19.0-next.2
    • @backstage/catalog-model@1.4.0-next.1
    • @backstage/catalog-client@1.4.2-next.2
    • @backstage/config@1.0.7
    • @backstage/errors@1.2.0-next.0
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.15-next.2

0.18.4-next.2

Patch Changes

  • d0f5b0c886c2: Set the expiration time of oidc idToken to be less than backstage session expiration time.
  • Updated dependencies
    • @backstage/config@1.0.7

0.18.4-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.19.0-next.1
    • @backstage/errors@1.2.0-next.0
    • @backstage/catalog-model@1.4.0-next.0
    • @backstage/plugin-auth-node@0.2.15-next.1
    • @backstage/catalog-client@1.4.2-next.1
    • @backstage/config@1.0.7
    • @backstage/types@1.0.2

0.18.4-next.0

Patch Changes

  • Updated dependencies
    • @backstage/catalog-client@1.4.2-next.0
    • @backstage/backend-common@0.18.6-next.0
    • @backstage/config@1.0.7
    • @backstage/catalog-model@1.3.0
    • @backstage/errors@1.1.5
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.15-next.0

0.18.3

Patch Changes

  • 7c116bcac7f: Fixed the way that some request errors are thrown
  • 473db605a4f: Fix config schema definition.
  • 3ffcdac7d07: Added a persistent session store through the database
  • Updated dependencies
    • @backstage/backend-common@0.18.5
    • @backstage/plugin-auth-node@0.2.14
    • @backstage/catalog-client@1.4.1
    • @backstage/catalog-model@1.3.0
    • @backstage/config@1.0.7
    • @backstage/errors@1.1.5
    • @backstage/types@1.0.2

0.18.3-next.2

Patch Changes

  • 3ffcdac7d07: Added a persistent session store through the database
  • Updated dependencies
    • @backstage/config@1.0.7

0.18.3-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.18.5-next.1
    • @backstage/plugin-auth-node@0.2.14-next.1
    • @backstage/config@1.0.7

0.18.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.18.5-next.0
    • @backstage/plugin-auth-node@0.2.14-next.0
    • @backstage/catalog-client@1.4.1
    • @backstage/catalog-model@1.3.0
    • @backstage/config@1.0.7
    • @backstage/errors@1.1.5
    • @backstage/types@1.0.2

0.18.2

Patch Changes

  • d8f774c30df: Enforce the secret visibility of certificates and client secrets in the auth backend. Also, document all known options for each auth plugin.
  • 7908d72e033: Introduce a new global config parameter, enableExperimentalRedirectFlow. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
  • 475abd1dc3f: The microsoft (i.e. Azure) auth provider now supports negotiating tokens for Azure resources besides Microsoft Graph (e.g. AKS, Virtual Machines, Machine Learning Services, etc.). When the /frame/handler endpoint is called with an authorization code for a non-Microsoft Graph scope, the user profile will not be fetched. Similarly no user profile or photo data will be fetched by the backend if the /refresh endpoint is called with the scope query parameter strictly containing scopes for resources besides Microsoft Graph.

    Furthermore, the offline_access scope will be requested by default, even when it is not mentioned in the argument to getAccessToken. This means that any Azure access token can be automatically refreshed, even if the user has not signed in via Azure.

  • 6a900951336: Add common identify resolvers for oidc auth provider.

  • a0ef1ec7349: Export Azure Easy Auth provider so it can actually be used.
  • e0c6e8b9c3c: Update peer dependencies
  • Updated dependencies
    • @backstage/backend-common@0.18.4
    • @backstage/catalog-client@1.4.1
    • @backstage/catalog-model@1.3.0
    • @backstage/plugin-auth-node@0.2.13
    • @backstage/config@1.0.7
    • @backstage/errors@1.1.5
    • @backstage/types@1.0.2

0.18.2-next.3

Patch Changes

  • 475abd1dc3f: The microsoft (i.e. Azure) auth provider now supports negotiating tokens for Azure resources besides Microsoft Graph (e.g. AKS, Virtual Machines, Machine Learning Services, etc.). When the /frame/handler endpoint is called with an authorization code for a non-Microsoft Graph scope, the user profile will not be fetched. Similarly no user profile or photo data will be fetched by the backend if the /refresh endpoint is called with the scope query parameter strictly containing scopes for resources besides Microsoft Graph.

    Furthermore, the offline_access scope will be requested by default, even when it is not mentioned in the argument to getAccessToken. This means that any Azure access token can be automatically refreshed, even if the user has not signed in via Azure.

  • 6a900951336: Add common identify resolvers for oidc auth provider.

  • a0ef1ec7349: Export Azure Easy Auth provider so it can actually be used.
  • Updated dependencies
    • @backstage/catalog-model@1.3.0-next.0
    • @backstage/backend-common@0.18.4-next.2
    • @backstage/catalog-client@1.4.1-next.1
    • @backstage/config@1.0.7
    • @backstage/errors@1.1.5
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.13-next.2

0.18.2-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.18.4-next.2
    • @backstage/catalog-client@1.4.1-next.0
    • @backstage/catalog-model@1.2.1
    • @backstage/config@1.0.7
    • @backstage/errors@1.1.5
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.13-next.2

0.18.2-next.1

Patch Changes

  • e0c6e8b9c3c: Update peer dependencies
  • Updated dependencies
    • @backstage/backend-common@0.18.4-next.1
    • @backstage/catalog-client@1.4.0
    • @backstage/catalog-model@1.2.1
    • @backstage/config@1.0.7
    • @backstage/errors@1.1.5
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.13-next.1

0.18.2-next.0

Patch Changes

  • d8f774c30df: Enforce the secret visibility of certificates and client secrets in the auth backend. Also, document all known options for each auth plugin.
  • 7908d72e033: Introduce a new global config parameter, enableExperimentalRedirectFlow. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
  • Updated dependencies
    • @backstage/backend-common@0.18.4-next.0
    • @backstage/config@1.0.7
    • @backstage/catalog-client@1.4.0
    • @backstage/catalog-model@1.2.1
    • @backstage/errors@1.1.5
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.13-next.0

0.18.1

Patch Changes

  • e262738b8a0: Handle difference in expiration time between Microsoft session and Backstage session which caused the Backstage token to be invalid during a time frame.
  • 86cece2c1fb: Updated dependency @types/passport-microsoft to ^1.0.0.
  • 52b0022dab7: Updated dependency msw to ^1.0.0.
  • 529de8c4211: Added authentication provider for Azure Easy Authentication.
  • Updated dependencies
    • @backstage/catalog-client@1.4.0
    • @backstage/plugin-auth-node@0.2.12
    • @backstage/backend-common@0.18.3
    • @backstage/errors@1.1.5
    • @backstage/catalog-model@1.2.1
    • @backstage/config@1.0.7
    • @backstage/types@1.0.2

0.18.1-next.2

Patch Changes

  • Updated dependencies
    • @backstage/plugin-auth-node@0.2.12-next.2
    • @backstage/backend-common@0.18.3-next.2
    • @backstage/config@1.0.7-next.0

0.18.1-next.1

Patch Changes

  • 86cece2c1fb: Updated dependency @types/passport-microsoft to ^1.0.0.
  • 52b0022dab7: Updated dependency msw to ^1.0.0.
  • Updated dependencies
    • @backstage/errors@1.1.5-next.0
    • @backstage/backend-common@0.18.3-next.1
    • @backstage/catalog-client@1.4.0-next.1
    • @backstage/plugin-auth-node@0.2.12-next.1
    • @backstage/config@1.0.7-next.0
    • @backstage/catalog-model@1.2.1-next.1
    • @backstage/types@1.0.2

0.18.1-next.0

Patch Changes

  • 529de8c421: Added authentication provider for Azure Easy Authentication.
  • Updated dependencies
    • @backstage/catalog-client@1.4.0-next.0
    • @backstage/backend-common@0.18.3-next.0
    • @backstage/catalog-model@1.2.1-next.0
    • @backstage/config@1.0.6
    • @backstage/errors@1.1.4
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.12-next.0

0.18.0

Minor Changes

  • db10b6ef65: Added a Bitbucket Server Auth Provider and added its API to the app defaults

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.18.2
    • @backstage/catalog-model@1.2.0
    • @backstage/catalog-client@1.3.1
    • @backstage/config@1.0.6
    • @backstage/errors@1.1.4
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.11

0.17.5-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.18.2-next.2
    • @backstage/catalog-model@1.2.0-next.1
    • @backstage/plugin-auth-node@0.2.11-next.2
    • @backstage/catalog-client@1.3.1-next.1
    • @backstage/config@1.0.6
    • @backstage/errors@1.1.4
    • @backstage/types@1.0.2

0.17.5-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.18.2-next.1
    • @backstage/catalog-client@1.3.1-next.0
    • @backstage/catalog-model@1.1.6-next.0
    • @backstage/config@1.0.6
    • @backstage/errors@1.1.4
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.11-next.1

0.17.5-next.0

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@1.1.6-next.0
    • @backstage/backend-common@0.18.2-next.0
    • @backstage/catalog-client@1.3.1-next.0
    • @backstage/plugin-auth-node@0.2.11-next.0

0.17.3

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.18.0
    • @backstage/catalog-model@1.1.5
    • @backstage/catalog-client@1.3.0
    • @backstage/config@1.0.6
    • @backstage/errors@1.1.4
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.9

0.17.3-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.18.0-next.1
    • @backstage/catalog-client@1.3.0-next.2
    • @backstage/plugin-auth-node@0.2.9-next.1
    • @backstage/catalog-model@1.1.5-next.1
    • @backstage/config@1.0.6-next.0
    • @backstage/errors@1.1.4
    • @backstage/types@1.0.2

0.17.3-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.18.0-next.0
    • @backstage/config@1.0.6-next.0
    • @backstage/catalog-client@1.3.0-next.1
    • @backstage/catalog-model@1.1.5-next.1
    • @backstage/errors@1.1.4
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.9-next.0

0.17.3-next.0

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@1.1.5-next.0
    • @backstage/catalog-client@1.3.0-next.0
    • @backstage/backend-common@0.17.0
    • @backstage/config@1.0.5
    • @backstage/errors@1.1.4
    • @backstage/types@1.0.2
    • @backstage/plugin-auth-node@0.2.8

0.17.2

Patch Changes

  • 3280711113: Updated dependency msw to ^0.49.0.
  • Updated dependencies
    • @backstage/catalog-client@1.2.0
    • @backstage/backend-common@0.17.0
    • @backstage/errors@1.1.4
    • @backstage/plugin-auth-node@0.2.8
    • @backstage/types@1.0.2
    • @backstage/catalog-model@1.1.4
    • @backstage/config@1.0.5

0.17.2-next.3

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.17.0-next.3
    • @backstage/catalog-client@1.2.0-next.1
    • @backstage/catalog-model@1.1.4-next.1
    • @backstage/config@1.0.5-next.1
    • @backstage/errors@1.1.4-next.1
    • @backstage/types@1.0.2-next.1
    • @backstage/plugin-auth-node@0.2.8-next.3

0.17.2-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.17.0-next.2
    • @backstage/plugin-auth-node@0.2.8-next.2
    • @backstage/catalog-client@1.2.0-next.1
    • @backstage/catalog-model@1.1.4-next.1
    • @backstage/config@1.0.5-next.1
    • @backstage/errors@1.1.4-next.1
    • @backstage/types@1.0.2-next.1

0.17.2-next.1

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.17.0-next.1
    • @backstage/types@1.0.2-next.1
    • @backstage/plugin-auth-node@0.2.8-next.1
    • @backstage/config@1.0.5-next.1
    • @backstage/catalog-client@1.2.0-next.1
    • @backstage/catalog-model@1.1.4-next.1
    • @backstage/errors@1.1.4-next.1

0.17.2-next.0

Patch Changes

  • 3280711113: Updated dependency msw to ^0.49.0.
  • Updated dependencies
    • @backstage/catalog-client@1.2.0-next.0
    • @backstage/backend-common@0.16.1-next.0
    • @backstage/plugin-auth-node@0.2.8-next.0
    • @backstage/types@1.0.2-next.0
    • @backstage/catalog-model@1.1.4-next.0
    • @backstage/config@1.0.5-next.0
    • @backstage/errors@1.1.4-next.0

0.17.1

Patch Changes

  • 0d6837ca4e: Fix wrong GitHub callback URL documentation
  • cbe11d1e23: Tweak README
  • 89d705e806: Add support for custom JWT header name in GCP IAP auth.
  • abaed9770e: Improve logging
  • d80833fe0c: Inject optional CatalogApi into auth-backend createRouter function. This will enable developers to use customized CatalogApi when creating the router.
  • Updated dependencies
    • @backstage/backend-common@0.16.0
    • @backstage/catalog-model@1.1.3
    • @backstage/plugin-auth-node@0.2.7
    • @backstage/types@1.0.1
    • @backstage/catalog-client@1.1.2
    • @backstage/config@1.0.4
    • @backstage/errors@1.1.3

0.17.1-next.1

Patch Changes

  • 0d6837ca4e: Fix wrong GitHub callback URL documentation
  • abaed9770e: Improve logging
  • Updated dependencies
    • @backstage/backend-common@0.16.0-next.1
    • @backstage/plugin-auth-node@0.2.7-next.1
    • @backstage/catalog-client@1.1.2-next.0
    • @backstage/catalog-model@1.1.3-next.0
    • @backstage/config@1.0.4-next.0
    • @backstage/errors@1.1.3-next.0
    • @backstage/types@1.0.1-next.0

0.17.1-next.0

Patch Changes

  • cbe11d1e23: Tweak README
  • Updated dependencies
    • @backstage/backend-common@0.16.0-next.0
    • @backstage/catalog-model@1.1.3-next.0
    • @backstage/plugin-auth-node@0.2.7-next.0
    • @backstage/types@1.0.1-next.0
    • @backstage/catalog-client@1.1.2-next.0
    • @backstage/config@1.0.4-next.0
    • @backstage/errors@1.1.3-next.0

0.17.0

Minor Changes

  • e2dc42e9f0: Google OAuth refresh tokens will now be revoked on logout by calling Google's API
  • 5fa831ce55: CookieConfigurer can optionally return the SameSite cookie attribute. CookieConfigurer now requires an additional argument appOrigin - the origin URL of the app - which is used to calculate the SameSite attribute. defaultCookieConfigurer returns the SameSite attribute which defaults to Lax. In cases where an auth-backend is running on a different domain than the App, SameSite=None is used - but only for secure contexts. This is so that cookies can be included in third-party requests.

    OAuthAdapterOptions has been modified to require additional arguments, baseUrl, and cookieConfigurer. OAuthAdapter now resolves cookie configuration using its supplied CookieConfigurer for each request to make sure that the proper attributes always are set.

Patch Changes

  • b5c126010c: Auth0 provider now supports optional connection and connectionScope parameters to configure social identity providers.
  • 8c6ec175bf: Fix GitLab provider setup so that it supports GitLab installations with a path in the URL.
  • Updated dependencies
    • @backstage/catalog-model@1.1.2
    • @backstage/backend-common@0.15.2
    • @backstage/plugin-auth-node@0.2.6
    • @backstage/catalog-client@1.1.1
    • @backstage/config@1.0.3
    • @backstage/errors@1.1.2
    • @backstage/types@1.0.0

0.17.0-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.15.2-next.2
    • @backstage/plugin-auth-node@0.2.6-next.2
    • @backstage/catalog-client@1.1.1-next.2
    • @backstage/catalog-model@1.1.2-next.2
    • @backstage/config@1.0.3-next.2
    • @backstage/errors@1.1.2-next.2
    • @backstage/types@1.0.0

0.17.0-next.1

Minor Changes

  • e2dc42e9f0: Google OAuth refresh tokens will now be revoked on logout by calling Google's API

Patch Changes

  • b5c126010c: Auth0 provider now supports optional connection and connectionScope parameters to configure social identity providers.
  • Updated dependencies
    • @backstage/catalog-client@1.1.1-next.1
    • @backstage/backend-common@0.15.2-next.1
    • @backstage/catalog-model@1.1.2-next.1
    • @backstage/config@1.0.3-next.1
    • @backstage/errors@1.1.2-next.1
    • @backstage/types@1.0.0
    • @backstage/plugin-auth-node@0.2.6-next.1

0.17.0-next.0

Minor Changes

  • 5fa831ce55: CookieConfigurer can optionally return the SameSite cookie attribute. CookieConfigurer now requires an additional argument appOrigin - the origin URL of the app - which is used to calculate the SameSite attribute. defaultCookieConfigurer returns the SameSite attribute which defaults to Lax. In cases where an auth-backend is running on a different domain than the App, SameSite=None is used - but only for secure contexts. This is so that cookies can be included in third-party requests.

    OAuthAdapterOptions has been modified to require additional arguments, baseUrl, and cookieConfigurer. OAuthAdapter now resolves cookie configuration using its supplied CookieConfigurer for each request to make sure that the proper attributes always are set.

Patch Changes

  • 8c6ec175bf: Fix GitLab provider setup so that it supports GitLab installations with a path in the URL.
  • Updated dependencies
    • @backstage/catalog-model@1.1.2-next.0
    • @backstage/catalog-client@1.1.1-next.0
    • @backstage/backend-common@0.15.2-next.0
    • @backstage/plugin-auth-node@0.2.6-next.0
    • @backstage/config@1.0.3-next.0
    • @backstage/errors@1.1.2-next.0
    • @backstage/types@1.0.0

0.16.0

Minor Changes

  • 2fc41ebf07: Removed the previously deprecated class AtlassianAuthProvider. Please use providers.atlassian.create(...) instead.
  • a291688bc5: Renamed the RedirectInfo type to OAuthStartResponse
  • 8600855fbf: The auth0 integration is updated to use the passport-auth0 library. The configuration under auth.providers.auth0.\* now supports an optional audience parameter; providing that allows you to connect to the correct API to get permissions, access tokens, and full profile information.

    What is an Audience

Patch Changes

  • 5b011fb2e6: Allow adding misc claims to JWT
  • d669d89206: Minor API signatures cleanup
  • 667d917488: Updated dependency msw to ^0.47.0.
  • 87ec2ba4d6: Updated dependency msw to ^0.46.0.
  • bf5e9030eb: Updated dependency msw to ^0.45.0.
  • e1ebaeb332: Cloudflare Access Provider: Add JWT to CloudflareAccessResult
  • Updated dependencies
    • @backstage/backend-common@0.15.1
    • @backstage/plugin-auth-node@0.2.5
    • @backstage/catalog-client@1.1.0
    • @backstage/catalog-model@1.1.1
    • @backstage/config@1.0.2
    • @backstage/errors@1.1.1

0.16.0-next.3

Minor Changes

  • 8600855fbf: The auth0 integration is updated to use the passport-auth0 library. The configuration under auth.providers.auth0.\* now supports an optional audience parameter; providing that allows you to connect to the correct API to get permissions, access tokens, and full profile information.

    What is an Audience

Patch Changes

  • Updated dependencies
    • @backstage/catalog-client@1.1.0-next.2
    • @backstage/catalog-model@1.1.1-next.0
    • @backstage/config@1.0.2-next.0
    • @backstage/errors@1.1.1-next.0
    • @backstage/backend-common@0.15.1-next.3
    • @backstage/plugin-auth-node@0.2.5-next.3

0.16.0-next.2

Patch Changes

  • 667d917488: Updated dependency msw to ^0.47.0.
  • 87ec2ba4d6: Updated dependency msw to ^0.46.0.
  • Updated dependencies
    • @backstage/backend-common@0.15.1-next.2
    • @backstage/plugin-auth-node@0.2.5-next.2
    • @backstage/catalog-client@1.0.5-next.1

0.16.0-next.1

Minor Changes

  • 2fc41ebf07: Removed the previously deprecated class AtlassianAuthProvider. Please use providers.atlassian.create(...) instead.
  • a291688bc5: Renamed the RedirectInfo type to OAuthStartResponse

Patch Changes

  • d669d89206: Minor API signatures cleanup
  • e1ebaeb332: Cloudflare Access Provider: Add JWT to CloudflareAccessResult
  • Updated dependencies
    • @backstage/plugin-auth-node@0.2.5-next.1
    • @backstage/backend-common@0.15.1-next.1

0.15.2-next.0

Patch Changes

  • bf5e9030eb: Updated dependency msw to ^0.45.0.
  • Updated dependencies
    • @backstage/backend-common@0.15.1-next.0
    • @backstage/catalog-client@1.0.5-next.0
    • @backstage/plugin-auth-node@0.2.5-next.0

0.15.1

Patch Changes

  • c676a9e07b: Fixed a bug in auth plugin on the backend where it ignores the skip migration database options when using the database provider.
  • 2d7d6028e1: Updated dependency @google-cloud/firestore to ^6.0.0.
  • Updated dependencies
    • @backstage/backend-common@0.15.0
    • @backstage/plugin-auth-node@0.2.4

0.15.1-next.1

Patch Changes

  • 2d7d6028e1: Updated dependency @google-cloud/firestore to ^6.0.0.

0.15.1-next.0

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.15.0-next.0
    • @backstage/plugin-auth-node@0.2.4-next.0

0.15.0

Minor Changes

  • 9d4040777e: BREAKING: Removed all directly exported auth provider factories, option types, and sign-in resolvers. For example: AwsAlbProviderOptions, bitbucketUserIdSignInResolver, createGithubProvider. These are all still accessible via the providers export. For example, use providers.github.create() rather than createGithubProvider(), and providers.bitbucket.resolvers.userIdMatchingUserEntityAnnotation() rather than bitbucketUserIdSignInResolver.

    BREAKING: Removed the exported AuthProviderFactoryOptions type as well as the deprecated option fields of the AuthProviderFactory callback. This includes the tokenManager, tokenIssuer, discovery, and catalogApi fields. Existing usage of these should be replaced with the new utilities in the resolverContext field. The deprecated TokenIssuer type is now also removed, since it is no longer used.

    BREAKING: Removed getEntityClaims, use getDefaultOwnershipEntityRefs instead.

    DEPRECATION: Deprecated AtlassianAuthProvider as it was unintentionally exported.

  • fe8e025af5: Allowed post method on /refresh path

Patch Changes

  • 3cedfd8365: add Cloudflare Access auth provider to auth-backend
  • f2cf79d62e: Added an option for the auth backend router to select the algorithm for the JWT token signing keys
  • 8e03db907a: Auth provider now also export createAuthProviderIntegration
  • a70869e775: Updated dependency msw to ^0.43.0.
  • 4e9a90e307: Updated dependency luxon to ^3.0.0.
  • 8006d0f9bf: Updated dependency msw to ^0.44.0.
  • 679b32172e: Updated dependency knex to ^2.0.0.
  • 859346bfbb: Updated dependency google-auth-library to ^8.0.0.
  • 3a014730dc: Add new config option for okta auth server and IDP
  • Updated dependencies
    • @backstage/backend-common@0.14.1
    • @backstage/catalog-model@1.1.0
    • @backstage/catalog-client@1.0.4
    • @backstage/plugin-auth-node@0.2.3
    • @backstage/errors@1.1.0

0.15.0-next.3

Minor Changes

  • fe8e025af5: Allowed post method on /refresh path

Patch Changes

  • a70869e775: Updated dependency msw to ^0.43.0.
  • 4e9a90e307: Updated dependency luxon to ^3.0.0.
  • 3a014730dc: Add new config option for okta auth server and IDP
  • Updated dependencies
    • @backstage/backend-common@0.14.1-next.3
    • @backstage/catalog-client@1.0.4-next.2
    • @backstage/plugin-auth-node@0.2.3-next.2
    • @backstage/catalog-model@1.1.0-next.3

0.15.0-next.2

Patch Changes

  • 8e03db907a: Auth provider now also export createAuthProviderIntegration
  • 679b32172e: Updated dependency knex to ^2.0.0.
  • Updated dependencies
    • @backstage/catalog-model@1.1.0-next.2
    • @backstage/backend-common@0.14.1-next.2

0.15.0-next.1

Minor Changes

  • 9d4040777e: BREAKING: Removed all directly exported auth provider factories, option types, and sign-in resolvers. For example: AwsAlbProviderOptions, bitbucketUserIdSignInResolver, createGithubProvider. These are all still accessible via the providers export. For example, use providers.github.create() rather than createGithubProvider(), and providers.bitbucket.resolvers.userIdMatchingUserEntityAnnotation() rather than bitbucketUserIdSignInResolver.

    BREAKING: Removed the exported AuthProviderFactoryOptions type as well as the deprecated option fields of the AuthProviderFactory callback. This includes the tokenManager, tokenIssuer, discovery, and catalogApi fields. Existing usage of these should be replaced with the new utilities in the resolverContext field. The deprecated TokenIssuer type is now also removed, since it is no longer used.

    BREAKING: Removed getEntityClaims, use getDefaultOwnershipEntityRefs instead.

    DEPRECATION: Deprecated AtlassianAuthProvider as it was unintentionally exported.

Patch Changes

  • f2cf79d62e: Added an option for the auth backend router to select the algorithm for the JWT token signing keys
  • Updated dependencies
    • @backstage/catalog-model@1.1.0-next.1
    • @backstage/backend-common@0.14.1-next.1
    • @backstage/errors@1.1.0-next.0
    • @backstage/catalog-client@1.0.4-next.1
    • @backstage/plugin-auth-node@0.2.3-next.1

0.14.2-next.0

Patch Changes

  • 859346bfbb: Updated dependency google-auth-library to ^8.0.0.
  • Updated dependencies
    • @backstage/backend-common@0.14.1-next.0
    • @backstage/catalog-model@1.1.0-next.0
    • @backstage/plugin-auth-node@0.2.3-next.0
    • @backstage/catalog-client@1.0.4-next.0

0.14.1

Patch Changes

  • 5e055079f0: Increased key field size for signing_keys table to account for larger signature keys
  • f6aae90e4e: Added configurable algorithm field for TokenFactory
  • 8f7b1835df: Updated dependency msw to ^0.41.0.
  • bc6fb57094: Updated dependency passport to ^0.6.0.
  • 467facc6ea: Fix improper binding of 'this' in ALB Auth provider
  • Updated dependencies
    • @backstage/backend-common@0.14.0
    • @backstage/plugin-auth-node@0.2.2
    • @backstage/catalog-client@1.0.3
    • @backstage/catalog-model@1.0.3

0.14.1-next.2

Patch Changes

  • bc6fb57094: Updated dependency passport to ^0.6.0.
  • Updated dependencies
    • @backstage/backend-common@0.14.0-next.2
    • @backstage/plugin-auth-node@0.2.2-next.2

0.14.1-next.1

Patch Changes

  • 5e055079f0: Increased key field size for signing_keys table to account for larger signature keys
  • 8f7b1835df: Updated dependency msw to ^0.41.0.
  • 467facc6ea: Fix improper binding of 'this' in ALB Auth provider
  • Updated dependencies
    • @backstage/backend-common@0.13.6-next.1
    • @backstage/catalog-client@1.0.3-next.0
    • @backstage/plugin-auth-node@0.2.2-next.1
    • @backstage/catalog-model@1.0.3-next.0

0.14.1-next.0

Patch Changes

  • f6aae90e4e: Added configurable algorithm field for TokenFactory
  • Updated dependencies
    • @backstage/backend-common@0.13.6-next.0
    • @backstage/plugin-auth-node@0.2.2-next.0

0.14.0

Minor Changes

  • 2df2f01a29: Removed the explicit disableRefresh option from OAuthAdapter. Refresh can still be disabled for a provider by not implementing the refresh method.

Patch Changes

  • cac3ba68a2: Fixed a bug that was introduced in 0.13.1-next.0 which caused the ent claim of issued tokens to be dropped.
  • 5d268623dd: Updates the OAuth2 Proxy provider to require less infrastructure configuration.

    The auth result object of the OAuth2 Proxy now provides access to the request headers, both through the headers object as well as getHeader method. The existing logic that parses and extracts the user information from ID tokens is deprecated and will be removed in a future release. See the OAuth2 Proxy provider documentation for more details.

    The OAuth2 Proxy provider now also has a default authHandler implementation that reads the display name and email from the incoming request headers.

  • 2df2f01a29: The Auth0 adapter no longer disables session refreshing.

  • cfc0f19699: Updated dependency fs-extra to 10.1.0.
  • 787ae0d541: Add more common predefined sign-in resolvers to auth providers.

    Add the existing resolver to more providers (already available at google):

    • providers.microsoft.resolvers.emailLocalPartMatchingUserEntityName()
    • providers.okta.resolvers.emailLocalPartMatchingUserEntityName()

    Add a new resolver for simple email-to-email matching:

    • providers.google.resolvers.emailMatchingUserEntityProfileEmail()
    • providers.microsoft.resolvers.emailMatchingUserEntityProfileEmail()
    • providers.okta.resolvers.emailMatchingUserEntityProfileEmail()
  • 9ec4e0613e: Update to jose 4.6.0

  • Updated dependencies
    • @backstage/backend-common@0.13.3
    • @backstage/config@1.0.1
    • @backstage/plugin-auth-node@0.2.1
    • @backstage/catalog-client@1.0.2
    • @backstage/catalog-model@1.0.2

0.13.1-next.2

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.13.3-next.2
    • @backstage/config@1.0.1-next.0
    • @backstage/catalog-model@1.0.2-next.0
    • @backstage/plugin-auth-node@0.2.1-next.1
    • @backstage/catalog-client@1.0.2-next.0

0.13.1-next.1

Patch Changes

  • cac3ba68a2: Fixed a bug that was introduced in 0.13.1-next.0 which caused the ent claim of issued tokens to be dropped.
  • 5d268623dd: Updates the OAuth2 Proxy provider to require less infrastructure configuration.

    The auth result object of the OAuth2 Proxy now provides access to the request headers, both through the headers object as well as getHeader method. The existing logic that parses and extracts the user information from ID tokens is deprecated and will be removed in a future release. See the OAuth2 Proxy provider documentation for more details.

    The OAuth2 Proxy provider now also has a default authHandler implementation that reads the display name and email from the incoming request headers.

  • Updated dependencies

    • @backstage/backend-common@0.13.3-next.1

0.13.1-next.0

Patch Changes

  • cfc0f19699: Updated dependency fs-extra to 10.1.0.
  • 787ae0d541: Add more common predefined sign-in resolvers to auth providers.

    Add the existing resolver to more providers (already available at google):

    • providers.microsoft.resolvers.emailLocalPartMatchingUserEntityName()
    • providers.okta.resolvers.emailLocalPartMatchingUserEntityName()

    Add a new resolver for simple email-to-email matching:

    • providers.google.resolvers.emailMatchingUserEntityProfileEmail()
    • providers.microsoft.resolvers.emailMatchingUserEntityProfileEmail()
    • providers.okta.resolvers.emailMatchingUserEntityProfileEmail()
  • 9ec4e0613e: Update to jose 4.6.0

  • Updated dependencies
    • @backstage/backend-common@0.13.3-next.0
    • @backstage/plugin-auth-node@0.2.1-next.0

0.13.0

Minor Changes

  • 15d3a3c39a: BREAKING: All sign-in resolvers must now return a token in their sign-in result. Returning an id is no longer supported.
  • c5aeaf339d: BREAKING: All auth providers have had their default sign-in resolvers removed. This means that if you want to use a particular provider for sign-in, you must provide an explicit sign-in resolver. For more information on how to configure sign-in resolvers, see the sign-in resolver documentation.

Patch Changes

  • c5aeaf339d: DEPRECATION: The AuthProviderFactoryOptions type has been deprecated, as the options are now instead inlined in the AuthProviderFactory type. This will make it possible to more easily introduce new options in the future without a possibly breaking change.
  • 794f7542b6: Updated openid-client from 4.1.2 to 5.1.3
  • c5aeaf339d: DEPRECATION: The getEntityClaims helper has been deprecated, with getDefaultOwnershipEntityRefs being added to replace it.
  • de231e5b06: Declare oauth2 clientSecret with visibility secret
  • c5aeaf339d: DEPRECATION: All create<Provider>Provider and <provider>*SignInResolver have been deprecated. Instead, a single providers object is exported which contains all built-in auth providers.

    If you have a setup that currently looks for example like this:

    import {
      createRouter,
      defaultAuthProviderFactories,
      createGoogleProvider,
      googleEmailSignInResolver,
    } from '@backstage/plugin-auth-backend';
    import { Router } from 'express';
    import { PluginEnvironment } from '../types';
    
    export default async function createPlugin(
      env: PluginEnvironment,
    ): Promise<Router> {
      return await createRouter({
        ...env,
        providerFactories: {
          ...defaultAuthProviderFactories,
          google: createGoogleProvider({
            signIn: {
              resolver: googleEmailSignInResolver,
            },
          }),
        },
      });
    }
    

    You would migrate it to something like this:

    import {
      createRouter,
      providers,
      defaultAuthProviderFactories,
    } from '@backstage/plugin-auth-backend';
    import { Router } from 'express';
    import { PluginEnvironment } from '../types';
    
    export default async function createPlugin(
      env: PluginEnvironment,
    ): Promise<Router> {
      return await createRouter({
        ...env,
        providerFactories: {
          ...defaultAuthProviderFactories,
          google: providers.google.create({
            signIn: {
              resolver:
                providers.google.resolvers.emailMatchingUserEntityAnnotation(),
            },
          }),
        },
      });
    }
    
  • 2cc1d1b235: Applied the fix from version 0.12.3 of this package, which is part of the v1.0.1 release of Backstage.

  • c5aeaf339d: DEPRECATION The AuthResolverContext has received a number of changes, which is the context used by auth handlers and sign-in resolvers.

    The following fields deprecated: logger, tokenIssuer, catalogIdentityClient. If you need to access the logger, you can do so through a closure instead. The tokenIssuer has been replaced with an issueToken method, which is available directory on the context. The catalogIdentityClient has been replaced by the signInWithCatalogUser method, as well as the lower level findCatalogUser method and getDefaultOwnershipEntityRefs helper.

    It should be possible to migrate most sign-in resolvers to more or less only use signInWithCatalogUser, for example an email lookup resolver like this one:

    async ({ profile }, ctx) => {
      if (!profile.email) {
        throw new Error('Profile contained no email');
      }
    
      const entity = await ctx.catalogIdentityClient.findUser({
        annotations: {
          'acme.org/email': profile.email,
        },
      });
    
      const claims = getEntityClaims(entity);
      const token = await ctx.tokenIssuer.issueToken({ claims });
    
      return { id: entity.metadata.name, entity, token };
    };
    

    can be migrated to the following:

    async ({ profile }, ctx) => {
      if (!profile.email) {
        throw new Error('Profile contained no email');
      }
    
      return ctx.signInWithCatalogUser({
        annotations: {
          'acme.org/email': profile.email,
        },
      });
    };
    

    While a direct entity name lookup using a user ID might look like this:

    async ({ result: { fullProfile } }, ctx) => {
      return ctx.signInWithCatalogUser({
        entityRef: {
          name: fullProfile.userId,
        },
      });
    };
    

    If you want more control over the way that users are looked up, ownership is assigned, or tokens are issued, you can use a combination of the findCatalogUser, getDefaultOwnershipEntityRefs, and issueToken instead.

  • f4cdf4cac1: Defensively encode URL parameters when fetching ELB keys

  • 6ee04078e1: DEPRECATION: The tokenIssuer option for OAuthAdapter is no longer needed and has been deprecated.
  • a45bce06e3: Handle trailing slashes on GitHub enterpriseInstanceUrl settings
  • 45f7a261c7: Bumped passport-microsoft to resolve CVE-2021-41580
  • c5aeaf339d: Added exports of the following types: AuthProviderConfig, StateEncoder, TokenParams, AwsAlbResult.
  • Updated dependencies
    • @backstage/catalog-model@1.0.1
    • @backstage/plugin-auth-node@0.2.0
    • @backstage/backend-common@0.13.2
    • @backstage/catalog-client@1.0.1

0.13.0-next.2

Minor Changes

  • c5aeaf339d: BREAKING: All auth providers have had their default sign-in resolvers removed. This means that if you want to use a particular provider for sign-in, you must provide an explicit sign-in resolver. For more information on how to configure sign-in resolvers, see the sign-in resolver documentation.

Patch Changes

  • c5aeaf339d: DEPRECATION: The AuthProviderFactoryOptions type has been deprecated, as the options are now instead inlined in the AuthProviderFactory type. This will make it possible to more easily introduce new options in the future without a possibly breaking change.
  • 794f7542b6: Updated openid-client from 4.1.2 to 5.1.3
  • c5aeaf339d: DEPRECATION: The getEntityClaims helper has been deprecated, with getDefaultOwnershipEntityRefs being added to replace it.
  • de231e5b06: Declare oauth2 clientSecret with visibility secret
  • c5aeaf339d: DEPRECATION: All create<Provider>Provider and <provider>*SignInResolver have been deprecated. Instead, a single providers object is exported which contains all built-in auth providers.

    If you have a setup that currently looks for example like this:

    import {
      createRouter,
      defaultAuthProviderFactories,
      createGoogleProvider,
      googleEmailSignInResolver,
    } from '@backstage/plugin-auth-backend';
    import { Router } from 'express';
    import { PluginEnvironment } from '../types';
    
    export default async function createPlugin(
      env: PluginEnvironment,
    ): Promise<Router> {
      return await createRouter({
        ...env,
        providerFactories: {
          ...defaultAuthProviderFactories,
          google: createGoogleProvider({
            signIn: {
              resolver: googleEmailSignInResolver,
            },
          }),
        },
      });
    }
    

    You would migrate it to something like this:

    import {
      createRouter,
      providers,
      defaultAuthProviderFactories,
    } from '@backstage/plugin-auth-backend';
    import { Router } from 'express';
    import { PluginEnvironment } from '../types';
    
    export default async function createPlugin(
      env: PluginEnvironment,
    ): Promise<Router> {
      return await createRouter({
        ...env,
        providerFactories: {
          ...defaultAuthProviderFactories,
          google: providers.google.create({
            signIn: {
              resolver:
                providers.google.resolvers.emailMatchingUserEntityAnnotation(),
            },
          }),
        },
      });
    }
    
  • c5aeaf339d: DEPRECATION The AuthResolverContext has received a number of changes, which is the context used by auth handlers and sign-in resolvers.

    The following fields deprecated: logger, tokenIssuer, catalogIdentityClient. If you need to access the logger, you can do so through a closure instead. The tokenIssuer has been replaced with an issueToken method, which is available directory on the context. The catalogIdentityClient has been replaced by the signInWithCatalogUser method, as well as the lower level findCatalogUser method and getDefaultOwnershipEntityRefs helper.

    It should be possible to migrate most sign-in resolvers to more or less only use signInWithCatalogUser, for example an email lookup resolver like this one:

    async ({ profile }, ctx) => {
      if (!profile.email) {
        throw new Error('Profile contained no email');
      }
    
      const entity = await ctx.catalogIdentityClient.findUser({
        annotations: {
          'acme.org/email': profile.email,
        },
      });
    
      const claims = getEntityClaims(entity);
      const token = await ctx.tokenIssuer.issueToken({ claims });
    
      return { id: entity.metadata.name, entity, token };
    };
    

    can be migrated to the following:

    async ({ profile }, ctx) => {
      if (!profile.email) {
        throw new Error('Profile contained no email');
      }
    
      return ctx.signInWithCatalogUser({
        annotations: {
          'acme.org/email': profile.email,
        },
      });
    };
    

    While a direct entity name lookup using a user ID might look like this:

    async ({ result: { fullProfile } }, ctx) => {
      return ctx.signInWithCatalogUser({
        entityRef: {
          name: fullProfile.userId,
        },
      });
    };
    

    If you want more control over the way that users are looked up, ownership is assigned, or tokens are issued, you can use a combination of the findCatalogUser, getDefaultOwnershipEntityRefs, and issueToken instead.

  • f4cdf4cac1: Defensively encode URL parameters when fetching ELB keys

  • c5aeaf339d: Added exports of the following types: AuthProviderConfig, StateEncoder, TokenParams, AwsAlbResult.
  • Updated dependencies
    • @backstage/backend-common@0.13.2-next.2

0.13.0-next.1

Patch Changes

  • a45bce06e3: Handle trailing slashes on GitHub enterpriseInstanceUrl settings
  • Updated dependencies
    • @backstage/backend-common@0.13.2-next.1

0.13.0-next.0

Minor Changes

  • 15d3a3c39a: BREAKING: All sign-in resolvers must now return a token in their sign-in result. Returning an id is no longer supported.

Patch Changes

  • 2cc1d1b235: Applied the fix from version 0.12.3 of this package, which is part of the v1.0.1 release of Backstage.
  • 6ee04078e1: DEPRECATION: The tokenIssuer option for OAuthAdapter is no longer needed and has been deprecated.
  • Updated dependencies
    • @backstage/catalog-model@1.0.1-next.0
    • @backstage/plugin-auth-node@0.2.0-next.0
    • @backstage/backend-common@0.13.2-next.0
    • @backstage/catalog-client@1.0.1-next.0

0.12.3

Patch Changes

  • Fix migrations to do the right thing on sqlite databases, and reapply the column type fix for those who are not on sqlite databases.

    Reconstruction of #10317 in the form of a patch release instead.

0.12.2

Patch Changes

  • efc73db10c: Use better-sqlite3 instead of @vscode/sqlite3
  • Updated dependencies
    • @backstage/backend-common@0.13.1
    • @backstage/catalog-model@1.0.0
    • @backstage/catalog-client@1.0.0
    • @backstage/config@1.0.0
    • @backstage/errors@1.0.0
    • @backstage/types@1.0.0
    • @backstage/plugin-auth-node@0.1.6

0.12.1

Patch Changes

  • ab7cd7d70e: Do some groundwork for supporting the better-sqlite3 driver, to maybe eventually replace @vscode/sqlite3 (#9912)
  • e0a69ba49f: build(deps): bump fs-extra from 9.1.0 to 10.0.1
  • bf95bb806c: Remove usages of now-removed CatalogApi.getEntityByName
  • 3c2bc73901: Use setupRequestMockHandlers from @backstage/backend-test-utils
  • Updated dependencies
    • @backstage/backend-common@0.13.0
    • @backstage/catalog-model@0.13.0
    • @backstage/catalog-client@0.9.0
    • @backstage/plugin-auth-node@0.1.5

0.12.1-next.0

Patch Changes

  • ab7cd7d70e: Do some groundwork for supporting the better-sqlite3 driver, to maybe eventually replace @vscode/sqlite3 (#9912)
  • e0a69ba49f: build(deps): bump fs-extra from 9.1.0 to 10.0.1
  • bf95bb806c: Remove usages of now-removed CatalogApi.getEntityByName
  • 3c2bc73901: Use setupRequestMockHandlers from @backstage/backend-test-utils
  • Updated dependencies
    • @backstage/backend-common@0.13.0-next.0
    • @backstage/catalog-model@0.13.0-next.0
    • @backstage/catalog-client@0.9.0-next.0
    • @backstage/plugin-auth-node@0.1.5-next.0

0.12.0

Minor Changes

  • 0c8ba31d72: BREAKING: The TokenFactory.issueToken used by custom sign-in resolvers now ensures that the sub claim given is a full entity reference of the format <kind>:<namespace>/<name>. Any existing custom sign-in resolver functions that do not supply a full entity reference must be updated.

Patch Changes

  • 899f196af5: Use getEntityByRef instead of getEntityByName in the catalog client
  • 36aa63022b: Use CompoundEntityRef instead of EntityName, and getCompoundEntityRef instead of getEntityName, from @backstage/catalog-model.
  • Updated dependencies
    • @backstage/catalog-model@0.12.0
    • @backstage/catalog-client@0.8.0
    • @backstage/backend-common@0.12.0
    • @backstage/plugin-auth-node@0.1.4

0.11.0

Minor Changes

  • 3884bf0348: BREAKING: The default sign-in resolvers for all providers, if you choose to use them, now emit the token sub and ent claims on the standard, all-lowercase form, instead of the mixed-case form. The mixed-case form causes problems for implementations that naively do string comparisons on refs. The end result is that you may for example see your Backstage token sub claim now become 'user:default/my-id' instead of 'user:default/My-ID'.

    On a related note, specifically the SAML provider now correctly issues both sub and ent claims, and on the full entity ref form instead of the short form with only the ID.

    NOTE: For a long time, it has been strongly recommended that you provide your own sign-in resolver instead of using the builtin ones, and that will become mandatory in the future.

Patch Changes

  • d64b8d3678: chore(deps): bump minimatch from 3.0.4 to 5.0.0
  • 6e1cbc12a6: Updated according to the new getEntityFacets catalog API method
  • 919cf2f836: Minor updates to match the new targetRef field of relations, and to stop consuming the target field
  • Updated dependencies
    • @backstage/backend-common@0.11.0
    • @backstage/catalog-model@0.11.0
    • @backstage/catalog-client@0.7.2
    • @backstage/plugin-auth-node@0.1.3

0.10.2

Patch Changes

  • Fix for the previous release with missing type declarations.
  • Updated dependencies
    • @backstage/backend-common@0.10.9
    • @backstage/catalog-client@0.7.1
    • @backstage/catalog-model@0.10.1
    • @backstage/config@0.1.15
    • @backstage/errors@0.2.2
    • @backstage/types@0.1.3
    • @backstage/plugin-auth-node@0.1.2

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

0.10.0

Minor Changes

  • 08fcda13ef: The callbackUrl option of OAuthAdapter is now required.
  • 6bc86fcf2d: The following breaking changes were made, which may imply specifically needing to make small adjustments in your custom auth providers.

    • BREAKING: Moved IdentityClient, BackstageSignInResult, BackstageIdentityResponse, and BackstageUserIdentity to @backstage/plugin-auth-node.
    • BREAKING: Removed deprecated type BackstageIdentity, please use BackstageSignInResult from @backstage/plugin-auth-node instead.

    While moving over, IdentityClient was also changed in the following ways:

    • BREAKING: Made IdentityClient.listPublicKeys private. It was only used in tests, and should not be part of the API surface of that class.
    • BREAKING: Removed the static IdentityClient.getBearerToken. It is now replaced by getBearerTokenFromAuthorizationHeader from @backstage/plugin-auth-node.
    • BREAKING: Removed the constructor. Please use the IdentityClient.create static method instead.

    Since the IdentityClient interface is marked as experimental, this is a breaking change without a deprecation period.

    In your auth providers, you may need to update your imports and usages as follows (example code; yours may be slightly different):

    -import { IdentityClient } from '@backstage/plugin-auth-backend';
    +import {
    +  IdentityClient,
    +  getBearerTokenFromAuthorizationHeader
    +} from '@backstage/plugin-auth-node';
    
       // ...
    
    -  const identity = new IdentityClient({
    +  const identity = IdentityClient.create({
         discovery,
         issuer: await discovery.getExternalBaseUrl('auth'),
       });```
    
       // ...
    
       const token =
    -     IdentityClient.getBearerToken(req.headers.authorization) ||
    +     getBearerTokenFromAuthorizationHeader(req.headers.authorization) ||
          req.cookies['token'];
    

Patch Changes

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

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • 3396bc5973: Enabled refresh for the Atlassian provider.

  • 08fcda13ef: Added a new cookieConfigurer option to AuthProviderConfig that makes it possible to override the default logic for configuring OAuth provider cookies.
  • Updated dependencies
    • @backstage/catalog-client@0.6.0
    • @backstage/backend-common@0.10.7
    • @backstage/plugin-auth-node@0.1.0

0.10.0-next.0

Minor Changes

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

Patch Changes

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

    This also replaces sqlite3 with @vscode/sqlite3 5.0.7

  • 3396bc5973: Enabled refresh for the Atlassian provider.

  • 08fcda13ef: Added a new cookieConfigurer option to AuthProviderConfig that makes it possible to override the default logic for configuring OAuth provider cookies.
  • Updated dependencies
    • @backstage/backend-common@0.10.7-next.0

0.9.0

Minor Changes

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

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

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

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

Patch Changes

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

0.9.0-next.1

Patch Changes

  • 9d75a939b6: Fixed a bug where providers that tracked the granted scopes through a cookie would not take failed authentication attempts into account.
  • 648606b3ac: Added support for storing static GitHub access tokens in cookies and using them to refresh the Backstage session.
  • Updated dependencies
    • @backstage/backend-common@0.10.6-next.0

0.9.0-next.0

Minor Changes

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

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

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

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

Patch Changes

  • 28a5f9d0b1: chore(deps): bump passport from 0.4.1 to 0.5.2

0.8.0

Minor Changes

  • 67349916ac: The sub claim in Backstage tokens generated by the default Google and OIDC sign-in resolvers are now full entity references of the format <kind>:<namespace>/<name>.

Patch Changes

  • 033493a8af: Running the auth-backend on multiple domains, perhaps different domains depending on the auth.environment, was previously not possible as the domain name of the cookie was taken from backend.baseUrl. This prevented any cookies to be set in the start of the auth flow as the domain of the cookie would not match the domain of the callbackUrl configured in the OAuth app. This change checks if a provider supports custom callbackUrl's to be configured in the application configuration and uses the domain from that, allowing the domain's to match and the cookie to be set.
  • Updated dependencies
    • @backstage/backend-common@0.10.5

0.7.0

Minor Changes

  • 6e92ee6267: Add new authentication provider to support the oauth2-proxy.

    BREAKING The AuthHandler requires now an AuthResolverContext parameter. This aligns with the behavior of the SignInResolver.

  • f8496730ab: Switched the handling of the BackstageIdentityResponse so that the returned identity.userEntityRef is always a full entity reference. If userEntityRef was previously set to jane, it will now be user:default/jane. The userEntityRef in the response is parsed from the sub claim in the payload of the Backstage token.

  • a53d7d8143: Update provider subs to return full entity ref.

Patch Changes

  • f815b7e4a4: build(deps): bump @google-cloud/firestore from 4.15.1 to 5.0.2
  • Updated dependencies
    • @backstage/backend-common@0.10.4
    • @backstage/config@0.1.13
    • @backstage/catalog-model@0.9.10
    • @backstage/catalog-client@0.5.5

0.7.0-next.0

Minor Changes

  • 6e92ee6267: Add new authentication provider to support the oauth2-proxy.

    BREAKING The AuthHandler requires now an AuthResolverContext parameter. This aligns with the behavior of the SignInResolver.

Patch Changes

  • Updated dependencies
    • @backstage/backend-common@0.10.4-next.0
    • @backstage/config@0.1.13-next.0
    • @backstage/catalog-model@0.9.10-next.0
    • @backstage/catalog-client@0.5.5-next.0

0.6.2

Patch Changes

  • 5333451def: Cleaned up API exports
  • da9c59d6e0: Removed @backstage/test-utils dependency.
  • 20ca7cfa5f: Switched the secure cookie mode set on the express-session to use 'auto' rather than true. This works around an issue where cookies would not be set if TLS termination was handled in a proxy rather than having the backend served directly with HTTPS.

    The downside of this change is that secure cookies won't be used unless the backend is directly served with HTTPS. This will be remedied in a future update that allows the backend to configured for trusted proxy mode.

  • Updated dependencies

    • @backstage/config@0.1.12
    • @backstage/backend-common@0.10.3
    • @backstage/errors@0.2.0
    • @backstage/catalog-client@0.5.4
    • @backstage/catalog-model@0.9.9

0.6.1

Patch Changes

  • e0e57817d2: Added Google Cloud Identity-Aware Proxy as an identity provider.
  • Updated dependencies
    • @backstage/backend-common@0.10.2

0.6.0

Minor Changes

  • c88cdacc1a: Avoid ever returning OAuth refresh tokens back to the client, and always exchange refresh tokens for a new one when available for all providers.

    This comes with a breaking change to the TypeScript API for custom auth providers. The refresh method of OAuthHandlers implementation must now return a { response, refreshToken } object rather than a direct response. Existing refresh implementations are typically migrated by changing an existing return expression that looks like this:

    return await this.handleResult({
      fullProfile,
      params,
      accessToken,
      refreshToken,
    });
    

    Into the following:

    return {
      response: await this.handleResult({
        fullProfile,
        params,
        accessToken,
      }),
      refreshToken,
    };
    

Patch Changes

  • f0f81f6cc7: Replaces the usage of got with node-fetch in the getUserPhoto method of the Microsoft provider
  • 2f26120a36: Update auth0 and onelogin providers to allow for authHandler and signIn.resolver configuration.
  • a9abafa9df: Fixed bug on refresh token on Okta provider, now it gets the refresh token and it sends it into providerInfo
  • eb48e78886: Enforce cookie SSL protection when in production for auth-backend sessions
  • Updated dependencies
    • @backstage/test-utils@0.2.1
    • @backstage/backend-common@0.10.1

0.5.2

Patch Changes

  • 24a67e3e2e: Fixed the fallback identity population to correctly generate an entity reference for userEntityRef if no token is provided.
  • Updated dependencies
    • @backstage/backend-common@0.10.0
    • @backstage/test-utils@0.2.0
    • @backstage/catalog-client@0.5.3

0.5.1

Patch Changes

  • 699c2e9ddc: export minimal typescript types for OIDC provider
  • Updated dependencies
    • @backstage/backend-common@0.9.14
    • @backstage/catalog-model@0.9.8

0.5.0

Minor Changes

  • a036b65c2f: BREAKING CHANGE The idToken field of BackstageIdentity has been removed, with the token taking its place. This means you may need to update existing signIn.resolver implementations to return an token rather than an idToken. This also applies to custom auth providers.

    The BackstageIdentity type has been deprecated and will be removed in the future. Taking its place is the new BackstageSignInResult type with the same shape.

    This change also introduces the new BackstageIdentityResponse that mirrors the type with the same name from @backstage/core-plugin-api. The BackstageIdentityResponse type is different from the BackstageSignInResult in that it also has a identity field which is of type BackstageUserIdentity and is a decoded version of the information within the token.

    When implementing a custom auth provider that is not based on the OAuthAdapter you may need to convert BackstageSignInResult into a BackstageIdentityResponse, this can be done using the new prepareBackstageIdentityResponse function.

Patch Changes

  • 8f461e6043: Fixes potential bug introduced in 0.4.10 which causes OAuth2AuthProvider to authenticate using credentials in both POST payload and headers. This might break some stricter OAuth2 implementations so there is now a includeBasicAuth config option that can manually be set to true to enable this behavior.
  • dcd1a0c3f4: Minor improvement to the API reports, by not unpacking arguments directly
  • Updated dependencies
    • @backstage/test-utils@0.1.24
    • @backstage/backend-common@0.9.13

0.4.10

Patch Changes

  • 4bf4111902: Migrated the SAML provider to implement the authHandler and signIn.resolver options.
  • b055a6addc: Align on usage of cross-fetch vs node-fetch in frontend vs backend packages, and remove some unnecessary imports of either one of them
  • 36fa32216f: Added signIn and authHandler resolver for oidc provider
  • 7071dce02d: Expose catalog lib in plugin-auth-backend, i.e CatalogIdentityClient class is exposed now.
  • 1b69ed44f2: Added custom OAuth2.0 authorization header for generic oauth2 provider.
  • Updated dependencies
    • @backstage/backend-common@0.9.12

0.4.9

Patch Changes

  • 9312572360: Switched to using the standardized JSON error responses for all provider endpoints.
  • bab752e2b3: Change default port of backend from 7000 to 7007.

    This is due to the AirPlay Receiver process occupying port 7000 and preventing local Backstage instances on MacOS to start.

    You can change the port back to 7000 or any other value by providing an app-config.yaml with the following values:

    backend:
      listen: 0.0.0.0:7123
      baseUrl: http://localhost:7123
    

    More information can be found here: https://backstage.io/docs/conf/writing

  • Updated dependencies

    • @backstage/errors@0.1.5
    • @backstage/backend-common@0.9.11
    • @backstage/test-utils@0.1.23

0.4.8

Patch Changes

  • 892c1d9202: Update OAuthAdapter to create identity.token from identity.idToken if it does not exist, and prevent overwrites to identity.toke. Update login page commonProvider to prefer .token over .idToken
  • Updated dependencies
    • @backstage/catalog-client@0.5.2
    • @backstage/catalog-model@0.9.7
    • @backstage/backend-common@0.9.10
    • @backstage/test-utils@0.1.22

0.4.7

Patch Changes

  • 5ee31f860b: Only use settings that have a value when creating a new FirestoreKeyStore instance
  • 3e0e2f09d5: Added forwarding of the audience option for the SAML provider, making it possible to enable audience verification.
  • Updated dependencies
    • @backstage/backend-common@0.9.9
    • @backstage/test-utils@0.1.21
    • @backstage/catalog-client@0.5.1

0.4.6

Patch Changes

  • 3b767f19c9: Allow OAuth state to be encoded by a stateEncoder.
  • Updated dependencies
    • @backstage/test-utils@0.1.20
    • @backstage/config@0.1.11
    • @backstage/errors@0.1.4
    • @backstage/backend-common@0.9.8
    • @backstage/catalog-model@0.9.6

0.4.5

Patch Changes

  • 9322e632e9: Require that audience URLs for Okta authentication start with https
  • de3e26aecc: Fix a bug preventing an access token to be refreshed a second time with the GitHub provider.
  • ab9b4a6ea6: Add Firestore as key-store provider. Add auth.keyStore section to application config.
  • 202f322927: Atlassian auth provider

    • AtlassianAuth added to core-app-api
    • Atlassian provider added to plugin-auth-backend
    • Updated user-settings with Atlassian connection
  • 36e67d2f24: Internal updates to apply more strict checks to throw errors.

  • Updated dependencies
    • @backstage/backend-common@0.9.7
    • @backstage/errors@0.1.3
    • @backstage/catalog-model@0.9.5

0.4.4

Patch Changes

  • 0cfeea8f8f: AWS-ALB: update provider to the latest changes described here.

    This removes the ExperimentalIdentityResolver type in favor of SignInResolver and AuthHandler. The AWS ALB provider can now be configured in the same way as the Google provider in the example.

  • defae8f579: Added extra configuration parameters for active directory file system identity

  • Updated dependencies
    • @backstage/test-utils@0.1.19

0.4.3

Patch Changes

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

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

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

0.4.2

Patch Changes

  • 88622e6422: Allow users to override callback url of GitHub provider
  • c46396ebb0: Update OAuth refresh handler to pass updated refresh token to ensure cookie is updated with new value.
  • Updated dependencies
    • @backstage/backend-common@0.9.5

0.4.1

Patch Changes

  • Updated dependencies
    • @backstage/catalog-client@0.4.0
    • @backstage/catalog-model@0.9.3
    • @backstage/backend-common@0.9.4
    • @backstage/config@0.1.10

0.4.0

Minor Changes

  • 19f45179a5: Bump passport-saml to version 3. This is a breaking change, in that it now requires the auth.saml.cert parameter to be set. If you are not using SAML auth, you can ignore this.

    To update your settings, add something similar to the following to your app-config:

    auth:
      saml:
        # ... other settings ...
        cert: 'MIICizCCAfQCCQCY8tKaMc0BMjANBgkqh ... W=='
    

    For more information, see the library README.

Patch Changes

  • 560d6810f0: Fix a bug preventing an access token to be refreshed a second time with the GitLab provider.
  • de5717872d: Use a more informative error message if the configured OIDC identity provider does not provide a userinfo_endpoint in its metadata.
  • Updated dependencies
    • @backstage/backend-common@0.9.3

0.3.24

Patch Changes

  • 2a105f451: Add a warning log message that passport-saml will require a cert config parameter imminently.

    We intend to upgrade this package soon, past the point where we will start to strictly require the auth.saml.cert configuration parameter to be present. To avoid issues starting your auth backend, please

  • 31892ee25: typo fix tenentId in Azure auth provider docs

  • e9b1e2a9f: Added signIn and authHandler resolver for oAuth2 provider
  • ca45b169d: Export GitHub to allow use with Identity resolver
  • Updated dependencies
    • @backstage/catalog-model@0.9.1
    • @backstage/backend-common@0.9.1

0.3.23

Patch Changes

  • 392b36fa1: Added support for using authenticating via GitHub Apps in addition to GitHub OAuth Apps. It used to be possible to use GitHub Apps, but they did not handle session refresh correctly.

    Note that GitHub Apps handle OAuth scope at the app installation level, meaning that the scope parameter for getAccessToken has no effect. When calling getAccessToken in open source plugins, one should still include the appropriate scope, but also document in the plugin README what scopes are required in the case of GitHub Apps.

    In addition, the authHandler and signInResolver options have been implemented for the GitHub provider in the auth backend.

  • ea9fe9567: Fixed a bug where OAuth state parameters would be serialized as the string 'undefined'.

  • 39fc3d7f8: Add Sign In and Handler resolver for GitLab provider
  • Updated dependencies
    • @backstage/backend-common@0.9.0
    • @backstage/config@0.1.8

0.3.22

Patch Changes

  • 79d24a966: Fix an issue where the default app origin was not allowed to authenticate users.

0.3.21

Patch Changes

  • 72a31c29a: Add support for additional app origins
  • Updated dependencies
    • @backstage/backend-common@0.8.10
    • @backstage/config@0.1.7

0.3.20

Patch Changes

  • 29f7cfffb: Added resolveCatalogMembership utility to query the catalog for additional authentication claims within sign-in resolvers.
  • 8bedb75ae: Update Luxon dependency to 2.x
  • bfe0ff93f: Add Sign In and Handler resolver for Okta provider
  • Updated dependencies
    • @backstage/backend-common@0.8.9
    • @backstage/test-utils@0.1.17

0.3.19

Patch Changes

  • 4edca1bd0: Allow to configure SAML auth acceptedClockSkewMs
  • b68f2c83c: Added the disableRefresh option to the OAuth2 config
  • Updated dependencies
    • @backstage/test-utils@0.1.16
    • @backstage/catalog-client@0.3.18

0.3.18

Patch Changes

  • 2567c066d: TokenIssuer is now exported so it may be used by auth providers that are not bundled with Backstage
  • Updated dependencies
    • @backstage/catalog-client@0.3.17
    • @backstage/backend-common@0.8.7
    • @backstage/test-utils@0.1.15

0.3.17

Patch Changes

  • 40b3c60e2: Configuration updates for the OpenID Connect auth provider to allow prompt configuration and some sensible defaults.
  • f55f9df10: Add Sign In and Handler resolver for Microsoft provider
  • ae84b20cf: Revert the upgrade to fs-extra@10.0.0 as that seemed to have broken all installs inexplicably.
  • Updated dependencies
    • @backstage/backend-common@0.8.6

0.3.16

Patch Changes

  • Updated dependencies
    • @backstage/catalog-model@0.9.0
    • @backstage/backend-common@0.8.5
    • @backstage/catalog-client@0.3.16

0.3.15

Patch Changes

  • 6ca29b66c: Unbreak .well-known OIDC routes
  • 72574ac4d: Show better error message when configs defined under auth.providers.<provider> are undefined.
  • Updated dependencies
    • @backstage/backend-common@0.8.4
    • @backstage/catalog-client@0.3.15

0.3.14

Patch Changes

  • 36e9a4084: Don't export the defaultGoogleAuthProvider
  • c467cc4b9: Adds support for custom sign-in resolvers and profile transformations for the Google auth provider.

    Adds an ent claim in Backstage tokens, with a list of entity references related to your signed-in user's identities and groups across multiple systems.

    Adds an optional providerFactories argument to the createRouter exported by the auth-backend plugin.

    Updates BackstageIdentity so that

    • idToken is deprecated in favor of token
    • An optional entity field is added which represents the entity that the user is represented by within Backstage.

    More information:

  • Updated dependencies

    • @backstage/catalog-client@0.3.14
    • @backstage/catalog-model@0.8.4
    • @backstage/test-utils@0.1.14

0.3.13

Patch Changes

  • 1aa31f0af: Add support for refreshing GitLab auth sessions.
  • Updated dependencies
    • @backstage/backend-common@0.8.3
    • @backstage/catalog-model@0.8.3

0.3.12

Patch Changes

  • Updated dependencies [add62a455]
  • Updated dependencies [704875e26]
    • @backstage/catalog-client@0.3.12
    • @backstage/catalog-model@0.8.0

0.3.11

Patch Changes

  • 65e6c4541: Remove circular dependencies
  • Updated dependencies [f7f7783a3]
  • Updated dependencies [c7dad9218]
  • Updated dependencies [65e6c4541]
  • Updated dependencies [68fdbf014]
  • Updated dependencies [5001de908]
  • Updated dependencies [61c3f927c]
    • @backstage/catalog-model@0.7.10
    • @backstage/backend-common@0.8.1
    • @backstage/test-utils@0.1.12

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

0.3.9

Patch Changes

  • Updated dependencies [e0bfd3d44]
  • Updated dependencies [38ca05168]
  • Updated dependencies [d8b81fd28]
  • Updated dependencies [d1b1306d9]
    • @backstage/backend-common@0.7.0
    • @backstage/catalog-model@0.7.8
    • @backstage/config@0.1.5
    • @backstage/catalog-client@0.3.11

0.3.8

Patch Changes

  • 2b2b31186: When using OAuth2 authentication the name is now taken from the name property of the JWT instead of the email property
  • Updated dependencies [97b60de98]
  • Updated dependencies [ae6250ce3]
  • Updated dependencies [98dd5da71]
  • Updated dependencies [b779b5fee]
    • @backstage/catalog-model@0.7.6
    • @backstage/test-utils@0.1.10
    • @backstage/backend-common@0.6.2

0.3.7

Patch Changes

  • 0d55dcc74: Fixes timezone bug for auth signing keys
  • 676ede643: Added the getOriginLocationByEntity and removeLocationById methods to the catalog client
  • Updated dependencies [676ede643]
  • Updated dependencies [b196a4569]
  • Updated dependencies [8488a1a96]
  • Updated dependencies [37e3a69f5]
    • @backstage/catalog-client@0.3.9
    • @backstage/catalog-model@0.7.5
    • @backstage/backend-common@0.6.1

0.3.6

Patch Changes

  • 449776cd6: The auth config types now properly accept any declared auth environment. Previously only development was accepted.

    The audience configuration is no longer required for GitLab auth; this will default to https://gitlab.com

0.3.5

Patch Changes

  • 8686eb38c: Use errors from @backstage/errors
  • 8b5e59750: expose verifyNonce and readState publicly from auth-backend
  • Updated dependencies [8686eb38c]
  • Updated dependencies [8686eb38c]
  • Updated dependencies [0434853a5]
  • Updated dependencies [4e0b5055a]
  • Updated dependencies [8686eb38c]
    • @backstage/catalog-client@0.3.8
    • @backstage/backend-common@0.6.0
    • @backstage/config@0.1.4
    • @backstage/test-utils@0.1.9

0.3.4

Patch Changes

  • 761698831: Bump to the latest version of the Knex library.
  • 5f1b7ea35: Change the JWKS url value for the oidc configuration endpoint
  • Updated dependencies [d7245b733]
  • Updated dependencies [0b42fff22]
  • Updated dependencies [0b42fff22]
  • Updated dependencies [761698831]
    • @backstage/backend-common@0.5.6
    • @backstage/catalog-model@0.7.4
    • @backstage/catalog-client@0.3.7

0.3.3

Patch Changes

  • f43192207: remove usage of res.send() for res.json() and res.end() to ensure content types are more consistently application/json on backend responses and error cases
  • 3af994c81: Expose a configuration option for the oidc scope
  • Updated dependencies [12d8f27a6]
  • Updated dependencies [497859088]
  • Updated dependencies [8adb48df4]
    • @backstage/catalog-model@0.7.3
    • @backstage/backend-common@0.5.5

0.3.2

Patch Changes

  • ec504e7b4: Fix for refresh token being lost during Microsoft login.
  • Updated dependencies [bad21a085]
  • Updated dependencies [a1f5e6545]
    • @backstage/catalog-model@0.7.2
    • @backstage/config@0.1.3

0.3.1

Patch Changes

  • 92f01d75c: Refactored auth provider factories to accept options along with other internal refactoring of the auth providers.
  • d9687c524: Fixed parsing of OIDC key timestamps when using SQLite.
  • 3600ac3b0: Migrated the package from using moment to Luxon. #4278
  • Updated dependencies [16fb1d03a]
  • Updated dependencies [491f3a0ec]
  • Updated dependencies [434b4e81a]
  • Updated dependencies [fb28da212]
    • @backstage/backend-common@0.5.4

0.3.0

Minor Changes

  • 1deb31141: Remove undocumented scope (default) from the OIDC auth provider which was breaking some identity services. If your app relied on this scope, you can manually specify it by adding a new factory in packages/app/src/apis.ts:

    export const apis = [
      createApiFactory({
        api: oidcAuthApiRef,
        deps: {
          discoveryApi: discoveryApiRef,
          oauthRequestApi: oauthRequestApiRef,
          configApi: configApiRef,
        },
        factory: ({ discoveryApi, oauthRequestApi, configApi }) =>
          OAuth2.create({
            discoveryApi,
            oauthRequestApi,
            provider: {
              id: 'oidc',
              title: 'Your Identity Provider',
              icon: OAuth2Icon,
            },
            defaultScopes: [
              'default',
              'openid',
              'email',
              'offline_access',
            ],
            environment: configApi.getOptionalString('auth.environment'),
          }),
      }),
    ];
    

Patch Changes

  • 6ed2b47d6: Include Backstage identity token in requests to backend plugins.
  • 07bafa248: Add configurable scope for oauth2 auth provider.

    Some OAuth2 providers require certain scopes to facilitate a user sign-in using the Authorization Code flow. This change adds the optional scope key to auth.providers.oauth2. An example is:

    auth:
      providers:
        oauth2:
          development:
            clientId:
              $env: DEV_OAUTH2_CLIENT_ID
            clientSecret:
              $env: DEV_OAUTH2_CLIENT_SECRET
            authorizationUrl:
              $env: DEV_OAUTH2_AUTH_URL
            tokenUrl:
              $env: DEV_OAUTH2_TOKEN_URL
            scope: saml-login-selector openid profile email
    

    This tells the OAuth 2.0 AS to perform a SAML login and return OIDC information include the profile and email claims as part of the ID Token.

  • Updated dependencies [6ed2b47d6]

  • Updated dependencies [ffffea8e6]
  • Updated dependencies [82b2c11b6]
  • Updated dependencies [965e200c6]
  • Updated dependencies [72b96e880]
  • Updated dependencies [5a5163519]
    • @backstage/catalog-client@0.3.6
    • @backstage/backend-common@0.5.3

0.2.12

Patch Changes

  • d7b1d317f: Fixed serialization issue with caching of public keys in AWS ALB auth provider
  • 39b05b9ae: Use .text instead of .json for ALB key response
  • 4eaa06057: Fix AWS ALB issuer check
  • Updated dependencies [26a3a6cf0]
  • Updated dependencies [664dd08c9]
  • Updated dependencies [9dd057662]
    • @backstage/backend-common@0.5.1

0.2.11

Patch Changes

  • 0643a3336: Add AWS ALB OIDC reverse proxy authentication provider
  • a2291d7cc: Optional identity token authorization of api requests
  • Updated dependencies [def2307f3]
  • Updated dependencies [0b135e7e0]
  • Updated dependencies [294a70cab]
  • Updated dependencies [0ea032763]
  • Updated dependencies [5345a1f98]
  • Updated dependencies [09a370426]
  • Updated dependencies [a93f42213]
    • @backstage/catalog-model@0.7.0
    • @backstage/backend-common@0.5.0
    • @backstage/catalog-client@0.3.5

0.2.10

Patch Changes

  • 468579734: Allow blank certificates and support logout URLs in the SAML provider.
  • Updated dependencies [f3b064e1c]
  • Updated dependencies [abbee6fff]
  • Updated dependencies [147fadcb9]
    • @backstage/catalog-model@0.6.1
    • @backstage/backend-common@0.4.3

0.2.9

Patch Changes

  • 0289a059c: Add support for the majority of the Core configurations for Passport-SAML.

    These configuration keys are supported:

    • entryPoint
    • issuer
    • cert
    • privateKey
    • decryptionPvk
    • signatureAlgorithm
    • digestAlgorithm

    As part of this change, there is also a fix to the redirection behaviour when doing load balancing and HTTPS termination - the application's baseUrl is used to generate the callback URL. For properly configured Backstage installations, no changes are necessary, and the baseUrl is respected.

  • Updated dependencies [5ecd50f8a]

  • Updated dependencies [00042e73c]
  • Updated dependencies [0829ff126]
  • Updated dependencies [036a84373]
    • @backstage/backend-common@0.4.2

0.2.8

Patch Changes

  • cc046682e: fix bug in token expiration date

0.2.7

Patch Changes

  • 7b15cc271: Added configuration schema for the commonly used properties
  • Updated dependencies [c911061b7]
  • Updated dependencies [1d1c2860f]
  • Updated dependencies [0e6298f7e]
  • Updated dependencies [4eafdec4a]
  • Updated dependencies [ac3560b42]
    • @backstage/catalog-model@0.6.0
    • @backstage/backend-common@0.4.1
    • @backstage/catalog-client@0.3.4

0.2.6

Patch Changes

  • Updated dependencies [38e24db00]
  • Updated dependencies [e3bd9fc2f]
  • Updated dependencies [12bbd748c]
  • Updated dependencies [83b6e0c1f]
  • Updated dependencies [e3bd9fc2f]
    • @backstage/backend-common@0.4.0
    • @backstage/config@0.1.2
    • @backstage/catalog-model@0.5.0
    • @backstage/catalog-client@0.3.3

0.2.5

Patch Changes

  • Updated dependencies [612368274]
  • Updated dependencies [08835a61d]
  • Updated dependencies [a9fd599f7]
  • Updated dependencies [bcc211a08]
    • @backstage/backend-common@0.3.3
    • @backstage/catalog-model@0.4.0
    • @backstage/catalog-client@0.3.2

0.2.4

Patch Changes

  • 50eff1d00: Allow the backend to register custom AuthProviderFactories
  • 700a212b4: bug fix: issue 3223 - detect mismatching origin and indicate it in the message at auth failure
  • Updated dependencies [3aa7efb3f]
  • Updated dependencies [ab94c9542]
  • Updated dependencies [2daf18e80]
  • Updated dependencies [069cda35f]
  • Updated dependencies [b3d4e4e57]
    • @backstage/backend-common@0.3.2
    • @backstage/catalog-model@0.3.1

0.2.3

Patch Changes

  • Updated dependencies [1166fcc36]
  • Updated dependencies [bff3305aa]
  • Updated dependencies [1185919f3]
  • Updated dependencies [b47dce06f]
    • @backstage/catalog-model@0.3.0
    • @backstage/backend-common@0.3.1
    • @backstage/catalog-client@0.3.1

0.2.2

Patch Changes

  • Updated dependencies [1722cb53c]
  • Updated dependencies [1722cb53c]
  • Updated dependencies [7b37e6834]
  • Updated dependencies [8e2effb53]
  • Updated dependencies [717e43de1]
    • @backstage/backend-common@0.3.0
    • @backstage/catalog-client@0.3.0

0.2.1

Patch Changes

  • 752808090: Handle non-7-bit safe characters in the posted message data
  • 462876399: Encode the OAuth state parameter using URL safe chars only, so that providers have an easier time forming the callback URL.
  • Updated dependencies [33b7300eb]
    • @backstage/backend-common@0.2.1

0.2.0

Minor Changes

  • 28edd7d29: Create backend plugin through CLI
  • 819a70229: Add SAML login to backstage

  • 6d29605db: Change the default backend plugin mount point to /api

  • 5249594c5: Add service discovery interface and implement for single host deployments

    Fixes #1847, #2596

    Went with an interface similar to the frontend DiscoveryApi, since it's dead simple but still provides a lot of flexibility in the implementation.

    Also ended up with two different methods, one for internal endpoint discovery and one for external. The two use-cases are explained a bit more in the docs, but basically it's service-to-service vs callback URLs.

    This did get me thinking about uniqueness and that we're heading towards a global namespace for backend plugin IDs. That's probably fine, but if we're happy with that we should leverage it a bit more to simplify the backend setup. For example we'd have each plugin provide its own ID and not manually mount on paths in the backend.

    Draft until we're happy with the implementation, then I can add more docs and changelog entry. Also didn't go on a thorough hunt for places where discovery can be used, but I don't think there are many since it's been pretty awkward to do service-to-service communication.

  • 6f1768c0f: Initial implementation of catalog user lookup

    This adds a basic catalog client + method for the Google provider to look up users in the catalog. It expects to find a single user entity in the catalog with a google.com/email annotation that matches the email of the Google profile.

    Right now it falls back to the old behavior of splitting the email, since I don't wanna break the sign-in flow for existing apps, not yet anyway x).

    • Added "@backstage/catalog-model@^0.1.1-alpha.23" as a dependency
    • Added "node-fetch@^2.6.1" as a dependency
  • 1687b8fbb: Lookup user in Google Auth Provider

Patch Changes

  • b4e5466e1: Move auth provider router creation to router
  • b652bf2cc: Add OneLogin Identity Provider to Auth Backend
  • e142a2767: Better presentation of authentication errors
  • Updated dependencies [3a4236570]
  • Updated dependencies [e0be86b6f]
  • Updated dependencies [f70a52868]
  • Updated dependencies [12b5fe940]
  • Updated dependencies [5249594c5]
  • Updated dependencies [56e4eb589]
  • Updated dependencies [e37c0a005]
  • Updated dependencies [a768a07fb]
  • Updated dependencies [f00ca3cb8]
  • Updated dependencies [6579769df]
  • Updated dependencies [5adfc005e]
  • Updated dependencies [8c2b76e45]
  • Updated dependencies [440a17b39]
  • Updated dependencies [fa56f4615]
  • Updated dependencies [8afce088a]
  • Updated dependencies [b3d57961c]
  • Updated dependencies [7bbeb049f]
    • @backstage/catalog-model@0.2.0
    • @backstage/backend-common@0.2.0