Skip to content

Commit

Permalink
chore: bump release number to 4.0.3, update releasenotes.md, update g…
Browse files Browse the repository at this point in the history
…etOptionValue args for common-cli 1.7.0
  • Loading branch information
dwelch-spike committed Aug 6, 2024
1 parent 7f74e6c commit 6e3b53f
Show file tree
Hide file tree
Showing 5 changed files with 16 additions and 7 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,9 +37,9 @@
<a name="Dependencies"></a>
## Dependencies
Following dependencies are downloaded automatically:
* Aerospike Java client 7.2.1 or greater
* Apache commons cli 1.6.0
* Log4j 2.21.0
* Aerospike Java client 7.2.2 or greater
* Apache commons cli 1.7.0
* Log4j 2.22.1
* Junit 4.13.1
* Json-simple 1.1.1

Expand Down
11 changes: 10 additions & 1 deletion doc/releasenotes.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,4 +101,13 @@

## Bug Fixes:
* TOOLS-2826 \(ASLOADER\) Fixed an issue where ldap users fail read-write role validation.
Asloader no longer checks if the Aerospike user has read-write permissions before beginning writes.
Asloader no longer checks if the Aerospike user has read-write permissions before beginning writes.

## Aerospike Loader [4.0.3] Release Date [7 Aug 2024]
## Security
* [Snyk] fix: upgrade org.apache.logging.log4j:log4j-core from 2.21.0 to 2.22.1
* [Snyk] fix: upgrade org.apache.logging.log4j:log4j-api from 2.21.0 to 2.22.1
* [Snyk] fix: upgrade org.apache.logging.log4j:log4j-api from 2.21.0 to 2.22.1

## Bug Fixes:
* [TOOLS-2690] \(ASLOADER\) Set client policy maxConnsPerNode to the max amount of worker threads to prevent out of connection errors.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>com.aerospike</groupId>
<artifactId>aerospike-load</artifactId>
<version>4.0.2</version>
<version>4.0.3</version>
<name>Aerospike DSV Loader</name>
<packaging>jar</packaging>

Expand Down
2 changes: 1 addition & 1 deletion src/main/java/com/aerospike/load/AerospikeLoad.java
Original file line number Diff line number Diff line change
Expand Up @@ -212,7 +212,7 @@ public static void main(String[] args) throws IOException {
}

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

Expand Down
2 changes: 1 addition & 1 deletion src/test/java/com/aerospike/load/DataTypeTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ enum BinType {
public class DataTypeTest {

String host = "127.0.0.1";
String port = "3000";
String port = "3100";
String ns = "test";
String set = null;
MapOrder expectedMapOrder = MapOrder.KEY_ORDERED;
Expand Down

0 comments on commit 6e3b53f

Please sign in to comment.