@backstage/plugin-catalog-backend-module-msgraph-incremental 0.0.0-nightly-20260519032312 → 0.1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +8 -8
  2. package/README.md +2 -1
  3. package/package.json +10 -10
package/CHANGELOG.md CHANGED
@@ -1,21 +1,21 @@
1
1
  # @backstage/plugin-catalog-backend-module-msgraph-incremental
2
2
 
3
- ## 0.0.0-nightly-20260519032312
3
+ ## 0.1.0
4
4
 
5
5
  ### Minor Changes
6
6
 
7
+ - 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.
7
8
  - 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.
8
9
 
9
10
  ### Patch Changes
10
11
 
11
12
  - Updated dependencies
12
- - @backstage/backend-plugin-api@0.0.0-nightly-20260519032312
13
- - @backstage/catalog-model@0.0.0-nightly-20260519032312
14
- - @backstage/plugin-catalog-node@0.0.0-nightly-20260519032312
15
- - @backstage/plugin-catalog-backend-module-incremental-ingestion@0.0.0-nightly-20260519032312
16
- - @backstage/plugin-catalog-backend-module-msgraph@0.0.0-nightly-20260519032312
17
- - @backstage/config@0.0.0-nightly-20260519032312
18
- - @backstage/types@1.2.2
13
+ - @backstage/catalog-model@1.9.0
14
+ - @backstage/backend-plugin-api@1.9.1
15
+ - @backstage/plugin-catalog-node@2.2.1
16
+ - @backstage/plugin-catalog-backend-module-incremental-ingestion@0.7.12
17
+ - @backstage/plugin-catalog-backend-module-msgraph@0.10.0
18
+ - @backstage/config@1.3.8
19
19
 
20
20
  ## 0.1.0-next.0
21
21
 
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.0.0-nightly-20260519032312",
3
+ "version": "0.1.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": "0.0.0-nightly-20260519032312",
66
- "@backstage/catalog-model": "0.0.0-nightly-20260519032312",
67
- "@backstage/config": "0.0.0-nightly-20260519032312",
68
- "@backstage/plugin-catalog-backend-module-incremental-ingestion": "0.0.0-nightly-20260519032312",
69
- "@backstage/plugin-catalog-backend-module-msgraph": "0.0.0-nightly-20260519032312",
70
- "@backstage/plugin-catalog-node": "0.0.0-nightly-20260519032312",
71
- "@backstage/types": "1.2.2",
65
+ "@backstage/backend-plugin-api": "^1.9.1",
66
+ "@backstage/catalog-model": "^1.9.0",
67
+ "@backstage/config": "^1.3.8",
68
+ "@backstage/plugin-catalog-backend-module-incremental-ingestion": "^0.7.12",
69
+ "@backstage/plugin-catalog-backend-module-msgraph": "^0.10.0",
70
+ "@backstage/plugin-catalog-node": "^2.2.1",
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": "0.0.0-nightly-20260519032312",
77
- "@backstage/cli": "0.0.0-nightly-20260519032312"
76
+ "@backstage/backend-test-utils": "^1.11.3",
77
+ "@backstage/cli": "^0.36.2"
78
78
  }
79
79
  }