Skip to content

Commit 6e3b53f

Browse files
committed
chore: bump release number to 4.0.3, update releasenotes.md, update getOptionValue args for common-cli 1.7.0
1 parent 7f74e6c commit 6e3b53f

File tree

5 files changed

+16
-7
lines changed

5 files changed

+16
-7
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,9 @@
3737
<a name="Dependencies"></a>
3838
## Dependencies
3939
Following dependencies are downloaded automatically:
40-
* Aerospike Java client 7.2.1 or greater
41-
* Apache commons cli 1.6.0
42-
* Log4j 2.21.0
40+
* Aerospike Java client 7.2.2 or greater
41+
* Apache commons cli 1.7.0
42+
* Log4j 2.22.1
4343
* Junit 4.13.1
4444
* Json-simple 1.1.1
4545

doc/releasenotes.md

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,4 +101,13 @@
101101

102102
## Bug Fixes:
103103
* TOOLS-2826 \(ASLOADER\) Fixed an issue where ldap users fail read-write role validation.
104-
Asloader no longer checks if the Aerospike user has read-write permissions before beginning writes.
104+
Asloader no longer checks if the Aerospike user has read-write permissions before beginning writes.
105+
106+
## Aerospike Loader [4.0.3] Release Date [7 Aug 2024]
107+
## Security
108+
* [Snyk] fix: upgrade org.apache.logging.log4j:log4j-core from 2.21.0 to 2.22.1
109+
* [Snyk] fix: upgrade org.apache.logging.log4j:log4j-api from 2.21.0 to 2.22.1
110+
* [Snyk] fix: upgrade org.apache.logging.log4j:log4j-api from 2.21.0 to 2.22.1
111+
112+
## Bug Fixes:
113+
* [TOOLS-2690] \(ASLOADER\) Set client policy maxConnsPerNode to the max amount of worker threads to prevent out of connection errors.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aerospike</groupId>
55
<artifactId>aerospike-load</artifactId>
6-
<version>4.0.2</version>
6+
<version>4.0.3</version>
77
<name>Aerospike DSV Loader</name>
88
<packaging>jar</packaging>
99

src/main/java/com/aerospike/load/AerospikeLoad.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ public static void main(String[] args) throws IOException {
212212
}
213213

214214
// Remove column definition file from list. if directory containing config file is passed.
215-
String columnDefinitionFileName = cl.getOptionValue("c", null);
215+
String columnDefinitionFileName = cl.getOptionValue("c", "");
216216
dataFileNames.remove(columnDefinitionFileName);
217217
log.info("Number of data files:" + dataFileNames.size());
218218

src/test/java/com/aerospike/load/DataTypeTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ enum BinType {
5050
public class DataTypeTest {
5151

5252
String host = "127.0.0.1";
53-
String port = "3000";
53+
String port = "3100";
5454
String ns = "test";
5555
String set = null;
5656
MapOrder expectedMapOrder = MapOrder.KEY_ORDERED;

0 commit comments

Comments
 (0)