scimgateway 6.2.6 → 6.2.7
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 +3 -0
- package/README.md +1 -1
- package/config/plugin-entra-id.json +616 -616
- package/lib/plugin-entra-id.ts +4 -8
- package/lib/saml/LICENSE +21 -0
- package/lib/saml/README.md +66 -0
- package/lib/saml/index.js +2 -0
- package/lib/saml/saml11.js +197 -0
- package/lib/saml/saml20.js +205 -0
- package/lib/saml/utils.js +94 -0
- package/lib/saml/xml/encrypt.js +56 -0
- package/lib/saml/xml/sign.js +104 -0
- package/lib/samlAssertion.ts +1 -2
- package/lib/scimgateway.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,8 @@
|
|
|
1
1
|
# Change Log
|
|
2
2
|
|
|
3
|
+
### v6.2.7
|
|
4
|
+
- **[Fixed]** When compiling scimgateway plugins to standalone binaries using `bun build --compile`, the original `saml` npm package failed at runtime on any machine other than the build machine.
|
|
5
|
+
|
|
3
6
|
### v6.2.6
|
|
4
7
|
- **[Fixed]** `plugin-entra-id` group members retrieval is not paginated, and members may be missing for groups with many members.
|
|
5
8
|
- **[Improved]** `HelperRest` updated OData pagination logic and allowing some more throttle retries.
|
package/README.md
CHANGED
|
@@ -331,7 +331,7 @@ For Entra ID apps accessing the gateway:
|
|
|
331
331
|
|
|
332
332
|
```json
|
|
333
333
|
"wellKnownUri": "https://login.microsoftonline.com/{tenant-id}/v2.0/.well-known/openid-configuration",
|
|
334
|
-
"options": { "audience": "
|
|
334
|
+
"options": { "audience": "application-id" }
|
|
335
335
|
```
|
|
336
336
|
|
|
337
337
|
#### OAuth Client Credentials
|