@backstage/plugin-catalog-backend-module-msgraph-incremental 0.1.0-next.0 → 0.1.1-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 CHANGED
@@ -1,5 +1,32 @@
1
1
  # @backstage/plugin-catalog-backend-module-msgraph-incremental
2
2
 
3
+ ## 0.1.1-next.0
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies
8
+ - @backstage/plugin-catalog-backend-module-msgraph@0.10.1-next.0
9
+ - @backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.13-next.0
10
+ - @backstage/plugin-catalog-node@2.2.2-next.0
11
+ - @backstage/backend-plugin-api@1.9.2-next.0
12
+
13
+ ## 0.1.0
14
+
15
+ ### Minor Changes
16
+
17
+ - 2bd0450: **BREAKING**: Disabled user accounts are now filtered out by default. The provider automatically applies an `accountEnabled eq true` filter, combining it with any custom `user.filter` you provide. If you previously included `accountEnabled eq true` in your user filter, it is safe to remove it, but leaving it in will not cause any issues.
18
+ - f1279ea: Introduces a cursor-based incremental ingestion provider for Microsoft Graph that processes users and groups one page at a time. Unlike `MicrosoftGraphOrgEntityProvider`, this module never holds the full dataset in memory — each burst processes a single page (up to 999 users or 100 groups). The `@odata.nextLink` cursor is persisted so a pod restart resumes from the last completed page rather than starting over.
19
+
20
+ ### Patch Changes
21
+
22
+ - Updated dependencies
23
+ - @backstage/catalog-model@1.9.0
24
+ - @backstage/backend-plugin-api@1.9.1
25
+ - @backstage/plugin-catalog-node@2.2.1
26
+ - @backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.12
27
+ - @backstage/plugin-catalog-backend-module-msgraph@0.10.0
28
+ - @backstage/config@1.3.8
29
+
3
30
  ## 0.1.0-next.0
4
31
 
5
32
  ### Minor Changes
package/README.md CHANGED
@@ -55,7 +55,8 @@ catalog:
55
55
  clientSecret: ${AZURE_CLIENT_SECRET}
56
56
  queryMode: advanced
57
57
  user:
58
- filter: 'accountEnabled eq true'
58
+ # accountEnabled eq true is applied by default; add extra filters here
59
+ filter: "userType eq 'member'"
59
60
  group:
60
61
  filter: 'securityEnabled eq true'
61
62
  schedule:
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@backstage/plugin-catalog-backend-module-msgraph-incremental",
3
- "version": "0.1.0-next.0",
3
+ "version": "0.1.1-next.0",
4
4
  "description": "A Backstage catalog backend module that incrementally ingests users and groups from Microsoft Graph",
5
5
  "backstage": {
6
6
  "role": "backend-plugin-module",
@@ -62,18 +62,18 @@
62
62
  "test": "backstage-cli package test"
63
63
  },
64
64
  "dependencies": {
65
- "@backstage/backend-plugin-api": "1.9.1-next.0",
66
- "@backstage/catalog-model": "1.8.1-next.1",
67
- "@backstage/config": "1.3.8-next.0",
68
- "@backstage/plugin-catalog-backend-module-incremental-ingestion": "0.7.12-next.1",
69
- "@backstage/plugin-catalog-backend-module-msgraph": "0.9.3-next.1",
70
- "@backstage/plugin-catalog-node": "2.2.1-next.1",
65
+ "@backstage/backend-plugin-api": "1.9.2-next.0",
66
+ "@backstage/catalog-model": "1.9.0",
67
+ "@backstage/config": "1.3.8",
68
+ "@backstage/plugin-catalog-backend-module-incremental-ingestion": "0.7.13-next.0",
69
+ "@backstage/plugin-catalog-backend-module-msgraph": "0.10.1-next.0",
70
+ "@backstage/plugin-catalog-node": "2.2.2-next.0",
71
71
  "@backstage/types": "1.2.2",
72
72
  "@microsoft/microsoft-graph-types": "^2.6.0",
73
73
  "p-limit": "^3.0.2"
74
74
  },
75
75
  "devDependencies": {
76
- "@backstage/backend-test-utils": "1.11.3-next.1",
77
- "@backstage/cli": "0.36.2-next.1"
76
+ "@backstage/backend-test-utils": "1.11.4-next.0",
77
+ "@backstage/cli": "0.36.3-next.0"
78
78
  }
79
79
  }