scimgateway 4.1.4 → 4.1.5

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 (2) hide show
  1. package/README.md +14 -5
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -16,8 +16,9 @@ Validated through IdP's:
16
16
 
17
17
  Latest news:
18
18
 
19
+ - **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 Stream includes **SCIM Stream Gateway**, the next generation SCIM Gateway that supports message subscription and automated provisioning
19
20
  - Supporting OAuth Client Credentials authentication
20
- - Major version v4.0.0. getUsers() and getGroups() replacing some deprecated methods. No limitations on filtering/sorting. Admin user access can be limited to specific baseEntities. New MongoDB plugin
21
+ - Major version v4.0.0. getUsers() and getGroups() replacing some deprecated methods. No limitations on filtering/sorting. Admin user access can be linked to specific baseEntities. New MongoDB plugin
21
22
  - ipAllowList for restricting access to allowlisted IP addresses or subnets e.g. Azure AD IP-range
22
23
  - General LDAP plugin configured for Active Directory
23
24
  - [PlugSSO](https://elshaug.xyz/docs/plugsso) using SCIM Gateway
@@ -39,7 +40,7 @@ Using Identity Manager, we could setup one or more endpoints of type SCIM pointi
39
40
 
40
41
  ![](https://jelhub.github.io/images/ScimGateway.svg)
41
42
 
42
- SCIM Gateway is based on the popular asynchronous event driven framework [Node.js](https://nodejs.dev/) using JavaScript. It is firewall friendly using REST webservices. Runs on almost all operating systems, and may load balance between hosts (horizontal) and cpu's (vertical). Could even be uploaded and run as a cloud application.
43
+ SCIM Gateway is based on the popular asynchronous event driven framework [Node.js](https://nodejs.dev/) using JavaScript. It is cloud and firewall friendly using REST webservices. Runs on almost all operating systems, and may load balance between hosts (horizontal) and cpu's (vertical).
43
44
 
44
45
  **Following example plugins are included:**
45
46
 
@@ -52,18 +53,18 @@ Setting `{"persistence": true}` gives persistence file store (no test users)
52
53
  Example of a fully functional SCIM Gateway plugin
53
54
 
54
55
  * **MongoDB** (NoSQL Document-Oriented Database)
55
- Same as plugin "Loki" but using MongoDB
56
+ Same as plugin "Loki" but using external MongoDB
56
57
  Shows how to implement a highly configurable multi tenant or multi endpoint solution through `baseEntity` in URL
57
58
 
58
59
  * **SCIM** (REST Webservice)
59
- Demonstrates user provisioning towards a SCIM endpoint using REST
60
+ Demonstrates user provisioning towards REST-Based endpoint (type SCIM)
60
61
  Using plugin "Loki" as SCIM endpoint
61
62
  Can be used as SCIM version-gateway e.g. 1.1=>2.0 or 2.0=>1.1
62
63
  Can be used to chain several SCIM Gateway's
63
64
 
64
65
 
65
66
  * **Forwardinc** (SOAP Webservice)
66
- Demonstrates provisioning towards SOAP-Based endpoint
67
+ Demonstrates user provisioning towards SOAP-Based endpoint
67
68
  Using endpoint Forwardinc that comes with Broadcom/CA IM SDK (SDKWS) - [wiki.ca.com](https://docops.ca.com/ca-identity-manager/12-6-8/EN/programming/connector-programming-reference/sdk-sample-connectors/sdkws-sdk-web-services-connector/sdkws-sample-connector-build-requirements "wiki.ca.com")
68
69
  Shows how to implement a highly configurable multi tenant or multi endpoint solution through `baseEntity` in URL
69
70
 
@@ -1142,6 +1143,14 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
1142
1143
 
1143
1144
  ## Change log
1144
1145
 
1146
+ ### v4.1.5
1147
+ [Added]
1148
+
1149
+ Announcing some SCIM Gateway related news:
1150
+
1151
+ - [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 Stream includes **SCIM Stream Gateway**, the next generation SCIM Gateway that supports message subscription and automated provisioning
1152
+
1153
+
1145
1154
  ### v4.1.4
1146
1155
  [Fixed]
1147
1156
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "scimgateway",
3
- "version": "4.1.4",
3
+ "version": "4.1.5",
4
4
  "description": "Using SCIM protocol as a gateway for user provisioning to other endpoints",
5
5
  "author": "Jarle Elshaug <jarle.elshaug@gmail.com> (https://elshaug.xyz)",
6
6
  "homepage": "https://elshaug.xyz",