Skip to content

Commit

Permalink
v5.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
jelhub committed Feb 10, 2025
1 parent 0f49934 commit 71f49f6
Show file tree
Hide file tree
Showing 3 changed files with 81 additions and 48 deletions.
15 changes: 13 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,8 @@ For Node.js (and also Bun), we might set the property `scimgateway_postinstall_s
}


Each endpoint plugin needs a TypeScript file (.ts) and a configuration file (.json). **They both must have the same naming prefix**. For SAP Hana endpoint we have:
Each endpoint plugin needs a TypeScript file (.ts) and a configuration file (.json).
**They both must have the same naming prefix**. For SAP Hana endpoint we have:
>lib\plugin-saphana.ts
>config\plugin-saphana.json
Expand Down Expand Up @@ -410,7 +411,7 @@ Definitions in `endpoint` object are customized according to our plugin code. Pl
"certificate": {
"key": "key.pem",
"cert": "cert.pem",
"ca": null
"ca": "ca.pem" // if several: "ca": ["ca1.pem", "ca2.pem"]
}

Example of how to make a self signed certificate:
Expand Down Expand Up @@ -1291,6 +1292,16 @@ MIT © [Jarle Elshaug](https://www.elshaug.xyz)

## Change log

### v5.1.7

[Fixed]

- Using gateway certificate CA, the CA did not load correctly. It now also supports an array of multiple CAs.

[Improved]

- Dependencies bump

### v5.1.6

[Improved]
Expand Down
Loading

0 comments on commit 71f49f6

Please sign in to comment.