Skip to content

Commit

Permalink
[TS-1224] Password encryption support (#69)
Browse files Browse the repository at this point in the history
* [TS-1224] Password encryption support
  • Loading branch information
isengrims authored Apr 26, 2023
1 parent c4b5061 commit fd72e46
Show file tree
Hide file tree
Showing 6 changed files with 49 additions and 5 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ You can find the description for the available service types and their configura

## Release notes

### 4.0.1

+ Updated `sailfish-core` version from `3.3.54` to `3.3.93`

### 4.0.0

+ `th2-conn` version with books/pages
Expand Down
14 changes: 13 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
plugins {
id 'com.palantir.docker' version '0.25.0' apply false
id 'java'
id "org.owasp.dependencycheck" version "8.1.2"
}

subprojects {
Expand All @@ -11,7 +12,7 @@ subprojects {
ext {
sharedDir = file("${project.rootDir}/shared")
baseSailfishVersion = '3.3'
sailfishVersion = "${baseSailfishVersion}.54"
sailfishVersion = "${baseSailfishVersion}.93"

pluginMainDir = file('src/main/plugin')
pluginGenDir = file('src/gen/plugin')
Expand Down Expand Up @@ -91,3 +92,14 @@ subprojects {
delete(pluginGenDir)
}
}

dependencyCheck {
formats=['SARIF', 'JSON', 'HTML']
failBuildOnCVSS=5

analyzers {
assemblyEnabled = false
nugetconfEnabled = false
nodeEnabled = false
}
}
14 changes: 13 additions & 1 deletion conn-fix/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# FIX Connect (3.8.0)
# FIX Connect (4.0.1)

This "Connect" component extension supports connections to the target system via [FIX protocol](https://www.fixtrading.org/what-is-fix/).

Expand Down Expand Up @@ -211,6 +211,9 @@ autorelogin: true

# If it is specified , then we will check for OrigSendingTime in resend request
requiresOrigSendingTime: true

# Value for encryptMethod(98) field. Value is taken from dictionary by alias specified in this setting.
encryptMethod: PKCS
```
### FIX Server
Expand Down Expand Up @@ -355,6 +358,15 @@ defaultHeartbeatInterval: 5
## Release notes
### 4.0.1
+ Updated `sailfish-core` version from `3.3.54` to `3.3.93`
+ New `fix` client property `encryptMethod`: password encryption support

### 4.0.0

+ `th2-conn` version with books/pages

### 3.8.0

+ Updated `sailfish-core` version from `3.2.1741` to `3.3.54`
Expand Down
10 changes: 9 additions & 1 deletion conn-ntg/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Connect Native Trading Gateway (NTG) (3.8.0)
# Connect Native Trading Gateway (NTG) (4.0.1)

## Available service types

Expand Down Expand Up @@ -60,6 +60,14 @@ reconnectTimeout: 5000
## Release notes
### 4.0.1
+ Updated `sailfish-core` version from `3.3.54` to `3.3.93`

### 4.0.0

+ `th2-conn` version with books/pages

### 3.8.0

+ Updated `sailfish-core` version from `3.2.1741` to `3.3.54`
Expand Down
10 changes: 9 additions & 1 deletion conn-soup/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# SOUP family codecs (3.8.0)
# SOUP family codecs (4.0.1)

## Available service types

Expand Down Expand Up @@ -137,6 +137,14 @@ evolutionSupportEnabled: true
## Release notes
### 4.0.1
+ Updated `sailfish-core` version from `3.3.54` to `3.3.93`

### 4.0.0

+ `th2-conn` version with books/pages

### 3.8.0

+ Updated `sailfish-core` version from `3.2.1741` to `3.3.54`
Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
sf_service_name = unknown-service
release_version = 4.0.0
release_version = 4.0.1

0 comments on commit fd72e46

Please sign in to comment.