@backstage/plugin-auth-backend 0.18.2-next.3 → 0.18.3-next.0

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +44 -0
  2. package/package.json +7 -7
package/CHANGELOG.md CHANGED
@@ -1,5 +1,49 @@
1
1
  # @backstage/plugin-auth-backend
2
2
 
3
+ ## 0.18.3-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/backend-common@0.18.5-next.0
9
+ - @backstage/plugin-auth-node@0.2.14-next.0
10
+ - @backstage/catalog-client@1.4.1
11
+ - @backstage/catalog-model@1.3.0
12
+ - @backstage/config@1.0.7
13
+ - @backstage/errors@1.1.5
14
+ - @backstage/types@1.0.2
15
+
16
+ ## 0.18.2
17
+
18
+ ### Patch Changes
19
+
20
+ - d8f774c30df: Enforce the secret visibility of certificates and client secrets in the auth backend. Also, document all known options for each auth plugin.
21
+ - 7908d72e033: Introduce a new global config parameter, `auth.enableExperimentalRedirectFlow`. When enabled, auth will happen with an in-window redirect flow rather than through a popup window.
22
+ - 475abd1dc3f: The `microsoft` (i.e. Azure) auth provider now supports negotiating tokens for
23
+ Azure resources besides Microsoft Graph (e.g. AKS, Virtual Machines, Machine
24
+ Learning Services, etc.). When the `/frame/handler` endpoint is called with an
25
+ authorization code for a non-Microsoft Graph scope, the user profile will not be
26
+ fetched. Similarly no user profile or photo data will be fetched by the backend
27
+ if the `/refresh` endpoint is called with the `scope` query parameter strictly
28
+ containing scopes for resources besides Microsoft Graph.
29
+
30
+ Furthermore, the `offline_access` scope will be requested by default, even when
31
+ it is not mentioned in the argument to `getAccessToken`. This means that any
32
+ Azure access token can be automatically refreshed, even if the user has not
33
+ signed in via Azure.
34
+
35
+ - 6a900951336: Add common identify resolvers for `oidc` auth provider.
36
+ - a0ef1ec7349: Export Azure Easy Auth provider so it can actually be used.
37
+ - e0c6e8b9c3c: Update peer dependencies
38
+ - Updated dependencies
39
+ - @backstage/backend-common@0.18.4
40
+ - @backstage/catalog-client@1.4.1
41
+ - @backstage/catalog-model@1.3.0
42
+ - @backstage/plugin-auth-node@0.2.13
43
+ - @backstage/config@1.0.7
44
+ - @backstage/errors@1.1.5
45
+ - @backstage/types@1.0.2
46
+
3
47
  ## 0.18.2-next.3
4
48
 
5
49
  ### Patch Changes
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend",
3
3
  "description": "A Backstage backend plugin that handles authentication",
4
- "version": "0.18.2-next.3",
4
+ "version": "0.18.3-next.0",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -32,12 +32,12 @@
32
32
  "clean": "backstage-cli package clean"
33
33
  },
34
34
  "dependencies": {
35
- "@backstage/backend-common": "^0.18.4-next.2",
36
- "@backstage/catalog-client": "^1.4.1-next.1",
37
- "@backstage/catalog-model": "^1.3.0-next.0",
35
+ "@backstage/backend-common": "^0.18.5-next.0",
36
+ "@backstage/catalog-client": "^1.4.1",
37
+ "@backstage/catalog-model": "^1.3.0",
38
38
  "@backstage/config": "^1.0.7",
39
39
  "@backstage/errors": "^1.1.5",
40
- "@backstage/plugin-auth-node": "^0.2.13-next.2",
40
+ "@backstage/plugin-auth-node": "^0.2.14-next.0",
41
41
  "@backstage/types": "^1.0.2",
42
42
  "@davidzemon/passport-okta-oauth": "^0.0.5",
43
43
  "@google-cloud/firestore": "^6.0.0",
@@ -76,8 +76,8 @@
76
76
  "yn": "^4.0.0"
77
77
  },
78
78
  "devDependencies": {
79
- "@backstage/backend-test-utils": "^0.1.36-next.2",
80
- "@backstage/cli": "^0.22.6-next.3",
79
+ "@backstage/backend-test-utils": "^0.1.37-next.0",
80
+ "@backstage/cli": "^0.22.7-next.0",
81
81
  "@types/body-parser": "^1.19.0",
82
82
  "@types/cookie-parser": "^1.4.2",
83
83
  "@types/express-session": "^1.17.2",