Skip to content

Commit

Permalink
FMWK-624 Update dependencies and set version to 1.10.0 (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
reugn authored Dec 10, 2024
1 parent 5726334 commit a7e0e99
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 9 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/snyk-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,6 @@ jobs:
with:
args: --all-projects --sarif-file-output=snyk.sarif

- name: Handle undefined security-severity
run: |
sed -i 's/"security-severity": "undefined"/"security-severity": "0"/g' snyk.sarif
- name: Check output file
id: out-file
run: |
Expand All @@ -34,6 +30,11 @@ jobs:
echo "::set-output name=exists::false"
fi
- name: Handle undefined security-severity
if: steps.out-file.outputs.exists == 'true'
run: |
sed -i 's/"security-severity": "undefined"/"security-severity": "0"/g' snyk.sarif
- name: Upload result to GitHub Code Scanning
if: steps.out-file.outputs.exists == 'true'
uses: github/codeql-action/upload-sarif@v3
Expand Down
6 changes: 3 additions & 3 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<name>aerospike-jdbc</name>
<description>A JDBC driver for the Aerospike database</description>
<url>https://github.com/aerospike/aerospike-jdbc</url>
<version>1.9.2</version>
<version>1.10.0</version>

<properties>
<skipTests>false</skipTests>
Expand All @@ -27,8 +27,8 @@
<maven-shade-plugin.version>3.6.0</maven-shade-plugin.version>

<aerospike-client.version>9.0.2</aerospike-client.version>
<netty.version>4.1.114.Final</netty.version>
<jackson.version>2.18.1</jackson.version>
<netty.version>4.1.115.Final</netty.version>
<jackson.version>2.18.2</jackson.version>
<calcite.version>1.38.0</calcite.version>
<guava.version>33.3.1-jre</guava.version>
<httpclient.version>4.5.14</httpclient.version>
Expand Down
4 changes: 2 additions & 2 deletions src/main/java/com/aerospike/jdbc/util/Constants.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ public final class Constants {
public static final String UNSUPPORTED_QUERY_TYPE_MESSAGE = "Unsupported query type";

// Driver version
public static final String DRIVER_VERSION = "1.9.2";
public static final String DRIVER_VERSION = "1.10.0";
public static final int DRIVER_MAJOR_VERSION = 1;
public static final int DRIVER_MINOR_VERSION = 9;
public static final int DRIVER_MINOR_VERSION = 10;

// JDBC specification
public static final String JDBC_VERSION = "4.2";
Expand Down

0 comments on commit a7e0e99

Please sign in to comment.