scimgateway 6.1.4 → 6.1.6
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/README.md +24 -1
- package/bun.lock +96 -139
- package/config/plugin-entra-id.json +538 -323
- package/lib/helper-rest.ts +0 -4
- package/lib/plugin-entra-id.ts +197 -130
- package/lib/plugin-loki.ts +35 -42
- package/lib/plugin-mongodb.ts +16 -5
- package/lib/postinstall.ts +14 -1
- package/lib/scimdef-v1.json +0 -2
- package/lib/scimdef-v2.json +2 -4
- package/lib/scimgateway.ts +237 -33
- package/package.json +13 -13
- package/test/lib/plugin-loki_test.ts +2 -8
- package/test/lib/plugin-scim_test.ts +1 -4
package/README.md
CHANGED
|
@@ -25,7 +25,7 @@ Latest news:
|
|
|
25
25
|
- [ETag](https://datatracker.ietf.org/doc/html/rfc7644#section-3.14) is now supported
|
|
26
26
|
- [Bulk Operations](https://datatracker.ietf.org/doc/html/rfc7644#section-3.7) is now supported
|
|
27
27
|
- Remote real-time log subscription for centralized logging and monitoring. Using browser `https://<host>/logger`, curl or custom client API - see configuration notes
|
|
28
|
-
- By configuring the chainingBaseUrl, it is now possible to chain multiple gateways in sequence, such as `gateway1->gateway2->gateway3->endpoint`. In this setup, gateway
|
|
28
|
+
- By configuring the chainingBaseUrl, it is now possible to chain multiple gateways in sequence, such as `gateway1->gateway2->gateway3->endpoint`. In this setup, gateway behave like a reverse proxy, validating authorization at each step unless PassThrough mode is enabled. Chaining is also supported in stream subscriber mode
|
|
29
29
|
- Email, onError and sendMail() supports more secure RESTful OAuth for Microsoft Exchange Online (ExO) and Google Workspace Gmail, alongside traditional SMTP Auth for all mail systems. HelperRest supports a wide range of common authentication methods, including basicAuth, bearerAuth, tokenAuth, oauth, oauthSamlBearer, oauthJwtBearer and Auth PassTrough
|
|
30
30
|
- Major release **v5.0.0** marks a shift from JavaScript to native TypeScript and prioritizes [Bun](https://bun.sh/) over Node.js. This upgrade requires some modifications to existing plugins.
|
|
31
31
|
- **BREAKING**: [SCIM Stream](https://elshaug.xyz/docs/scim-stream) is the modern way of user provisioning letting clients subscribe to messages instead of traditional IGA top-down provisioning. SCIM Gateway now offers enhanced functionality with support for message subscription and automated provisioning using SCIM Stream
|
|
@@ -1303,6 +1303,29 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1303
1303
|
|
|
1304
1304
|
## Change log
|
|
1305
1305
|
|
|
1306
|
+
### v6.1.6
|
|
1307
|
+
|
|
1308
|
+
[Fixed]
|
|
1309
|
+
|
|
1310
|
+
- plugin-loki and plugin-mongodb, using extension schema attributes in search returned empty result
|
|
1311
|
+
- Auth validation failure because of readOnly protection now returns 405 instead of 401
|
|
1312
|
+
- The post-install step now verifies and updates `package.json` to ensure the mandatory `"type": "module"` setting is applied. Using `npm init -y` instead of the recommended `bun init -y` sets `"type": "commonjs"` by default, which is incorrect.
|
|
1313
|
+
|
|
1314
|
+
[Improved]
|
|
1315
|
+
|
|
1316
|
+
- Using the endpointMapper configuration (`endpoint.map.user` / `endpoint.map.group`) will now generate a custom schema instead of using the default SCIM schema by `GET /Schemas`. In addition the configuration `endpoint.map` now supports a special `"x-agent-schema": {...}` configuration which is used by the schema generator for updating `description` and including AI MCP tools related instructions. See `plugin-entra-id.json` for examples.
|
|
1317
|
+
- Dependencies bump
|
|
1318
|
+
|
|
1319
|
+
### v6.1.5
|
|
1320
|
+
|
|
1321
|
+
[Improved]
|
|
1322
|
+
|
|
1323
|
+
- complex filtering (and/or) now handled by scimgateway using plugin's simple filtering logic
|
|
1324
|
+
- modify group response now returns http status 204 (No Content) instead of 200 OK (full group object)
|
|
1325
|
+
- url `/auth` can now be used for validating external authentication
|
|
1326
|
+
- plugin-entra-id, now supports filter `sw` (startsWith)
|
|
1327
|
+
|
|
1328
|
+
|
|
1306
1329
|
### v6.1.4
|
|
1307
1330
|
|
|
1308
1331
|
[Fixed]
|