From a7e0e991dae6ae9f4d6c1a54c332d13e5fb850a0 Mon Sep 17 00:00:00 2001 From: "Eugene R." Date: Tue, 10 Dec 2024 10:10:00 +0200 Subject: [PATCH] FMWK-624 Update dependencies and set version to 1.10.0 (#80) --- .github/workflows/snyk-scan.yml | 9 +++++---- pom.xml | 6 +++--- src/main/java/com/aerospike/jdbc/util/Constants.java | 4 ++-- 3 files changed, 10 insertions(+), 9 deletions(-) diff --git a/.github/workflows/snyk-scan.yml b/.github/workflows/snyk-scan.yml index 10d501a..5287bf7 100644 --- a/.github/workflows/snyk-scan.yml +++ b/.github/workflows/snyk-scan.yml @@ -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: | @@ -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 diff --git a/pom.xml b/pom.xml index 156fd36..8cc74a5 100644 --- a/pom.xml +++ b/pom.xml @@ -11,7 +11,7 @@ aerospike-jdbc A JDBC driver for the Aerospike database https://github.com/aerospike/aerospike-jdbc - 1.9.2 + 1.10.0 false @@ -27,8 +27,8 @@ 3.6.0 9.0.2 - 4.1.114.Final - 2.18.1 + 4.1.115.Final + 2.18.2 1.38.0 33.3.1-jre 4.5.14 diff --git a/src/main/java/com/aerospike/jdbc/util/Constants.java b/src/main/java/com/aerospike/jdbc/util/Constants.java index 7612795..f4f130f 100644 --- a/src/main/java/com/aerospike/jdbc/util/Constants.java +++ b/src/main/java/com/aerospike/jdbc/util/Constants.java @@ -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";