Skip to content

Commit

Permalink
Merge pull request #132 from ExclamationLabs/2023/11/FIN-11004_fix_ho…
Browse files Browse the repository at this point in the history
…rizon_reauth

FIN-11004 - allow BaseRestDriver override for FIS Horizon re-auth
  • Loading branch information
mike-elabs authored Nov 29, 2023
2 parents b7bdacf + c68d0ab commit 2c9353b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ and minimize the interactions with the ConnId framework and have much of that
taken care of by a common API.

# Change Log
+ **4.1.9** - FIN-11004 - Adjust BaseRestDriver to allow override needed for FIS Horizon re-auth (11/29/2023)
+ **4.1.8** - Fix Charset on outbound to specify UTF-8 charset
+ **4.1.7** - FIN-11103 - Support multiple PEM content types (11/06/2023)
+ **4.1.6** - FIN-11103 - Private Key and PEM changed to guarded string (11/02/2023)
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
software_version=4.1.8
software_version=4.1.9
test_connector_version=3.0.1

Original file line number Diff line number Diff line change
Expand Up @@ -598,7 +598,7 @@ public <T> RestResponseData<T> executeDeleteRequest(
0);
}

private void prepareHeaders(HttpRequestBase request, RestRequest<?> restRequest) {
protected void prepareHeaders(HttpRequestBase request, RestRequest<?> restRequest) {
// Normally, RESTful services only transmit and return JSON
request.setHeader(HttpHeaders.ACCEPT, ContentType.APPLICATION_JSON.getMimeType());
request.setHeader(HttpHeaders.CONTENT_TYPE, restRequest.getContentTypeHeader());
Expand Down

0 comments on commit 2c9353b

Please sign in to comment.