scimgateway 5.3.4 → 5.3.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/.gitattribute +2 -0
- package/.github/dependabot.yml +0 -0
- package/.github/workflows/test-master.yml +0 -0
- package/.github/workflows/test-release.yml +0 -0
- package/.travis.yml +0 -0
- package/LICENSE +0 -0
- package/README.md +13 -0
- package/bun.lock +57 -171
- package/config/docker/DataDockerfile +0 -0
- package/config/docker/Dockerfile +0 -0
- package/config/docker/dbinit/init.sql +0 -0
- package/config/docker/docker-compose-debug.yml +0 -0
- package/config/docker/docker-compose-mssql.yml +0 -0
- package/config/docker/docker-compose.yml +0 -0
- package/config/plugin-entra-id.json +0 -0
- package/config/plugin-ldap.json +0 -0
- package/config/plugin-mongodb.json +0 -0
- package/config/plugin-mssql.json +0 -0
- package/config/plugin-saphana.json +0 -0
- package/config/plugin-soap.json +0 -0
- package/config/resources/Azure - ScimGateway.xml +0 -0
- package/config/wsdls/GroupService.wsdl +0 -0
- package/config/wsdls/UserService.wsdl +0 -0
- package/eslint.config.js +0 -0
- package/lib/countries.json +0 -0
- package/lib/helper-rest.ts +0 -0
- package/lib/logger.ts +0 -0
- package/lib/plugin-api.ts +0 -0
- package/lib/plugin-entra-id.ts +0 -0
- package/lib/plugin-ldap.ts +0 -0
- package/lib/plugin-loki.ts +0 -0
- package/lib/plugin-mongodb.ts +0 -0
- package/lib/plugin-mssql.ts +0 -0
- package/lib/plugin-saphana.ts +0 -0
- package/lib/plugin-scim.ts +0 -0
- package/lib/plugin-soap.ts +0 -0
- package/lib/postinstall.ts +0 -0
- package/lib/samlAssertion.ts +0 -0
- package/lib/scim-stream.js +0 -0
- package/lib/scimdef-v1.json +1 -1
- package/lib/scimdef-v2.json +1 -1
- package/lib/scimgateway.ts +115 -33
- package/lib/utils-scim.ts +1 -0
- package/lib/utils.ts +27 -2
- package/package.json +10 -10
- package/test/lib/plugin-api_test.ts +0 -0
- package/test/lib/plugin-loki_test.ts +53 -8
- package/test/lib/plugin-mongodb_test.ts_excluded +0 -0
- package/test/lib/plugin-scim_test.ts +8 -6
- package/tsconfig.json +0 -0
package/.gitattribute
ADDED
package/.github/dependabot.yml
CHANGED
|
File without changes
|
|
File without changes
|
|
File without changes
|
package/.travis.yml
CHANGED
|
File without changes
|
package/LICENSE
CHANGED
|
File without changes
|
package/README.md
CHANGED
|
@@ -16,6 +16,7 @@ Validated through IdP's:
|
|
|
16
16
|
|
|
17
17
|
Latest news:
|
|
18
18
|
|
|
19
|
+
- [ETag](https://datatracker.ietf.org/doc/html/rfc7644#section-3.14) now supported
|
|
19
20
|
- [Bulk Operations](https://datatracker.ietf.org/doc/html/rfc7644#section-3.7) now supported
|
|
20
21
|
- Remote real-time log subscription for monitoring and centralized logging
|
|
21
22
|
using browser and url: `https://<host>/logger`
|
|
@@ -1405,6 +1406,18 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1405
1406
|
|
|
1406
1407
|
## Change log
|
|
1407
1408
|
|
|
1409
|
+
### v5.3.6
|
|
1410
|
+
|
|
1411
|
+
[Fixed]
|
|
1412
|
+
|
|
1413
|
+
- Some minor ETag improvements
|
|
1414
|
+
|
|
1415
|
+
### v5.3.5
|
|
1416
|
+
|
|
1417
|
+
[Improved]
|
|
1418
|
+
|
|
1419
|
+
- ETag now supported and default included for all requests. Plugin may use custom ETag by returning meta.version.
|
|
1420
|
+
|
|
1408
1421
|
### v5.3.4
|
|
1409
1422
|
|
|
1410
1423
|
[Fixed]
|