Skip to content

Commit

Permalink
SNOW-1454968 Upgrade JDBC to 3.16.1 (#563)
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-bli authored May 31, 2024
1 parent 243c2c3 commit fd3c27f
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ClusterTest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
TEST_SCALA_VERSION: '2.12'
TEST_COMPILE_SCALA_VERSION: '2.12.11'
TEST_SPARK_CONNECTOR_VERSION: '2.15.0'
TEST_JDBC_VERSION: '3.16.0'
TEST_JDBC_VERSION: '3.16.1'

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion ClusterTest/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ lazy val root = project.withId("spark-snowflake").in(file("."))
resolvers +=
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
libraryDependencies ++= Seq(
"net.snowflake" % "snowflake-jdbc" % "3.16.0",
"net.snowflake" % "snowflake-jdbc" % "3.16.1",
"org.apache.commons" % "commons-lang3" % "3.5" % "provided, runtime",
"org.apache.spark" %% "spark-core" % testSparkVersion % "provided, runtime",
"org.apache.spark" %% "spark-sql" % testSparkVersion % "provided, runtime",
Expand Down
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ lazy val root = project.withId("spark-snowflake").in(file("."))
resolvers +=
"Sonatype OSS Snapshots" at "https://oss.sonatype.org/content/repositories/snapshots",
libraryDependencies ++= Seq(
"net.snowflake" % "snowflake-jdbc" % "3.16.0",
"net.snowflake" % "snowflake-jdbc" % "3.16.1",
"org.scalatest" %% "scalatest" % "3.1.1" % Test,
"org.mockito" % "mockito-core" % "1.10.19" % Test,
"org.apache.commons" % "commons-lang3" % "3.5" % "provided",
Expand Down
2 changes: 1 addition & 1 deletion src/main/scala/net/snowflake/spark/snowflake/Utils.scala
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ object Utils {
/**
* The certified JDBC version to work with this spark connector version.
*/
val CERTIFIED_JDBC_VERSION = "3.16.0"
val CERTIFIED_JDBC_VERSION = "3.16.1"

/**
* Important:
Expand Down

0 comments on commit fd3c27f

Please sign in to comment.