@backstage/plugin-auth-backend-module-microsoft-provider 0.1.2-next.2 → 0.1.2

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,24 @@
1
1
  # @backstage/plugin-auth-backend-module-microsoft-provider
2
2
 
3
+ ## 0.1.2
4
+
5
+ ### Patch Changes
6
+
7
+ - a3236ad0ca: Fix link to the repository in `README.md`.
8
+ - 3979524c74: Added support for specifying a domain hint on the Microsoft authentication provider configuration.
9
+ - fde212dd10: Re-add the missing profile photo
10
+ as well as access token retrieval for foreign scopes.
11
+
12
+ Additionally, we switch from previously 48x48 to 96x96
13
+ which is the size used at the profile card.
14
+
15
+ - 5aeb14f035: Correctly mark the client secret in configuration as secret
16
+ - 2817115d09: Removed `prompt=consent` from start method to fix #20641
17
+ - Updated dependencies
18
+ - @backstage/backend-common@0.19.9
19
+ - @backstage/backend-plugin-api@0.6.7
20
+ - @backstage/plugin-auth-node@0.4.1
21
+
3
22
  ## 0.1.2-next.2
4
23
 
5
24
  ### Patch Changes
package/README.md CHANGED
@@ -1,8 +1,8 @@
1
1
  # Auth Module: Microsoft Provider
2
2
 
3
- This module provides an Microsoft auth provider implementation for `@backstage/plugin-auth-backend`.
3
+ This module provides a Microsoft auth provider implementation for `@backstage/plugin-auth-backend`.
4
4
 
5
5
  ## Links
6
6
 
7
- - [Repository](https://gitlab.com/backstage/backstage/tree/master/plugins/auth-backend-module-microsoft-provider)
7
+ - [Repository](https://github.com/backstage/backstage/tree/master/plugins/auth-backend-module-microsoft-provider)
8
8
  - [Backstage Project Homepage](https://backstage.io)
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@backstage/plugin-auth-backend-module-microsoft-provider",
3
3
  "description": "The microsoft-provider backend module for the auth plugin.",
4
- "version": "0.1.2-next.2",
4
+ "version": "0.1.2",
5
5
  "main": "dist/index.cjs.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "license": "Apache-2.0",
@@ -23,9 +23,9 @@
23
23
  "postpack": "backstage-cli package postpack"
24
24
  },
25
25
  "dependencies": {
26
- "@backstage/backend-common": "^0.19.9-next.2",
27
- "@backstage/backend-plugin-api": "^0.6.7-next.2",
28
- "@backstage/plugin-auth-node": "^0.4.1-next.2",
26
+ "@backstage/backend-common": "^0.19.9",
27
+ "@backstage/backend-plugin-api": "^0.6.7",
28
+ "@backstage/plugin-auth-node": "^0.4.1",
29
29
  "express": "^4.18.2",
30
30
  "jose": "^4.6.0",
31
31
  "node-fetch": "^2.6.7",
@@ -33,11 +33,11 @@
33
33
  "passport-microsoft": "^1.0.0"
34
34
  },
35
35
  "devDependencies": {
36
- "@backstage/backend-defaults": "^0.2.7-next.2",
37
- "@backstage/backend-test-utils": "^0.2.8-next.2",
38
- "@backstage/cli": "^0.24.0-next.1",
36
+ "@backstage/backend-defaults": "^0.2.7",
37
+ "@backstage/backend-test-utils": "^0.2.8",
38
+ "@backstage/cli": "^0.24.0",
39
39
  "@backstage/config": "^1.1.1",
40
- "@backstage/plugin-auth-backend": "^0.20.0-next.2",
40
+ "@backstage/plugin-auth-backend": "^0.20.0",
41
41
  "@types/passport-microsoft": "^1.0.0",
42
42
  "msw": "^1.0.0",
43
43
  "supertest": "^6.3.3"