Skip to content

Commit

Permalink
v5.0.12
Browse files Browse the repository at this point in the history
  • Loading branch information
jelhub committed Dec 27, 2024
1 parent f3fe085 commit 5916b56
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 6 deletions.
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Latest news:

- Major version **v5.0.0** marks a shift to native TypeScript support and prioritizes [Bun](https://bun.sh/) over Node.js. This upgrade requires some modifications to existing plugins.
- **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 Gateway now offers enhanced functionality with support for message subscription and automated provisioning using SCIM Stream
- Authentication PassThrough letting plugin pass authentication directly to endpoint for avoid maintaining secrets at the gateway
- Authentication PassThrough letting plugin pass authentication directly to endpoint for avoid maintaining secrets at the gateway. E.g., using Entra ID application OAuth
- Supports OAuth Client Credentials authentication
- 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
- ipAllowList for restricting access to allowlisted IP addresses or subnets e.g. Azure IP-range
Expand Down Expand Up @@ -1111,6 +1111,17 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)

## Change log

### v5.0.12

[Fixed]

- HelperRest doRequest() incorrect Auth PassThrough handling

[Improved]

- Dependencies bump


### v5.0.11

[Fixed]
Expand Down
Binary file modified bun.lockb
Binary file not shown.
10 changes: 5 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "scimgateway",
"version": "5.0.11",
"version": "5.0.12",
"type": "module",
"description": "Using SCIM protocol as a gateway for user provisioning to other endpoints",
"author": "Jarle Elshaug <jarle.elshaug@gmail.com> (https://elshaug.xyz)",
Expand Down Expand Up @@ -41,19 +41,19 @@
"@types/tedious": "^4.0.14",
"dot-object": "^2.1.5",
"fold-to-ascii": "^5.0.1",
"https-proxy-agent": "^7.0.4",
"https-proxy-agent": "^7.0.6",
"is-in-subnet": "^4.0.1",
"jsonwebtoken": "^9.0.2",
"ldapjs": "^3.0.7",
"lokijs": "^1.5.12",
"mongodb": "^6.6.2",
"mongodb": "^6.12.0",
"nats": "^2.28.2",
"node-machine-id": "1.1.12",
"nodemailer": "^6.9.13",
"nodemailer": "^6.9.16",
"passport": "^0.7.0",
"passport-azure-ad": "^4.3.5",
"saml": "^3.0.1",
"winston": "^3.13.0"
"winston": "^3.17.0"
},
"peerDependencies": {
"typescript": "^5.0.0"
Expand Down

0 comments on commit 5916b56

Please sign in to comment.