scimgateway 4.4.4 → 4.4.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.
- package/README.md +69 -56
- package/config/plugin-api.json +7 -6
- package/config/plugin-entra-id.json +2 -5
- package/config/plugin-scim.json +4 -10
- package/lib/plugin-api.js +118 -111
- package/lib/plugin-entra-id.js +88 -61
- package/lib/plugin-ldap.js +5 -6
- package/lib/plugin-loki.js +3 -3
- package/lib/plugin-mongodb.js +4 -5
- package/lib/plugin-mssql.js +3 -4
- package/lib/plugin-saphana.js +3 -4
- package/lib/plugin-scim.js +88 -61
- package/lib/plugin-soap.js +4 -3
- package/lib/scim-stream.js +1 -1
- package/lib/scimgateway.js +229 -173
- package/lib/utils.js +1 -1
- package/package.json +1 -1
- package/test/lib/plugin-api.js +25 -30
package/README.md
CHANGED
|
@@ -1147,9 +1147,22 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)
|
|
|
1147
1147
|
|
|
1148
1148
|
## Change log
|
|
1149
1149
|
|
|
1150
|
+
|
|
1151
|
+
### v4.4.5
|
|
1152
|
+
|
|
1153
|
+
[Fixed]
|
|
1154
|
+
|
|
1155
|
+
- PATCH group members=[] should remove all members
|
|
1156
|
+
- scim-stream modify user fix
|
|
1157
|
+
|
|
1158
|
+
[Improved]
|
|
1159
|
+
|
|
1160
|
+
- plugin-entra-id, plugin-scim and plugin-api having updated `REST endpoint helpers-template` that includes `tokenAuth` (now used by plugin-api). Auth PassTrhough also supported for oauth/tokenAuth endpoint
|
|
1161
|
+
- PUT improvements
|
|
1162
|
+
|
|
1150
1163
|
### v4.4.4
|
|
1151
1164
|
|
|
1152
|
-
[
|
|
1165
|
+
[Improved]
|
|
1153
1166
|
|
|
1154
1167
|
- New configuration: **scim.skipMetaLocation**
|
|
1155
1168
|
true or false, default false. If set to true, `meta.location` which contains protocol and hostname from request-url, will be excluded from response e.g. `"{...,meta":{"location":"https://my-company.com/<...>"}}`. If using reverse proxy and not including headers `X-Forwarded-Proto` and `X-Forwarded-Host`, originator will be the proxy and we might not want to expose internal protocol and hostname being used by the proxy request.
|
|
@@ -1162,13 +1175,13 @@ Below is an example of nginx reverse proxy configuration supporting SCIM Gateway
|
|
|
1162
1175
|
|
|
1163
1176
|
### v4.4.3
|
|
1164
1177
|
|
|
1165
|
-
[
|
|
1178
|
+
[Improved]
|
|
1166
1179
|
|
|
1167
1180
|
- Dependencies bump
|
|
1168
1181
|
|
|
1169
1182
|
### v4.4.2
|
|
1170
1183
|
|
|
1171
|
-
[
|
|
1184
|
+
[Improved]
|
|
1172
1185
|
|
|
1173
1186
|
- scim-stream subscriber configuration have been changed:
|
|
1174
1187
|
old: `"convertRolesToGroups": false`
|
|
@@ -1177,7 +1190,7 @@ Below is an example of nginx reverse proxy configuration supporting SCIM Gateway
|
|
|
1177
1190
|
|
|
1178
1191
|
### v4.4.1
|
|
1179
1192
|
|
|
1180
|
-
[
|
|
1193
|
+
[Improved]
|
|
1181
1194
|
|
|
1182
1195
|
- scim-stream subscriber using latest api and some additional recovery logic
|
|
1183
1196
|
Prerequisite: [SCIM Stream](https://elshaug.xyz/docs/scim-stream) version > v1.0.0
|
|
@@ -1188,7 +1201,7 @@ Below is an example of nginx reverse proxy configuration supporting SCIM Gateway
|
|
|
1188
1201
|
|
|
1189
1202
|
### v4.4.0
|
|
1190
1203
|
|
|
1191
|
-
[
|
|
1204
|
+
[Improved]
|
|
1192
1205
|
|
|
1193
1206
|
- SCIM Gateway now offers enhanced functionality with support for message subscription and automated provisioning using [SCIM Stream](https://elshaug.xyz/docs/scim-stream)
|
|
1194
1207
|
- plugin-entra-id, plugin-scim and plugin-api having updated `REST endpoint helpers-template` to address and resolve endpoint throttling
|
|
@@ -1197,7 +1210,7 @@ Note, module soap is not default included anymore. SOAP based plugins e.g., plug
|
|
|
1197
1210
|
|
|
1198
1211
|
### v4.3.0
|
|
1199
1212
|
|
|
1200
|
-
[
|
|
1213
|
+
[Improved]
|
|
1201
1214
|
|
|
1202
1215
|
- configuration `scimgateway.scim.port` can now be set to 0 or removed for deactivating listener
|
|
1203
1216
|
- configuration `cimgateway.scim.usePutSoftSync` set to `true` now includes additional logic that do not change existing user attributes not included in PUT body content
|
|
@@ -1214,13 +1227,13 @@ Note, module soap is not default included anymore. SOAP based plugins e.g., plug
|
|
|
1214
1227
|
|
|
1215
1228
|
- plugin-loki incorrect unique filtering
|
|
1216
1229
|
|
|
1217
|
-
[
|
|
1230
|
+
[Improved]
|
|
1218
1231
|
|
|
1219
1232
|
- Dependencies bump
|
|
1220
1233
|
|
|
1221
1234
|
### v4.2.15
|
|
1222
1235
|
|
|
1223
|
-
[
|
|
1236
|
+
[Improved]
|
|
1224
1237
|
|
|
1225
1238
|
- Plugin can set error statusCode returned by scimgateway through error object key `err.name`. This can be done by adding suffix `#code` to err.name where code is HTTP status code e.g., `err.name += '#401'`. This can be useful for auth.PassThrough and other scenarios like createUser where user already exist (409) and modifyUser where user does not exist (404)
|
|
1226
1239
|
|
|
@@ -1240,13 +1253,13 @@ Note, module soap is not default included anymore. SOAP based plugins e.g., plug
|
|
|
1240
1253
|
|
|
1241
1254
|
### v4.2.12
|
|
1242
1255
|
|
|
1243
|
-
[
|
|
1256
|
+
[Improved]
|
|
1244
1257
|
|
|
1245
1258
|
- Schemas, ServiceProviderConfig and ResourceType can be customized if `lib/scimdef-v2.js (or scimdef-v1.js)` exists. Original scimdef-v2.js/scimdef-v1.js can be copied from node_modules/scimgateway/lib to your plugin/lib and customized.
|
|
1246
1259
|
|
|
1247
1260
|
### v4.2.11
|
|
1248
1261
|
|
|
1249
|
-
[
|
|
1262
|
+
[Improved]
|
|
1250
1263
|
|
|
1251
1264
|
Note, obsolete - see v4.2.15 comments
|
|
1252
1265
|
|
|
@@ -1272,7 +1285,7 @@ Note, obsolete - see v4.2.15 comments
|
|
|
1272
1285
|
|
|
1273
1286
|
### v4.2.7
|
|
1274
1287
|
|
|
1275
|
-
[
|
|
1288
|
+
[Improved]
|
|
1276
1289
|
|
|
1277
1290
|
- new plugin configuration **scim.usePutGroupMemberOfUser** can be set to true or false, default false. `PUT /Users/<user>` will replace user with body content. If body contains groups and usePutGroupMemberOfUser=true, groups will be set on user object (groups are member of user) instead of default user member of groups
|
|
1278
1291
|
- plugin-forwardinc renamed to plugin-soap
|
|
@@ -1297,7 +1310,7 @@ Note, obsolete - see v4.2.15 comments
|
|
|
1297
1310
|
|
|
1298
1311
|
### v4.2.4
|
|
1299
1312
|
|
|
1300
|
-
[
|
|
1313
|
+
[Improved]
|
|
1301
1314
|
|
|
1302
1315
|
- provided plugins now supports Auth PassThrough. See helpers methods like getClientIdentifier(), getCtxAuth() and changes in doRequest() and getServiceClient(). In general, PassThrough is supported for both basic and bearer auth. Password/secret/client_secret are then not needed in configuration file. Username may still be needed in configuration file depended on how logic is implemented (ref. mongodb/mssql) and what auth beeing used (basic/bearer). Plugin scim, api and azure-ad are all REST plugins having the same helpers (but, some minor differences to azure-ad using OAuth and the getAccessToken() method)
|
|
1303
1316
|
|
|
@@ -1323,7 +1336,7 @@ Note, obsolete - see v4.2.15 comments
|
|
|
1323
1336
|
|
|
1324
1337
|
### v4.2.0
|
|
1325
1338
|
|
|
1326
|
-
[
|
|
1339
|
+
[Improved]
|
|
1327
1340
|
|
|
1328
1341
|
- Kubernetes health checks and shutdown handler support
|
|
1329
1342
|
|
|
@@ -1339,7 +1352,7 @@ Note, obsolete - see v4.2.15 comments
|
|
|
1339
1352
|
|
|
1340
1353
|
### v4.1.15
|
|
1341
1354
|
|
|
1342
|
-
[
|
|
1355
|
+
[Improved]
|
|
1343
1356
|
|
|
1344
1357
|
- Authentication PassThrough for passing the authentication directly to plugin without being processed by scimgateway. Plugin can then pass this authentication to endpoint for avoid maintaining secrets at the gateway.
|
|
1345
1358
|
|
|
@@ -1376,7 +1389,7 @@ Note, obsolete - see v4.2.15 comments
|
|
|
1376
1389
|
|
|
1377
1390
|
### v4.1.12
|
|
1378
1391
|
|
|
1379
|
-
[
|
|
1392
|
+
[Improved]
|
|
1380
1393
|
|
|
1381
1394
|
- Dependencies bump
|
|
1382
1395
|
|
|
@@ -1388,7 +1401,7 @@ Note, obsolete - see v4.2.15 comments
|
|
|
1388
1401
|
|
|
1389
1402
|
### v4.1.10
|
|
1390
1403
|
|
|
1391
|
-
[
|
|
1404
|
+
[Improved]
|
|
1392
1405
|
|
|
1393
1406
|
- new plugin configuration `payloadSize`. If not defined, default "1mb" will be used. There are cases which large groups could exceed default size and you may want to increase by setting your own size e.g. "5mb"
|
|
1394
1407
|
**Thanks to Sam Murphy**
|
|
@@ -1414,7 +1427,7 @@ Note, obsolete - see v4.2.15 comments
|
|
|
1414
1427
|
|
|
1415
1428
|
**Note, this version breaks compability with previous versions of plugin-azure-ad**
|
|
1416
1429
|
|
|
1417
|
-
[
|
|
1430
|
+
[Improved]
|
|
1418
1431
|
|
|
1419
1432
|
- endpointMap moved from scimgateway to plugin-azure-ad
|
|
1420
1433
|
- plugin-azure-ad.json configuration file now includes attribute mapping giving flexibility to add or customize AAD-SCIM attribute mappings
|
|
@@ -1422,13 +1435,13 @@ Note, obsolete - see v4.2.15 comments
|
|
|
1422
1435
|
|
|
1423
1436
|
### v4.1.6
|
|
1424
1437
|
|
|
1425
|
-
[
|
|
1438
|
+
[Improved]
|
|
1426
1439
|
|
|
1427
1440
|
- Dependencies bump
|
|
1428
1441
|
|
|
1429
1442
|
### v4.1.5
|
|
1430
1443
|
|
|
1431
|
-
[
|
|
1444
|
+
[Improved]
|
|
1432
1445
|
|
|
1433
1446
|
SCIM Gateway related news:
|
|
1434
1447
|
|
|
@@ -1446,7 +1459,7 @@ SCIM Gateway related news:
|
|
|
1446
1459
|
|
|
1447
1460
|
- createUser response did not include the id that was returned by plugin
|
|
1448
1461
|
|
|
1449
|
-
[
|
|
1462
|
+
[Improved]
|
|
1450
1463
|
|
|
1451
1464
|
- PUT (Replace User) now includes group handling. Using configuration `scim.usePutSoftsync=true` will prevent removing any existing groups that are not included in body.groups
|
|
1452
1465
|
|
|
@@ -1466,7 +1479,7 @@ SCIM Gateway related news:
|
|
|
1466
1479
|
|
|
1467
1480
|
|
|
1468
1481
|
### v4.1.2
|
|
1469
|
-
[
|
|
1482
|
+
[Improved]
|
|
1470
1483
|
|
|
1471
1484
|
- endpointMapper supporting one to many mappings using a comma separated list of attributes in the `mapTo`
|
|
1472
1485
|
|
|
@@ -1484,7 +1497,7 @@ SCIM Gateway related news:
|
|
|
1484
1497
|
|
|
1485
1498
|
|
|
1486
1499
|
### v4.1.1
|
|
1487
|
-
[
|
|
1500
|
+
[Improved]
|
|
1488
1501
|
|
|
1489
1502
|
- plugin-ldap support userFilter/groupFilter configuration for restricting scope
|
|
1490
1503
|
|
|
@@ -1498,7 +1511,7 @@ SCIM Gateway related news:
|
|
|
1498
1511
|
}
|
|
1499
1512
|
|
|
1500
1513
|
### v4.1.0
|
|
1501
|
-
[
|
|
1514
|
+
[Improved]
|
|
1502
1515
|
|
|
1503
1516
|
- Supporting OAuth Client Credentials authentication
|
|
1504
1517
|
|
|
@@ -1522,7 +1535,7 @@ SCIM Gateway related news:
|
|
|
1522
1535
|
|
|
1523
1536
|
|
|
1524
1537
|
### v4.0.1
|
|
1525
|
-
[
|
|
1538
|
+
[Improved]
|
|
1526
1539
|
|
|
1527
1540
|
- create user/group supporting externalId
|
|
1528
1541
|
- plugin-restful renamed to plugin-scim
|
|
@@ -1628,7 +1641,7 @@ We also need to add logic from existing getGroup() and getGroupMembers()
|
|
|
1628
1641
|
|
|
1629
1642
|
- for SCIM 2.0 exploreUsers/exploreGroups now includes schemas/resourceType on each object in the Resources response. This may be required by som IdP's.
|
|
1630
1643
|
|
|
1631
|
-
[
|
|
1644
|
+
[Improved]
|
|
1632
1645
|
- Dependencies bump
|
|
1633
1646
|
|
|
1634
1647
|
### v3.2.9
|
|
@@ -1642,7 +1655,7 @@ We also need to add logic from existing getGroup() and getGroupMembers()
|
|
|
1642
1655
|
- plugin-ldap `objectGUID` introduced in v.3.2.7 had some missing logic
|
|
1643
1656
|
|
|
1644
1657
|
### v3.2.7
|
|
1645
|
-
[
|
|
1658
|
+
[Improved]
|
|
1646
1659
|
|
|
1647
1660
|
- plugin-ldap supports using Active Directory `objectGUID` instead of `dn` mapped to `id`
|
|
1648
1661
|
configuration example:
|
|
@@ -1670,7 +1683,7 @@ We also need to add logic from existing getGroup() and getGroupMembers()
|
|
|
1670
1683
|
- default "type converted object" logic may fail on requests that includes a mix of type and blank type. Now blank type will be converted to type "undefined", and all types must be unique within the same request. "type converted object" logic can be turned off by configuration `scim.skipTypeConvert = true`
|
|
1671
1684
|
- plugin-loki supporting type = "undefined"
|
|
1672
1685
|
|
|
1673
|
-
[
|
|
1686
|
+
[Improved]
|
|
1674
1687
|
|
|
1675
1688
|
- new configuration `scim.skipTypeConvert` allowing overriding the default behaviour "type converted object" when set to true. See attribute list for details
|
|
1676
1689
|
- `scimgateway.isMultivalue` used by plugin-loki have been changed, and **custom plugins using this method must be updated**
|
|
@@ -1699,7 +1712,7 @@ We also need to add logic from existing getGroup() and getGroupMembers()
|
|
|
1699
1712
|
- plugins missing logic for handling the virtual readOnly user attribute `groups` (when `"user member of groups"`) e.g. GET /Users/bjensen should return all user attributes including the virtual `groups` attribute. Now this user attribute will be automatically handled by scimgateway if not included in the plugin response.
|
|
1700
1713
|
- Pre and post actions onAddGroups/onRemoveGroups introduced in v.3.2.0 has been withdrawn
|
|
1701
1714
|
|
|
1702
|
-
[
|
|
1715
|
+
[Improved]
|
|
1703
1716
|
|
|
1704
1717
|
- scimgateway will do plugin response filtering according to requested attributes/excludedAttributes
|
|
1705
1718
|
|
|
@@ -1712,12 +1725,12 @@ We also need to add logic from existing getGroup() and getGroupMembers()
|
|
|
1712
1725
|
- SCIM v2.0 none core schema attributes handling
|
|
1713
1726
|
- response not always including correct schemas
|
|
1714
1727
|
|
|
1715
|
-
[
|
|
1728
|
+
[Improved]
|
|
1716
1729
|
|
|
1717
1730
|
- roles now using array instead of objects based on type. **Note, this may break your custom plugins if roles logic are in use**
|
|
1718
1731
|
|
|
1719
1732
|
### v3.2.0
|
|
1720
|
-
[
|
|
1733
|
+
[Improved]
|
|
1721
1734
|
|
|
1722
1735
|
- ipAllowList for restricting access to allowlisted IP addresses or subnets e.g. Azure AD IP-range
|
|
1723
1736
|
Configuration example:
|
|
@@ -1746,7 +1759,7 @@ We also need to add logic from existing getGroup() and getGroupMembers()
|
|
|
1746
1759
|
|
|
1747
1760
|
|
|
1748
1761
|
### v3.1.0
|
|
1749
|
-
[
|
|
1762
|
+
[Improved]
|
|
1750
1763
|
|
|
1751
1764
|
- plugin-ldap a general LDAP plugin pre-configured for Microsoft Active Directory. Using endpointMapper logic (like plugin-azure-ad) for attribute flexibility
|
|
1752
1765
|
- Pre and post actions onAddGroups/onRemoveGroups can be configured and needed logic to be defined in plugin method `pre_post_Action`
|
|
@@ -1768,7 +1781,7 @@ We also need to add logic from existing getGroup() and getGroupMembers()
|
|
|
1768
1781
|
- Dependencies bump
|
|
1769
1782
|
|
|
1770
1783
|
### v3.0.4
|
|
1771
|
-
[
|
|
1784
|
+
[Improved]
|
|
1772
1785
|
|
|
1773
1786
|
- Pagination request having startIndex but no count, now sets count to default 200 and may be overridden by plugin.
|
|
1774
1787
|
|
|
@@ -1783,7 +1796,7 @@ We also need to add logic from existing getGroup() and getGroupMembers()
|
|
|
1783
1796
|
- SCIM v2.0 PUT did not work.
|
|
1784
1797
|
|
|
1785
1798
|
### v3.0.1
|
|
1786
|
-
[
|
|
1799
|
+
[Improved]
|
|
1787
1800
|
|
|
1788
1801
|
- getApi supports body (apiObj).
|
|
1789
1802
|
|
|
@@ -1893,7 +1906,7 @@ New syntax is:
|
|
|
1893
1906
|
|
|
1894
1907
|
|
|
1895
1908
|
### v2.1.10
|
|
1896
|
-
[
|
|
1909
|
+
[Improved]
|
|
1897
1910
|
|
|
1898
1911
|
- Log masking of custom defined attributes.
|
|
1899
1912
|
customMasking may include an array of attributes to be masked
|
|
@@ -1944,7 +1957,7 @@ New syntax is:
|
|
|
1944
1957
|
|
|
1945
1958
|
- plugin-azure-ad did not return correct error code (`err.name = 'DuplicateKeyError'`) when failing on creating a duplicate user
|
|
1946
1959
|
|
|
1947
|
-
[
|
|
1960
|
+
[Improved]
|
|
1948
1961
|
|
|
1949
1962
|
- Includes latest versions of module dependencies
|
|
1950
1963
|
|
|
@@ -1966,7 +1979,7 @@ New syntax is:
|
|
|
1966
1979
|
|
|
1967
1980
|
- SCIM 2.0 may use Operations.value as array and none array (issue #16)
|
|
1968
1981
|
|
|
1969
|
-
[
|
|
1982
|
+
[Improved]
|
|
1970
1983
|
|
|
1971
1984
|
- Option for replacing mandatory userName/displayName attribute by configuring customUniqueAttrMapping
|
|
1972
1985
|
- Includes latest versions of module dependencies
|
|
@@ -1978,7 +1991,7 @@ New syntax is:
|
|
|
1978
1991
|
- plugin-loki failed to modify a none existing object, e.g name object not included in Create User
|
|
1979
1992
|
|
|
1980
1993
|
### v2.1.0
|
|
1981
|
-
[
|
|
1994
|
+
[Improved]
|
|
1982
1995
|
|
|
1983
1996
|
- Custom schema attributes can be added by plugin configuration `scim.customSchema` having value set to filename of a JSON schema-file located in `<package-root>/config/schemas`
|
|
1984
1997
|
|
|
@@ -2046,7 +2059,7 @@ Custom plugins needs some changes (please see included example plugins)
|
|
|
2046
2059
|
- Fix related to external configuration (ref. v1.0.18) when running multiple plugins
|
|
2047
2060
|
|
|
2048
2061
|
### v1.0.18
|
|
2049
|
-
[
|
|
2062
|
+
[Improved]
|
|
2050
2063
|
|
|
2051
2064
|
- Includes latest versions of module dependencies
|
|
2052
2065
|
- Loglevel configuration for file and console now separated
|
|
@@ -2099,12 +2112,12 @@ Custom plugins needs some changes (please see included example plugins)
|
|
|
2099
2112
|
- An issue with pagination fixed
|
|
2100
2113
|
|
|
2101
2114
|
### v1.0.9
|
|
2102
|
-
[
|
|
2115
|
+
[Improved]
|
|
2103
2116
|
|
|
2104
2117
|
- Cosmetics, changed emailOnError logic - now emitted by logger
|
|
2105
2118
|
|
|
2106
2119
|
### v1.0.8
|
|
2107
|
-
[
|
|
2120
|
+
[Improved]
|
|
2108
2121
|
|
|
2109
2122
|
- Support health monitoring using the "/ping" URL with a "hello" response, e.g. http://localhost:8880/ping. Useful for frontend load balancing/failover functionality
|
|
2110
2123
|
- Option for error notifications by email
|
|
@@ -2115,7 +2128,7 @@ Custom plugins needs some changes (please see included example plugins)
|
|
|
2115
2128
|
|
|
2116
2129
|
|
|
2117
2130
|
### v1.0.7
|
|
2118
|
-
[
|
|
2131
|
+
[Improved]
|
|
2119
2132
|
|
|
2120
2133
|
- Docker now using node v.9.10.0 instead of v.6.9.2
|
|
2121
2134
|
- Minor log cosmetics
|
|
@@ -2126,7 +2139,7 @@ Custom plugins needs some changes (please see included example plugins)
|
|
|
2126
2139
|
- Azure AD plugin, failed to create user when licenses (app Service plans) was included
|
|
2127
2140
|
|
|
2128
2141
|
### v1.0.5
|
|
2129
|
-
[
|
|
2142
|
+
[Improved]
|
|
2130
2143
|
|
|
2131
2144
|
- Supporting GET /Users, GET /Groups, PUT method and delete groups
|
|
2132
2145
|
- After more than 3 invalid auth attempts, response will be delayed to prevent brute force
|
|
@@ -2138,7 +2151,7 @@ Custom plugins needs some changes (please see included example plugins)
|
|
|
2138
2151
|
**Thanks to ywchuang**
|
|
2139
2152
|
|
|
2140
2153
|
### v1.0.4
|
|
2141
|
-
[
|
|
2154
|
+
[Improved]
|
|
2142
2155
|
|
|
2143
2156
|
- Plugin for Azure AD now supports paging for retrieving users and groups. Any existing metafile used by CA ConnectorXpress ("Azure - ScimGateway.xml") must be re-deployed.
|
|
2144
2157
|
|
|
@@ -2162,7 +2175,7 @@ Custom plugins needs some changes (please see included example plugins)
|
|
|
2162
2175
|
- Mocha test script did not terminate after upgrading from 3.x to 4.x of Mocha
|
|
2163
2176
|
|
|
2164
2177
|
### v1.0.0
|
|
2165
|
-
[
|
|
2178
|
+
[Improved]
|
|
2166
2179
|
|
|
2167
2180
|
- New plugin-azure-ad.js for Azure AD user provisioning including Azure license management e.g. Office 365
|
|
2168
2181
|
- Includes latest versions of module dependencies
|
|
@@ -2196,7 +2209,7 @@ With:
|
|
|
2196
2209
|
callback(null, arrRet)
|
|
2197
2210
|
|
|
2198
2211
|
### v0.5.3
|
|
2199
|
-
[
|
|
2212
|
+
[Improved]
|
|
2200
2213
|
|
|
2201
2214
|
- Includes api gateway/plugin for general none provisioning
|
|
2202
2215
|
- GET /api
|
|
@@ -2210,7 +2223,7 @@ With:
|
|
|
2210
2223
|
|
|
2211
2224
|
|
|
2212
2225
|
### v0.5.2
|
|
2213
|
-
[
|
|
2226
|
+
[Improved]
|
|
2214
2227
|
|
|
2215
2228
|
- One or more of following authentication/authorization methods are accepted:
|
|
2216
2229
|
- Basic Authentication
|
|
@@ -2231,7 +2244,7 @@ With:
|
|
|
2231
2244
|
|
|
2232
2245
|
|
|
2233
2246
|
### v0.4.6
|
|
2234
|
-
[
|
|
2247
|
+
[Improved]
|
|
2235
2248
|
|
|
2236
2249
|
- Document updated on how to run SCIM Gateway as a Docker container
|
|
2237
2250
|
- `config\docker` includes docker configuration examples
|
|
@@ -2239,7 +2252,7 @@ With:
|
|
|
2239
2252
|
|
|
2240
2253
|
|
|
2241
2254
|
### v0.4.5
|
|
2242
|
-
[
|
|
2255
|
+
[Improved]
|
|
2243
2256
|
|
|
2244
2257
|
- Environment variable `SEED` overrides default password seeding
|
|
2245
2258
|
- Setting SCIM Gateway port to `"process.env.XXX"` lets environment variable XXX define the port
|
|
@@ -2252,7 +2265,7 @@ With:
|
|
|
2252
2265
|
- Start SCIM Gateway and passwords will become encrypted
|
|
2253
2266
|
|
|
2254
2267
|
### v0.4.4
|
|
2255
|
-
[
|
|
2268
|
+
[Improved]
|
|
2256
2269
|
|
|
2257
2270
|
- NoSQL Document-Oriented Database plugin: `plugin-loki`
|
|
2258
2271
|
This plugin now replace previous `plugin-testmode`
|
|
@@ -2271,7 +2284,7 @@ This plugin now replace previous `plugin-testmode`
|
|
|
2271
2284
|
- plugin-restful minor adjustments to multivalue and cleared attributes logic introduced in v0.4.0
|
|
2272
2285
|
|
|
2273
2286
|
### v0.4.1
|
|
2274
|
-
[
|
|
2287
|
+
[Improved]
|
|
2275
2288
|
|
|
2276
2289
|
- Mocha test scripts for automated testing of plugin-testmode
|
|
2277
2290
|
- Automated tests run on Travis-ci.org (click on build badge)
|
|
@@ -2284,7 +2297,7 @@ This plugin now replace previous `plugin-testmode`
|
|
|
2284
2297
|
- Minor adjustments to multi-value logic introduced in v0.4.0
|
|
2285
2298
|
|
|
2286
2299
|
### v0.4.0
|
|
2287
|
-
[
|
|
2300
|
+
[Improved]
|
|
2288
2301
|
|
|
2289
2302
|
- Not using the SCIM standard for handling multivalue attributes and cleared attributes. Changed from array to object based on type. This simplifies plugin-coding for multivalue attributes like emails, phoneNumbers, entitlements, ...
|
|
2290
2303
|
- Module dependencies updated to latest versions
|
|
@@ -2299,12 +2312,12 @@ This plugin now replace previous `plugin-testmode`
|
|
|
2299
2312
|
- Minor changes related to SCIM specification
|
|
2300
2313
|
|
|
2301
2314
|
### v0.3.7
|
|
2302
|
-
[
|
|
2315
|
+
[Improved]
|
|
2303
2316
|
|
|
2304
2317
|
- PFX / PKCS#12 certificate bundle is supported
|
|
2305
2318
|
|
|
2306
2319
|
### v0.3.6
|
|
2307
|
-
[
|
|
2320
|
+
[Improved]
|
|
2308
2321
|
|
|
2309
2322
|
- SCIM Gateway used by Microsoft Azure Active Directory is supported
|
|
2310
2323
|
- SCIM version 2.0 is supported
|
|
@@ -2322,7 +2335,7 @@ This plugin now replace previous `plugin-testmode`
|
|
|
2322
2335
|
- plugin-mssql not included in postinstall
|
|
2323
2336
|
|
|
2324
2337
|
### v0.3.4
|
|
2325
|
-
[
|
|
2338
|
+
[Improved]
|
|
2326
2339
|
|
|
2327
2340
|
- MSSQL example plugin: `plugin-mssql`
|
|
2328
2341
|
- Changed multivalue logic in example plugins, now using `scimgateway.getArrayObject`
|
|
@@ -2348,12 +2361,12 @@ This plugin now replace previous `plugin-testmode`
|
|
|
2348
2361
|
- Minor changes related to SCIM specification
|
|
2349
2362
|
|
|
2350
2363
|
### v0.3.1
|
|
2351
|
-
[
|
|
2364
|
+
[Improved]
|
|
2352
2365
|
|
|
2353
2366
|
- REST Webservices example plugin: `plugin-restful`
|
|
2354
2367
|
|
|
2355
2368
|
### v0.3.0
|
|
2356
|
-
[
|
|
2369
|
+
[Improved]
|
|
2357
2370
|
|
|
2358
2371
|
- Preferred installation method changed from "global" to "local"
|
|
2359
2372
|
- `<Base URL>/[baseEntity]` for multi tenant or multi endpoint flexibility
|
package/config/plugin-api.json
CHANGED
|
@@ -123,16 +123,17 @@
|
|
|
123
123
|
"entity": {
|
|
124
124
|
"undefined": {
|
|
125
125
|
"baseUrls": [
|
|
126
|
-
"
|
|
126
|
+
"https://dummyjson.com"
|
|
127
127
|
],
|
|
128
128
|
"oauth": null,
|
|
129
|
+
"tokenAuth": {
|
|
130
|
+
"tokenUrl": "https://dummyjson.com/auth/login",
|
|
131
|
+
"username": "jissetts",
|
|
132
|
+
"password": "ePawWgrnZR8L"
|
|
133
|
+
},
|
|
129
134
|
"bearerAuth": null,
|
|
130
135
|
"basicAuth": null,
|
|
131
|
-
"proxy":
|
|
132
|
-
"host": null,
|
|
133
|
-
"username": null,
|
|
134
|
-
"password": null
|
|
135
|
-
}
|
|
136
|
+
"proxy": null
|
|
136
137
|
}
|
|
137
138
|
}
|
|
138
139
|
}
|
|
@@ -129,13 +129,10 @@
|
|
|
129
129
|
"clientId": "Application ID",
|
|
130
130
|
"clientSecret": "Generated application secret value"
|
|
131
131
|
},
|
|
132
|
+
"tokenAuth": null,
|
|
132
133
|
"bearerAuth": null,
|
|
133
134
|
"basicAuth": null,
|
|
134
|
-
"proxy":
|
|
135
|
-
"host": null,
|
|
136
|
-
"username": null,
|
|
137
|
-
"password": null
|
|
138
|
-
}
|
|
135
|
+
"proxy": null
|
|
139
136
|
}
|
|
140
137
|
},
|
|
141
138
|
"map": {
|
package/config/plugin-scim.json
CHANGED
|
@@ -127,16 +127,13 @@
|
|
|
127
127
|
],
|
|
128
128
|
"scimVersion": "2.0",
|
|
129
129
|
"oauth": null,
|
|
130
|
+
"tokenAuth": null,
|
|
130
131
|
"bearerAuth": null,
|
|
131
132
|
"basicAuth": {
|
|
132
133
|
"username": "gwadmin",
|
|
133
134
|
"password": "password"
|
|
134
135
|
},
|
|
135
|
-
"proxy":
|
|
136
|
-
"host": null,
|
|
137
|
-
"username": null,
|
|
138
|
-
"password": null
|
|
139
|
-
}
|
|
136
|
+
"proxy": null
|
|
140
137
|
},
|
|
141
138
|
"clientA": {
|
|
142
139
|
"baseUrls": [
|
|
@@ -144,16 +141,13 @@
|
|
|
144
141
|
],
|
|
145
142
|
"scimVersion": "2.0",
|
|
146
143
|
"oauth": null,
|
|
144
|
+
"tokenAuth": null,
|
|
147
145
|
"bearerAuth": null,
|
|
148
146
|
"basicAuth": {
|
|
149
147
|
"username": "gwadmin",
|
|
150
148
|
"password": "password"
|
|
151
149
|
},
|
|
152
|
-
"proxy":
|
|
153
|
-
"host": null,
|
|
154
|
-
"username": null,
|
|
155
|
-
"password": null
|
|
156
|
-
}
|
|
150
|
+
"proxy": null
|
|
157
151
|
}
|
|
158
152
|
}
|
|
159
153
|
}
|