@backstage/plugin-auth-backend 0.17.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,34 @@
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
+
18
+ ## 0.17.1-next.0
19
+
20
+ ### Patch Changes
21
+
22
+ - cbe11d1e23: Tweak README
23
+ - Updated dependencies
24
+ - @backstage/backend-common@0.16.0-next.0
25
+ - @backstage/catalog-model@1.1.3-next.0
26
+ - @backstage/plugin-auth-node@0.2.7-next.0
27
+ - @backstage/types@1.0.1-next.0
28
+ - @backstage/catalog-client@1.1.2-next.0
29
+ - @backstage/config@1.0.4-next.0
30
+ - @backstage/errors@1.1.3-next.0
31
+
3
32
  ## 0.17.0
4
33
 
5
34
  ### Minor 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
@@ -91,9 +91,9 @@ export AUTH_GITLAB_CLIENT_SECRET=x
91
91
 
92
92
  Add a new Okta application using the following URI conventions:
93
93
 
94
- Login redirect URI's: `http://localhost:7007/api/auth/okta/handler/frame`
95
- Logout redirect URI's: `http://localhost:7007/api/auth/okta/logout`
96
- Initiate login URI's: `http://localhost:7007/api/auth/okta/start`
94
+ Login redirect URIs: `http://localhost:7007/api/auth/okta/handler/frame`
95
+ Logout redirect URIs: `http://localhost:7007/api/auth/okta/logout`
96
+ Initiate login URIs: `http://localhost:7007/api/auth/okta/start`
97
97
 
98
98
  Then configure the following environment variables to be used in the `app-config.yaml` file:
99
99
 
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,