# @backstage/plugin-auth-backend-module-github-provider ## 0.3.4-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.4.0-next.0 - @backstage/plugin-auth-node@0.6.4-next.0 ## 0.3.3 ### Patch Changes - 5cdfe05: Added missing types package - 5cc1f7f: Introduce `dangerouslyAllowSignInWithoutUserInCatalog` auth resolver config. - Updated dependencies - @backstage/plugin-auth-node@0.6.3 - @backstage/backend-plugin-api@1.3.1 ## 0.3.3-next.2 ### Patch Changes - 5cc1f7f: Introduce `dangerouslyAllowSignInWithoutUserInCatalog` auth resolver config. - Updated dependencies - @backstage/plugin-auth-node@0.6.3-next.2 - @backstage/backend-plugin-api@1.3.1-next.2 ## 0.3.3-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.3-next.1 - @backstage/backend-plugin-api@1.3.1-next.1 ## 0.3.3-next.0 ### Patch Changes - 5cdfe05: Added missing types package - Updated dependencies - @backstage/backend-plugin-api@1.3.1-next.0 - @backstage/plugin-auth-node@0.6.3-next.0 ## 0.3.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.3.0 - @backstage/plugin-auth-node@0.6.2 ## 0.3.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.1 - @backstage/backend-plugin-api@1.2.1 ## 0.3.1-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.1-next.1 - @backstage/backend-plugin-api@1.2.1-next.1 ## 0.3.1-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.6.1-next.0 - @backstage/backend-plugin-api@1.2.1-next.0 ## 0.3.0 ### Minor Changes - 61f464e: Added `auth.providers..sessionDuration` config for auth providers to allow the lifespan of user sessions to be configured. ### Patch Changes - b40af03: Fixed a bug where the requested scope was ignored when refreshing sessions for a GitHub OAuth App. This would lead to access tokens being returned that didn't have the requested scope, and in turn errors when trying to use these tokens. As part of this fix all existing sessions are being revoked in order to ensure that they receive the correct scope. - Updated dependencies - @backstage/backend-plugin-api@1.2.0 - @backstage/plugin-auth-node@0.6.0 ## 0.3.0-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.2.0-next.2 - @backstage/plugin-auth-node@0.6.0-next.2 ## 0.3.0-next.1 ### Minor Changes - 61f464e: Added `auth.providers..sessionDuration` config for auth providers to allow the lifespan of user sessions to be configured. ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.2.0-next.1 - @backstage/plugin-auth-node@0.6.0-next.1 ## 0.2.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.2.0-next.0 - @backstage/plugin-auth-node@0.5.7-next.0 ## 0.2.4 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.6 - @backstage/backend-plugin-api@1.1.1 ## 0.2.4-next.1 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.1.1-next.1 - @backstage/plugin-auth-node@0.5.6-next.1 ## 0.2.4-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.6-next.0 - @backstage/backend-plugin-api@1.1.1-next.0 ## 0.2.3 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.5 - @backstage/backend-plugin-api@1.1.0 ## 0.2.3-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.1.0-next.2 - @backstage/plugin-auth-node@0.5.5-next.2 ## 0.2.3-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.5-next.1 - @backstage/backend-plugin-api@1.1.0-next.1 ## 0.2.3-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.0.3-next.0 - @backstage/plugin-auth-node@0.5.5-next.0 ## 0.2.2 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.4 - @backstage/backend-plugin-api@1.0.2 ## 0.2.2-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.4-next.2 - @backstage/backend-plugin-api@1.0.2-next.2 ## 0.2.2-next.1 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@1.0.2-next.1 - @backstage/plugin-auth-node@0.5.4-next.1 ## 0.2.2-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.4-next.0 - @backstage/backend-plugin-api@1.0.2-next.0 ## 0.2.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3 - @backstage/backend-plugin-api@1.0.1 ## 0.2.1-next.1 ### Patch Changes - 217458a: Updated configuration schema to include the new `allowedDomains` option for the `emailLocalPartMatchingUserEntityName` sign-in resolver. - Updated dependencies - @backstage/plugin-auth-node@0.5.3-next.1 - @backstage/backend-plugin-api@1.0.1-next.1 ## 0.2.1-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.3-next.0 - @backstage/backend-plugin-api@1.0.1-next.0 ## 0.2.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](https://backstage.io/docs/tutorials/auth-service-migration) if you still rely on it. ### Patch Changes - c2b63ab: Updated dependency `supertest` to `^7.0.0`. - Updated dependencies - @backstage/backend-plugin-api@1.0.0 - @backstage/plugin-auth-node@0.5.2 ## 0.2.0-next.2 ### Patch Changes - c2b63ab: Updated dependency `supertest` to `^7.0.0`. - Updated dependencies - @backstage/plugin-auth-node@0.5.2-next.2 - @backstage/backend-plugin-api@1.0.0-next.2 ## 0.2.0-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.5.2-next.1 - @backstage/backend-plugin-api@0.9.0-next.1 ## 0.2.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](https://backstage.io/docs/tutorials/auth-service-migration) if you still rely on it. ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.9.0-next.0 - @backstage/plugin-auth-node@0.5.2-next.0 ## 0.1.20 ### Patch Changes - c8f1cae: Add `signIn` to authentication provider configuration schema - Updated dependencies - @backstage/backend-plugin-api@0.8.0 - @backstage/plugin-auth-node@0.5.0 ## 0.1.20-next.3 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.8.0-next.3 - @backstage/plugin-auth-node@0.5.0-next.3 ## 0.1.20-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.8.0-next.2 - @backstage/plugin-auth-node@0.5.0-next.2 ## 0.1.20-next.1 ### Patch Changes - c8f1cae: Add `signIn` to authentication provider configuration schema - Updated dependencies - @backstage/backend-plugin-api@0.7.1-next.1 - @backstage/plugin-auth-node@0.4.18-next.1 ## 0.1.20-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.7.1-next.0 - @backstage/plugin-auth-node@0.4.18-next.0 ## 0.1.19 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.7.0 - @backstage/plugin-auth-node@0.4.17 ## 0.1.19-next.1 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.22-next.1 - @backstage/plugin-auth-node@0.4.17-next.1 ## 0.1.18-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.21-next.0 - @backstage/plugin-auth-node@0.4.16-next.0 ## 0.1.16 ### Patch Changes - 78a0b08: Internal refactor to handle `BackendFeature` contract change. - 8efc6cf: Added support for the new shared `additionalScopes` configuration. In addition, the `read:user` scope has been set to required and will always be present. - d44a20a: Added additional plugin metadata to `package.json`. - Updated dependencies - @backstage/backend-plugin-api@0.6.19 - @backstage/plugin-auth-node@0.4.14 ## 0.1.16-next.2 ### Patch Changes - 8efc6cf: Added support for the new shared `additionalScopes` configuration. In addition, the `read:user` scope has been set to required and will always be present. - d44a20a: Added additional plugin metadata to `package.json`. - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.3 - @backstage/plugin-auth-node@0.4.14-next.3 ## 0.1.16-next.1 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.2 - @backstage/plugin-auth-node@0.4.14-next.2 ## 0.1.16-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.19-next.0 - @backstage/plugin-auth-node@0.4.14-next.0 ## 0.1.15 ### Patch Changes - 4a0577e: fix: Move config declarations to appropriate auth backend modules - Updated dependencies - @backstage/backend-plugin-api@0.6.18 - @backstage/plugin-auth-node@0.4.13 ## 0.1.15-next.2 ### Patch Changes - 4a0577e: fix: Move config declarations to appropriate auth backend modules ## 0.1.15-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.4.13-next.1 - @backstage/backend-plugin-api@0.6.18-next.1 ## 0.1.15-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.4.13-next.0 - @backstage/backend-plugin-api@0.6.18-next.0 ## 0.1.14 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.17 - @backstage/plugin-auth-node@0.4.12 ## 0.1.14-next.1 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.17-next.1 - @backstage/plugin-auth-node@0.4.12-next.1 ## 0.1.14-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.17-next.0 - @backstage/plugin-auth-node@0.4.12-next.0 ## 0.1.13 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.4.11 - @backstage/backend-plugin-api@0.6.16 ## 0.1.12 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.4.10 - @backstage/backend-plugin-api@0.6.15 ## 0.1.11 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.4.9 - @backstage/backend-plugin-api@0.6.14 ## 0.1.11-next.2 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.4.9-next.2 - @backstage/backend-plugin-api@0.6.14-next.2 ## 0.1.11-next.1 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.14-next.1 - @backstage/plugin-auth-node@0.4.9-next.1 ## 0.1.10-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.4.8-next.0 - @backstage/backend-plugin-api@0.6.13-next.0 ## 0.1.7 ### Patch Changes - 8472188: Added or fixed the `repository` field in `package.json`. - Updated dependencies - @backstage/plugin-auth-node@0.4.4 - @backstage/backend-plugin-api@0.6.10 ## 0.1.7-next.3 ### Patch Changes - 8472188: Added or fixed the `repository` field in `package.json`. - Updated dependencies - @backstage/plugin-auth-node@0.4.4-next.3 - @backstage/backend-plugin-api@0.6.10-next.3 ## 0.1.7-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.10-next.2 - @backstage/plugin-auth-node@0.4.4-next.2 ## 0.1.7-next.1 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.10-next.1 - @backstage/plugin-auth-node@0.4.4-next.1 ## 0.1.7-next.0 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.4.4-next.0 - @backstage/backend-plugin-api@0.6.10-next.0 ## 0.1.6 ### Patch Changes - 4016f21: Remove some unused dependencies - Updated dependencies - @backstage/backend-plugin-api@0.6.9 - @backstage/plugin-auth-node@0.4.3 ## 0.1.6-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.9-next.2 - @backstage/plugin-auth-node@0.4.3-next.2 ## 0.1.6-next.1 ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.4.3-next.1 - @backstage/backend-plugin-api@0.6.9-next.1 ## 0.1.6-next.0 ### Patch Changes - 4016f21: Remove some unused dependencies - Updated dependencies - @backstage/backend-plugin-api@0.6.9-next.0 - @backstage/plugin-auth-node@0.4.3-next.0 ## 0.1.5 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.20.0 - @backstage/plugin-auth-node@0.4.2 - @backstage/backend-plugin-api@0.6.8 ## 0.1.5-next.3 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.20.0-next.3 - @backstage/backend-plugin-api@0.6.8-next.3 - @backstage/plugin-auth-node@0.4.2-next.3 ## 0.1.5-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.20.0-next.2 - @backstage/plugin-auth-node@0.4.2-next.2 - @backstage/backend-plugin-api@0.6.8-next.2 ## 0.1.5-next.1 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.20.0-next.1 - @backstage/backend-plugin-api@0.6.8-next.1 - @backstage/plugin-auth-node@0.4.2-next.1 ## 0.1.5-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.20.0-next.0 - @backstage/plugin-auth-node@0.4.2-next.0 - @backstage/backend-plugin-api@0.6.8-next.0 ## 0.1.4 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.9 - @backstage/backend-plugin-api@0.6.7 - @backstage/plugin-auth-node@0.4.1 ## 0.1.4-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-plugin-api@0.6.7-next.2 - @backstage/backend-common@0.19.9-next.2 - @backstage/plugin-auth-node@0.4.1-next.2 ## 0.1.4-next.1 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.9-next.1 - @backstage/plugin-auth-node@0.4.1-next.1 - @backstage/backend-plugin-api@0.6.7-next.1 ## 0.1.4-next.0 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.9-next.0 - @backstage/backend-plugin-api@0.6.7-next.0 - @backstage/plugin-auth-node@0.4.1-next.0 ## 0.1.3 ### Patch Changes - 5d32a58b5a: Fixed a bug where the GitHub authenticator did not properly persist granted OAuth scopes. - Updated dependencies - @backstage/backend-common@0.19.8 - @backstage/plugin-auth-node@0.4.0 - @backstage/backend-plugin-api@0.6.6 ## 0.1.3-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.8-next.2 - @backstage/plugin-auth-node@0.4.0-next.2 - @backstage/backend-plugin-api@0.6.6-next.2 ## 0.1.2-next.1 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.7-next.1 - @backstage/backend-plugin-api@0.6.5-next.1 - @backstage/plugin-auth-node@0.3.2-next.1 ## 0.1.2-next.0 ### Patch Changes - 5d32a58b5a: Fixed a bug where the GitHub authenticator did not properly persist granted OAuth scopes. - Updated dependencies - @backstage/plugin-auth-node@0.3.2-next.0 - @backstage/backend-common@0.19.7-next.0 - @backstage/backend-plugin-api@0.6.5-next.0 ## 0.1.0 ### Minor Changes - 23af27f5ce79: New module for `@backstage/plugin-auth-backend` that adds a GitHub auth provider. ### Patch Changes - 71114ac50e02: 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: ```ts import { examplePlugin } from '@backstage/plugin-example-backend'; backend.add(examplePlugin); ``` It should be migrated to this: ```ts backend.add(import('@backstage/plugin-example-backend')); ``` - Updated dependencies - @backstage/backend-common@0.19.5 - @backstage/plugin-auth-node@0.3.0 - @backstage/backend-plugin-api@0.6.3 ## 0.1.0-next.3 ### Patch Changes - 71114ac50e02: 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: ```ts import { examplePlugin } from '@backstage/plugin-example-backend'; backend.add(examplePlugin); ``` It should be migrated to this: ```ts backend.add(import('@backstage/plugin-example-backend')); ``` - Updated dependencies - @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 ## 0.1.0-next.2 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.5-next.2 - @backstage/plugin-auth-node@0.3.0-next.2 - @backstage/backend-plugin-api@0.6.3-next.2 ## 0.1.0-next.1 ### Patch Changes - Updated dependencies - @backstage/backend-common@0.19.5-next.1 - @backstage/backend-plugin-api@0.6.3-next.1 - @backstage/plugin-auth-node@0.3.0-next.1 ## 0.1.0-next.0 ### Minor Changes - 23af27f5ce79: New module for `@backstage/plugin-auth-backend` that adds a GitHub auth provider. ### Patch Changes - Updated dependencies - @backstage/plugin-auth-node@0.3.0-next.0 - @backstage/backend-common@0.19.4-next.0 - @backstage/backend-plugin-api@0.6.2-next.0