@backstage/plugin-auth-backend 0.0.0-nightly-20221102025507 → 0.0.0-nightly-20221104024954

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -1,18 +1,20 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
- ## 0.0.0-nightly-20221102025507
3
+ ## 0.0.0-nightly-20221104024954
4
4
 
5
5
  ### Patch Changes
6
6
 
7
+ - 0d6837ca4e: Fix wrong GitHub callback URL documentation
7
8
  - cbe11d1e23: Tweak README
8
- - Updated dependencies
9
- - @backstage/backend-common@0.0.0-nightly-20221102025507
10
- - @backstage/catalog-model@0.0.0-nightly-20221102025507
11
- - @backstage/plugin-auth-node@0.0.0-nightly-20221102025507
12
- - @backstage/types@0.0.0-nightly-20221102025507
13
- - @backstage/catalog-client@0.0.0-nightly-20221102025507
14
- - @backstage/config@0.0.0-nightly-20221102025507
15
- - @backstage/errors@0.0.0-nightly-20221102025507
9
+ - abaed9770e: Improve logging
10
+ - Updated dependencies
11
+ - @backstage/backend-common@0.0.0-nightly-20221104024954
12
+ - @backstage/catalog-model@0.0.0-nightly-20221104024954
13
+ - @backstage/plugin-auth-node@0.0.0-nightly-20221104024954
14
+ - @backstage/types@0.0.0-nightly-20221104024954
15
+ - @backstage/catalog-client@0.0.0-nightly-20221104024954
16
+ - @backstage/config@0.0.0-nightly-20221104024954
17
+ - @backstage/errors@0.0.0-nightly-20221104024954
16
18
 
17
19
  ## 0.17.1-next.0
18
20
 
package/README.md CHANGED
@@ -34,8 +34,8 @@ Follow this link, [Create new OAuth App](https://github.com/settings/application
34
34
  1. Set Application Name to `backstage-dev` or something along those lines.
35
35
  1. You can set the Homepage URL to whatever you want to.
36
36
  1. The Authorization Callback URL should match the redirect URI set in Backstage.
37
- 1. Set this to `http://localhost:7007/api/auth/github` for local development.
38
- 1. Set this to `http://{APP_FQDN}:{APP_BACKEND_PORT}/api/auth/github` for non-local deployments.
37
+ 1. Set this to `http://localhost:7007/api/auth/github/handler/frame` for local development.
38
+ 1. Set this to `http://{APP_FQDN}:{APP_BACKEND_PORT}/api/auth/github/handler/frame` for non-local deployments.
39
39
 
40
40
  ```bash
41
41
  export AUTH_GITHUB_CLIENT_ID=x
package/dist/index.cjs.js CHANGED
@@ -3221,7 +3221,7 @@ async function createRouter(options) {
3221
3221
  allProviderFactories
3222
3222
  )) {
3223
3223
  if (configuredProviders.includes(providerId)) {
3224
- logger.info(`Configuring provider, ${providerId}`);
3224
+ logger.info(`Configuring auth provider: ${providerId}`);
3225
3225
  try {
3226
3226
  const provider = providerFactory({
3227
3227
  providerId,