@backstage/plugin-auth-backend-module-microsoft-provider 0.1.2-next.2 → 0.1.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.
- package/CHANGELOG.md +28 -0
- package/README.md +2 -2
- package/package.json +8 -8
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,33 @@
|
|
|
1
1
|
# @backstage/plugin-auth-backend-module-microsoft-provider
|
|
2
2
|
|
|
3
|
+
## 0.1.3-next.0
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- Updated dependencies
|
|
8
|
+
- @backstage/backend-common@0.20.0-next.0
|
|
9
|
+
- @backstage/plugin-auth-node@0.4.2-next.0
|
|
10
|
+
- @backstage/backend-plugin-api@0.6.8-next.0
|
|
11
|
+
|
|
12
|
+
## 0.1.2
|
|
13
|
+
|
|
14
|
+
### Patch Changes
|
|
15
|
+
|
|
16
|
+
- a3236ad0ca: Fix link to the repository in `README.md`.
|
|
17
|
+
- 3979524c74: Added support for specifying a domain hint on the Microsoft authentication provider configuration.
|
|
18
|
+
- fde212dd10: Re-add the missing profile photo
|
|
19
|
+
as well as access token retrieval for foreign scopes.
|
|
20
|
+
|
|
21
|
+
Additionally, we switch from previously 48x48 to 96x96
|
|
22
|
+
which is the size used at the profile card.
|
|
23
|
+
|
|
24
|
+
- 5aeb14f035: Correctly mark the client secret in configuration as secret
|
|
25
|
+
- 2817115d09: Removed `prompt=consent` from start method to fix #20641
|
|
26
|
+
- Updated dependencies
|
|
27
|
+
- @backstage/backend-common@0.19.9
|
|
28
|
+
- @backstage/backend-plugin-api@0.6.7
|
|
29
|
+
- @backstage/plugin-auth-node@0.4.1
|
|
30
|
+
|
|
3
31
|
## 0.1.2-next.2
|
|
4
32
|
|
|
5
33
|
### Patch Changes
|
package/README.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
# Auth Module: Microsoft Provider
|
|
2
2
|
|
|
3
|
-
This module provides
|
|
3
|
+
This module provides a Microsoft auth provider implementation for `@backstage/plugin-auth-backend`.
|
|
4
4
|
|
|
5
5
|
## Links
|
|
6
6
|
|
|
7
|
-
- [Repository](https://
|
|
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.
|
|
4
|
+
"version": "0.1.3-next.0",
|
|
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.
|
|
27
|
-
"@backstage/backend-plugin-api": "^0.6.
|
|
28
|
-
"@backstage/plugin-auth-node": "^0.4.
|
|
26
|
+
"@backstage/backend-common": "^0.20.0-next.0",
|
|
27
|
+
"@backstage/backend-plugin-api": "^0.6.8-next.0",
|
|
28
|
+
"@backstage/plugin-auth-node": "^0.4.2-next.0",
|
|
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.
|
|
37
|
-
"@backstage/backend-test-utils": "^0.2.
|
|
38
|
-
"@backstage/cli": "^0.24.
|
|
36
|
+
"@backstage/backend-defaults": "^0.2.8-next.0",
|
|
37
|
+
"@backstage/backend-test-utils": "^0.2.9-next.0",
|
|
38
|
+
"@backstage/cli": "^0.24.1-next.0",
|
|
39
39
|
"@backstage/config": "^1.1.1",
|
|
40
|
-
"@backstage/plugin-auth-backend": "^0.20.
|
|
40
|
+
"@backstage/plugin-auth-backend": "^0.20.1-next.0",
|
|
41
41
|
"@types/passport-microsoft": "^1.0.0",
|
|
42
42
|
"msw": "^1.0.0",
|
|
43
43
|
"supertest": "^6.3.3"
|