@backstage/plugin-auth-backend 0.17.1-next.0 → 0.17.1-next.1

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,5 +1,20 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.17.1-next.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 0d6837ca4e: Fix wrong GitHub callback URL documentation
8
+ - abaed9770e: Improve logging
9
+ - Updated dependencies
10
+ - @backstage/backend-common@0.16.0-next.1
11
+ - @backstage/plugin-auth-node@0.2.7-next.1
12
+ - @backstage/catalog-client@1.1.2-next.0
13
+ - @backstage/catalog-model@1.1.3-next.0
14
+ - @backstage/config@1.0.4-next.0
15
+ - @backstage/errors@1.1.3-next.0
16
+ - @backstage/types@1.0.1-next.0
17
+
3
18
  ## 0.17.1-next.0
4
19
 
5
20
  ### Patch Changes
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,