scimgateway 4.1.7 → 4.1.9
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 +13 -0
- package/config/plugin-azure-ad.json +8 -0
- package/config/resources/Azure - ScimGateway.xml +5909 -5877
- package/lib/plugin-azure-ad.js +2 -2
- package/lib/plugin-ldap.js +14 -9
- package/lib/scimgateway.js +17 -6
- package/lib/utils.js +30 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1143,6 +1143,19 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1143
1143
|
|
|
1144
1144
|
## Change log
|
|
1145
1145
|
|
|
1146
|
+
### v4.1.9
|
|
1147
|
+
|
|
1148
|
+
[Fixed]
|
|
1149
|
+
|
|
1150
|
+
- plugin-azure-ad.json configuration file introduced in v.4.1.7 was missing passwordProfile attribute mappings
|
|
1151
|
+
- Symantec/Broadcom/CA ConnectorXpress configuration file `config\resources\Azure - ScimGateway.xml` now using standard text on manager attribute instead of selection dialogbox.
|
|
1152
|
+
|
|
1153
|
+
### v4.1.8
|
|
1154
|
+
|
|
1155
|
+
[Fixed]
|
|
1156
|
+
|
|
1157
|
+
- endpointMap and Symantec/Broadcom/CA ConnectorXpress configuration file `config\resources\Azure - ScimGateway.xml` introduced in v.4.1.7 had some missing logic
|
|
1158
|
+
|
|
1146
1159
|
### v4.1.7
|
|
1147
1160
|
|
|
1148
1161
|
**Note, this version breaks compability with previous versions of plugin-azure-ad**
|
|
@@ -210,6 +210,14 @@
|
|
|
210
210
|
"mapTo": "passwordPolicies",
|
|
211
211
|
"type": "string"
|
|
212
212
|
},
|
|
213
|
+
"passwordProfile.forceChangePasswordNextSignIn": {
|
|
214
|
+
"mapTo": "passwordProfile.forceChangePasswordNextSignIn",
|
|
215
|
+
"type": "string"
|
|
216
|
+
},
|
|
217
|
+
"passwordProfile.password": {
|
|
218
|
+
"mapTo": "passwordProfile.password",
|
|
219
|
+
"type": "string"
|
|
220
|
+
},
|
|
213
221
|
"servicePlan": {
|
|
214
222
|
"mapTo": "servicePlan.value",
|
|
215
223
|
"type": "array"
|