File tree 5 files changed +13
-4
lines changed
src/main/java/net/snowflake/client/jdbc
5 files changed +13
-4
lines changed Original file line number Diff line number Diff line change
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
+
1
10
**JDBC Driver 3.13.14 **
2
11
3
12
- \| SNOW-532783 | Updating BC FIPS version in public POM
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >net.snowflake</groupId >
6
6
<artifactId >snowflake-jdbc-fips</artifactId >
7
- <version >3.13.14 </version >
7
+ <version >3.13.15 </version >
8
8
<packaging >jar</packaging >
9
9
10
10
<name >snowflake-jdbc-fips</name >
Original file line number Diff line number Diff line change 4
4
5
5
<groupId >net.snowflake</groupId >
6
6
<artifactId >snowflake-jdbc</artifactId >
7
- <version >3.13.14 </version >
7
+ <version >3.13.15 </version >
8
8
<packaging >jar</packaging >
9
9
10
10
<name >snowflake-jdbc</name >
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ public class SnowflakeDriver implements Driver {
23
23
static SnowflakeDriver INSTANCE ;
24
24
25
25
public static final Properties EMPTY_PROPERTIES = new Properties ();
26
- public static String implementVersion = "3.13.14 " ;
26
+ public static String implementVersion = "3.13.15 " ;
27
27
28
28
static int majorVersion = 0 ;
29
29
static int minorVersion = 0 ;
Original file line number Diff line number Diff line change 29
29
import net .snowflake .common .core .SqlState ;
30
30
31
31
/**
32
- * @author USER
32
+ * @author mknister
33
33
* <p>This SnowflakeSQLLoggedException class extends the SnowflakeSQLException class to add OOB
34
34
* telemetry data for sql exceptions. Not all sql exceptions require OOB telemetry logging so
35
35
* the exceptions in this class should only be thrown if there is a need for logging the
You can’t perform that action at this time.
0 commit comments