diff --git a/CHANGELOG.rst b/CHANGELOG.rst index 88e8b6115..7815a3b3e 100644 --- a/CHANGELOG.rst +++ b/CHANGELOG.rst @@ -1,3 +1,10 @@ +**JDBC Driver 3.13.22** + +- \| | Updated the tika-core library to version 2.4.1. +- \| | Fixed an issue where getColumnClassName() threw an exception when the column type is timestamp_tx. +- \| | Fixed an issue where calling getSQLStateType() throws an exception while retrieving database metadata. +- \| | Fixed an issue where calling executeLargeBatch() for prepared statements might result in no rows being inserted. + **JDBC Driver 3.13.21** - \| | Fix memory leak with statement object in SnowflakeConnectionV1::createResultSet diff --git a/FIPS/pom.xml b/FIPS/pom.xml index b54790e48..045388396 100644 --- a/FIPS/pom.xml +++ b/FIPS/pom.xml @@ -4,7 +4,7 @@ net.snowflake snowflake-jdbc-fips - 3.13.21 + 3.13.22 jar snowflake-jdbc-fips diff --git a/pom.xml b/pom.xml index d8851d7db..013bcc591 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ net.snowflake snowflake-jdbc - 3.13.21 + 3.13.22 jar snowflake-jdbc diff --git a/src/main/java/net/snowflake/client/jdbc/SnowflakeDriver.java b/src/main/java/net/snowflake/client/jdbc/SnowflakeDriver.java index 25e92d19d..fcc4aadd9 100644 --- a/src/main/java/net/snowflake/client/jdbc/SnowflakeDriver.java +++ b/src/main/java/net/snowflake/client/jdbc/SnowflakeDriver.java @@ -23,7 +23,7 @@ public class SnowflakeDriver implements Driver { static SnowflakeDriver INSTANCE; public static final Properties EMPTY_PROPERTIES = new Properties(); - public static String implementVersion = "3.13.21"; + public static String implementVersion = "3.13.22"; static int majorVersion = 0; static int minorVersion = 0;