@backstage/plugin-auth-backend-module-microsoft-provider 0.3.18-next.1 → 0.3.18

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 +9 -0
  2. package/package.json +9 -9
package/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # @backstage/plugin-auth-backend-module-microsoft-provider
2
2
 
3
+ ## 0.3.18
4
+
5
+ ### Patch Changes
6
+
7
+ - 7ccaf9d: Fixed an issue where acquiring tokens with non-Graph scopes (such as Azure Management API) would crash the sign-in resolver because the user profile was unavailable. This affected both the initial sign-in and later token refreshes. The Microsoft authenticator now makes a separate Graph API call to fetch the profile when the primary token targets a different resource. Setting the `skipUserProfile` configuration option to true disables this extra call.
8
+ - Updated dependencies
9
+ - @backstage/backend-plugin-api@1.10.0
10
+ - @backstage/plugin-auth-node@0.7.4
11
+
3
12
  ## 0.3.18-next.1
4
13
 
5
14
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-microsoft-provider",
3
- "version": "0.3.18-next.1",
3
+ "version": "0.3.18",
4
4
  "description": "The microsoft-provider backend module for the auth plugin.",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -37,20 +37,20 @@
37
37
  "test": "backstage-cli package test"
38
38
  },
39
39
  "dependencies": {
40
- "@backstage/backend-plugin-api": "1.10.0-next.1",
41
- "@backstage/plugin-auth-node": "0.7.4-next.0",
40
+ "@backstage/backend-plugin-api": "^1.10.0",
41
+ "@backstage/plugin-auth-node": "^0.7.4",
42
42
  "express": "^4.22.0",
43
43
  "jose": "^5.0.0",
44
44
  "passport-microsoft": "^1.0.0",
45
45
  "zod": "^3.25.76 || ^4.0.0"
46
46
  },
47
47
  "devDependencies": {
48
- "@backstage/backend-defaults": "0.17.7-next.2",
49
- "@backstage/backend-test-utils": "1.11.6-next.1",
50
- "@backstage/cli": "0.36.5-next.1",
51
- "@backstage/config": "1.3.8",
52
- "@backstage/plugin-auth-backend": "0.30.0-next.1",
53
- "@backstage/types": "1.2.2",
48
+ "@backstage/backend-defaults": "^0.17.7",
49
+ "@backstage/backend-test-utils": "^1.11.6",
50
+ "@backstage/cli": "^0.36.5",
51
+ "@backstage/config": "^1.3.8",
52
+ "@backstage/plugin-auth-backend": "^0.30.0",
53
+ "@backstage/types": "^1.2.2",
54
54
  "@types/passport-microsoft": "^1.0.0",
55
55
  "msw": "^2.0.0",
56
56
  "supertest": "^7.0.0"