Skip to content

Commit 10998b9

Browse files
authored
SNOW-544031: Bumped up the Client PATCH version from 3.13.14 to 3.13.15 (#712)
1 parent e05653d commit 10998b9

File tree

5 files changed

+13
-4
lines changed

5 files changed

+13
-4
lines changed

CHANGELOG.rst

+9
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
**JDBC Driver 3.13.15**
2+
3+
- \| | Refactored the isFileTransfer function into the base class.
4+
- \| | Updated version for Apache Tika.
5+
- \| | Allow URLs with underscores by default, add configuration to covert underscores to hyphens.
6+
- \| | Refactored the FileTransferAgent facade classes into base class
7+
- \| SNOW-538708 | Fixed a segmentation fault issue within Graal VM Native Image applications.
8+
- \| SNOW-508017 | Fixed and issue that cause the ChunkDownloader to hang.
9+
110
**JDBC Driver 3.13.14**
211

312
- \| SNOW-532783 | Updating BC FIPS version in public POM

FIPS/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>net.snowflake</groupId>
66
<artifactId>snowflake-jdbc-fips</artifactId>
7-
<version>3.13.14</version>
7+
<version>3.13.15</version>
88
<packaging>jar</packaging>
99

1010
<name>snowflake-jdbc-fips</name>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>net.snowflake</groupId>
66
<artifactId>snowflake-jdbc</artifactId>
7-
<version>3.13.14</version>
7+
<version>3.13.15</version>
88
<packaging>jar</packaging>
99

1010
<name>snowflake-jdbc</name>

src/main/java/net/snowflake/client/jdbc/SnowflakeDriver.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ public class SnowflakeDriver implements Driver {
2323
static SnowflakeDriver INSTANCE;
2424

2525
public static final Properties EMPTY_PROPERTIES = new Properties();
26-
public static String implementVersion = "3.13.14";
26+
public static String implementVersion = "3.13.15";
2727

2828
static int majorVersion = 0;
2929
static int minorVersion = 0;

src/main/java/net/snowflake/client/jdbc/SnowflakeSQLLoggedException.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
import net.snowflake.common.core.SqlState;
3030

3131
/**
32-
* @author USER
32+
* @author mknister
3333
* <p>This SnowflakeSQLLoggedException class extends the SnowflakeSQLException class to add OOB
3434
* telemetry data for sql exceptions. Not all sql exceptions require OOB telemetry logging so
3535
* the exceptions in this class should only be thrown if there is a need for logging the

0 commit comments

Comments
 (0)