@backstage/plugin-catalog-backend-module-msgraph 0.5.0-next.2 → 0.5.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 +24 -0
- package/alpha/package.json +1 -1
- package/package.json +10 -10
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,29 @@
|
|
|
1
1
|
# @backstage/plugin-catalog-backend-module-msgraph
|
|
2
2
|
|
|
3
|
+
## 0.5.0
|
|
4
|
+
|
|
5
|
+
### Minor Changes
|
|
6
|
+
|
|
7
|
+
- fb568e2683: Improve performance when loading users via group membership.
|
|
8
|
+
Users data is now loaded from a paged query, rather than having to make an extra call per user to load each user's profiles.
|
|
9
|
+
|
|
10
|
+
Note, there are still additional per user calls made to load user avatars
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- 4c86436fdf: Fix MS Graph provider to use target URL for fetching access token
|
|
15
|
+
- 0daa328c3a: Extract default transformers to their own file
|
|
16
|
+
- 28f9883440: Fixed a bug reading the `user.select` field expected from the `app-config.yaml` configuration
|
|
17
|
+
- c5b119ad9c: Increased default page size to 999 (from 100) to reduce the number of calls made to the Microsoft Graph API.
|
|
18
|
+
- Updated dependencies
|
|
19
|
+
- @backstage/plugin-catalog-backend@1.7.2
|
|
20
|
+
- @backstage/backend-plugin-api@0.4.0
|
|
21
|
+
- @backstage/backend-common@0.18.2
|
|
22
|
+
- @backstage/catalog-model@1.2.0
|
|
23
|
+
- @backstage/plugin-catalog-node@1.3.3
|
|
24
|
+
- @backstage/backend-tasks@0.4.3
|
|
25
|
+
- @backstage/config@1.0.6
|
|
26
|
+
|
|
3
27
|
## 0.5.0-next.2
|
|
4
28
|
|
|
5
29
|
### Minor Changes
|
package/alpha/package.json
CHANGED
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@backstage/plugin-catalog-backend-module-msgraph",
|
|
3
3
|
"description": "A Backstage catalog backend module that helps integrate towards Microsoft Graph",
|
|
4
|
-
"version": "0.5.0
|
|
4
|
+
"version": "0.5.0",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"license": "Apache-2.0",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
},
|
|
35
35
|
"dependencies": {
|
|
36
36
|
"@azure/identity": "^2.1.0",
|
|
37
|
-
"@backstage/backend-common": "^0.18.2
|
|
38
|
-
"@backstage/backend-plugin-api": "^0.4.0
|
|
39
|
-
"@backstage/backend-tasks": "^0.4.3
|
|
40
|
-
"@backstage/catalog-model": "^1.2.0
|
|
37
|
+
"@backstage/backend-common": "^0.18.2",
|
|
38
|
+
"@backstage/backend-plugin-api": "^0.4.0",
|
|
39
|
+
"@backstage/backend-tasks": "^0.4.3",
|
|
40
|
+
"@backstage/catalog-model": "^1.2.0",
|
|
41
41
|
"@backstage/config": "^1.0.6",
|
|
42
|
-
"@backstage/plugin-catalog-backend": "^1.7.2
|
|
43
|
-
"@backstage/plugin-catalog-node": "^1.3.3
|
|
42
|
+
"@backstage/plugin-catalog-backend": "^1.7.2",
|
|
43
|
+
"@backstage/plugin-catalog-node": "^1.3.3",
|
|
44
44
|
"@microsoft/microsoft-graph-types": "^2.6.0",
|
|
45
45
|
"@types/node-fetch": "^2.5.12",
|
|
46
46
|
"lodash": "^4.17.21",
|
|
@@ -51,9 +51,9 @@
|
|
|
51
51
|
"winston": "^3.2.1"
|
|
52
52
|
},
|
|
53
53
|
"devDependencies": {
|
|
54
|
-
"@backstage/backend-common": "^0.18.2
|
|
55
|
-
"@backstage/backend-test-utils": "^0.1.34
|
|
56
|
-
"@backstage/cli": "^0.22.2
|
|
54
|
+
"@backstage/backend-common": "^0.18.2",
|
|
55
|
+
"@backstage/backend-test-utils": "^0.1.34",
|
|
56
|
+
"@backstage/cli": "^0.22.2",
|
|
57
57
|
"@types/lodash": "^4.14.151",
|
|
58
58
|
"luxon": "^3.0.0",
|
|
59
59
|
"msw": "^0.49.0"
|